radarrplexorganizrnginxsonarrdashboardheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbd
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
4.8 KiB
208 lines
4.8 KiB
6 years ago
|
<?php
|
||
|
|
||
|
namespace Github\Api;
|
||
|
|
||
|
use Github\Api\CurrentUser\Emails;
|
||
|
use Github\Api\CurrentUser\Followers;
|
||
|
use Github\Api\CurrentUser\Memberships;
|
||
|
use Github\Api\CurrentUser\Notifications;
|
||
|
use Github\Api\CurrentUser\PublicKeys;
|
||
|
use Github\Api\CurrentUser\Starring;
|
||
|
use Github\Api\CurrentUser\Watchers;
|
||
|
|
||
|
/**
|
||
|
* @link http://developer.github.com/v3/users/
|
||
|
*
|
||
|
* @author Joseph Bielawski <stloyd@gmail.com>
|
||
|
* @author Felipe Valtl de Mello <eu@felipe.im>
|
||
|
*/
|
||
|
class CurrentUser extends AbstractApi
|
||
|
{
|
||
|
public function show()
|
||
|
{
|
||
|
return $this->get('/user');
|
||
|
}
|
||
|
|
||
|
public function update(array $params)
|
||
|
{
|
||
|
return $this->patch('/user', $params);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Emails
|
||
|
*/
|
||
|
public function emails()
|
||
|
{
|
||
|
return new Emails($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Followers
|
||
|
*/
|
||
|
public function follow()
|
||
|
{
|
||
|
return new Followers($this->client);
|
||
|
}
|
||
|
|
||
|
public function followers($page = 1)
|
||
|
{
|
||
|
return $this->get('/user/followers', [
|
||
|
'page' => $page,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link http://developer.github.com/v3/issues/#list-issues
|
||
|
*
|
||
|
* @param array $params
|
||
|
* @param bool $includeOrgIssues
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function issues(array $params = [], $includeOrgIssues = true)
|
||
|
{
|
||
|
return $this->get($includeOrgIssues ? '/issues' : '/user/issues', array_merge(['page' => 1], $params));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return PublicKeys
|
||
|
*/
|
||
|
public function keys()
|
||
|
{
|
||
|
return new PublicKeys($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Notifications
|
||
|
*/
|
||
|
public function notifications()
|
||
|
{
|
||
|
return new Notifications($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Memberships
|
||
|
*/
|
||
|
public function memberships()
|
||
|
{
|
||
|
return new Memberships($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link http://developer.github.com/v3/orgs/#list-user-organizations
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function organizations()
|
||
|
{
|
||
|
return $this->get('/user/orgs');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link https://developer.github.com/v3/orgs/teams/#list-user-teams
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function teams()
|
||
|
{
|
||
|
return $this->get('/user/teams');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link http://developer.github.com/v3/repos/#list-your-repositories
|
||
|
*
|
||
|
* @param string $type role in the repository
|
||
|
* @param string $sort sort by
|
||
|
* @param string $direction direction of sort, asc or desc
|
||
|
* @param string $visibility visibility of repository
|
||
|
* @param string $affiliation relationship to repository
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function repositories($type = 'owner', $sort = 'full_name', $direction = 'asc', $visibility = null, $affiliation = null)
|
||
|
{
|
||
|
$params = [
|
||
|
'type' => $type,
|
||
|
'sort' => $sort,
|
||
|
'direction' => $direction,
|
||
|
];
|
||
|
|
||
|
if (null !== $visibility) {
|
||
|
unset($params['type']);
|
||
|
$params['visibility'] = $visibility;
|
||
|
}
|
||
|
|
||
|
if (null !== $affiliation) {
|
||
|
unset($params['type']);
|
||
|
$params['affiliation'] = $affiliation;
|
||
|
}
|
||
|
|
||
|
return $this->get('/user/repos', $params);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Watchers
|
||
|
*/
|
||
|
public function watchers()
|
||
|
{
|
||
|
return new Watchers($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @deprecated Use watchers() instead
|
||
|
*/
|
||
|
public function watched($page = 1)
|
||
|
{
|
||
|
return $this->get('/user/watched', [
|
||
|
'page' => $page,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return Starring
|
||
|
*/
|
||
|
public function starring()
|
||
|
{
|
||
|
return new Starring($this->client);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @deprecated Use starring() instead
|
||
|
*/
|
||
|
public function starred($page = 1)
|
||
|
{
|
||
|
return $this->get('/user/starred', [
|
||
|
'page' => $page,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link https://developer.github.com/v3/activity/watching/#list-repositories-being-watched
|
||
|
*/
|
||
|
public function subscriptions()
|
||
|
{
|
||
|
return $this->get('/user/subscriptions');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link https://developer.github.com/v3/integrations/#list-installations-for-user
|
||
|
*
|
||
|
* @param array $params
|
||
|
*/
|
||
|
public function installations(array $params = [])
|
||
|
{
|
||
|
return $this->get('/user/installations', array_merge(['page' => 1], $params));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @link https://developer.github.com/v3/integrations/installations/#list-repositories-accessible-to-the-user-for-an-installation
|
||
|
*
|
||
|
* @param string $installationId the ID of the Installation
|
||
|
* @param array $params
|
||
|
*/
|
||
|
public function repositoriesByInstallation($installationId, array $params = [])
|
||
|
{
|
||
|
return $this->get(sprintf('/user/installations/%s/repositories', $installationId), array_merge(['page' => 1], $params));
|
||
|
}
|
||
|
}
|