sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
		
		
		
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							97 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							97 lines
						
					
					
						
							2.5 KiB
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace Github\Api\CurrentUser;
							 | 
						|
								
							 | 
						|
								use Github\Api\AbstractApi;
							 | 
						|
								use Github\Api\AcceptHeaderTrait;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * @link   https://developer.github.com/v3/activity/starring/
							 | 
						|
								 *
							 | 
						|
								 * @author Felipe Valtl de Mello <eu@felipe.im>
							 | 
						|
								 */
							 | 
						|
								class Starring extends AbstractApi
							 | 
						|
								{
							 | 
						|
								    use AcceptHeaderTrait;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Configure the body type.
							 | 
						|
								     *
							 | 
						|
								     * @see https://developer.github.com/v3/activity/starring/#list-stargazers
							 | 
						|
								     *
							 | 
						|
								     * @param string $bodyType
							 | 
						|
								     *
							 | 
						|
								     * @return self
							 | 
						|
								     */
							 | 
						|
								    public function configure($bodyType = null)
							 | 
						|
								    {
							 | 
						|
								        if ('star' === $bodyType) {
							 | 
						|
								            $this->acceptHeaderValue = sprintf('application/vnd.github.%s.star+json', $this->client->getApiVersion());
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								        return $this;
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * List repositories starred by the authenticated user.
							 | 
						|
								     *
							 | 
						|
								     * @link https://developer.github.com/v3/activity/starring/
							 | 
						|
								     *
							 | 
						|
								     * @param int $page
							 | 
						|
								     * @param int $perPage
							 | 
						|
								     *
							 | 
						|
								     * @return array
							 | 
						|
								     */
							 | 
						|
								    public function all($page = 1, $perPage = 30)
							 | 
						|
								    {
							 | 
						|
								        return $this->get('/user/starred', [
							 | 
						|
								            'page' => $page,
							 | 
						|
								            'per_page' => $perPage,
							 | 
						|
								        ]);
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Check that the authenticated user starres a repository.
							 | 
						|
								     *
							 | 
						|
								     * @link https://developer.github.com/v3/activity/starring/
							 | 
						|
								     *
							 | 
						|
								     * @param string $username   the user who owns the repo
							 | 
						|
								     * @param string $repository the name of the repo
							 | 
						|
								     *
							 | 
						|
								     * @return array
							 | 
						|
								     */
							 | 
						|
								    public function check($username, $repository)
							 | 
						|
								    {
							 | 
						|
								        return $this->get('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository));
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Make the authenticated user star a repository.
							 | 
						|
								     *
							 | 
						|
								     * @link https://developer.github.com/v3/activity/starring/
							 | 
						|
								     *
							 | 
						|
								     * @param string $username   the user who owns the repo
							 | 
						|
								     * @param string $repository the name of the repo
							 | 
						|
								     *
							 | 
						|
								     * @return array
							 | 
						|
								     */
							 | 
						|
								    public function star($username, $repository)
							 | 
						|
								    {
							 | 
						|
								        return $this->put('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository));
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Make the authenticated user unstar a repository.
							 | 
						|
								     *
							 | 
						|
								     * @link https://developer.github.com/v3/activity/starring
							 | 
						|
								     *
							 | 
						|
								     * @param string $username   the user who owns the repo
							 | 
						|
								     * @param string $repository the name of the repo
							 | 
						|
								     *
							 | 
						|
								     * @return array
							 | 
						|
								     */
							 | 
						|
								    public function unstar($username, $repository)
							 | 
						|
								    {
							 | 
						|
								        return $this->delete('/user/starred/'.rawurlencode($username).'/'.rawurlencode($repository));
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |