wishthis/vendor/knplabs/github-api/lib/Github/Api/Authorizations.php
2022-01-21 09:23:52 +01:00

65 lines
1.6 KiB
PHP

<?php
namespace Github\Api;
/**
* Creating, deleting and listing authorizations.
*
* @link http://developer.github.com/v3/oauth_authorizations/
*
* @author Evgeniy Guseletov <d46k16@gmail.com>
*/
class Authorizations extends AbstractApi
{
/**
* Check an application token.
*
* @param string $clientId
* @param string|null $token
*
* @return array
*/
public function checkToken($clientId, $token = null)
{
return $this->post('/applications/'.rawurlencode($clientId).'/token', $token ? ['access_token' => $token] : []);
}
/**
* Reset an application token.
*
* @param string $clientId
* @param string|null $token
*
* @return array
*/
public function resetToken($clientId, $token = null)
{
return $this->patch('/applications/'.rawurlencode($clientId).'/token', $token ? ['access_token' => $token] : []);
}
/**
* Revoke an application token.
*
* @param string $clientId
* @param string|null $token
*
* @return void
*/
public function deleteToken($clientId, $token = null)
{
$this->delete('/applications/'.rawurlencode($clientId).'/token', $token ? ['access_token' => $token] : []);
}
/**
* Revoke an application authorization.
*
* @param string $clientId
* @param string|null $token
*
* @return void
*/
public function deleteGrant($clientId, $token = null)
{
$this->delete('/applications/'.rawurlencode($clientId).'/grant', $token ? ['access_token' => $token] : []);
}
}