Файл: vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/Microsoft.php
Строк: 167
<?php
namespace OAuthOAuth2Service;
use OAuthOAuth2TokenStdOAuth2Token;
use OAuthCommonHttpExceptionTokenResponseException;
use OAuthCommonHttpUriUri;
use OAuthCommonConsumerCredentials;
use OAuthCommonHttpClientClientInterface;
use OAuthCommonStorageTokenStorageInterface;
use OAuthCommonHttpUriUriInterface;
class Microsoft extends AbstractService
{
const SCOPE_BASIC = 'wl.basic';
const SCOPE_OFFLINE = 'wl.offline_access';
const SCOPE_SIGNIN = 'wl.signin';
const SCOPE_BIRTHDAY = 'wl.birthday';
const SCOPE_CALENDARS = 'wl.calendars';
const SCOPE_CALENDARS_UPDATE = 'wl.calendars_update';
const SCOPE_CONTACTS_BIRTHDAY = 'wl.contacts_birthday';
const SCOPE_CONTACTS_CREATE = 'wl.contacts_create';
const SCOPE_CONTACTS_CALENDARS = 'wl.contacts_calendars';
const SCOPE_CONTACTS_PHOTOS = 'wl.contacts_photos';
const SCOPE_CONTACTS_SKYDRIVE = 'wl.contacts_skydrive';
const SCOPE_EMAILS = 'wl.emails';
const sCOPE_EVENTS_CREATE = 'wl.events_create';
const SCOPE_MESSENGER = 'wl.messenger';
const SCOPE_PHONE_NUMBERS = 'wl.phone_numbers';
const SCOPE_PHOTOS = 'wl.photos';
const SCOPE_POSTAL_ADDRESSES = 'wl.postal_addresses';
const SCOPE_SHARE = 'wl.share';
const SCOPE_SKYDRIVE = 'wl.skydrive';
const SCOPE_SKYDRIVE_UPDATE = 'wl.skydrive_update';
const SCOPE_WORK_PROFILE = 'wl.work_profile';
const SCOPE_APPLICATIONS = 'wl.applications';
const SCOPE_APPLICATIONS_CREATE = 'wl.applications_create';
public function __construct(Credentials $credentials, ClientInterface $httpClient, TokenStorageInterface $storage, $scopes = array(), UriInterface $baseApiUri = null)
{
parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
if( null === $baseApiUri ) {
$this->baseApiUri = new Uri('https://apis.live.net/v5.0/');
}
}
/**
* @return OAuthCommonHttpUriUriInterface
*/
public function getAuthorizationEndpoint()
{
return new Uri('https://login.live.com/oauth20_authorize.srf');
}
/**
* @return OAuthCommonHttpUriUriInterface
*/
public function getAccessTokenEndpoint()
{
return new Uri('https://login.live.com/oauth20_token.srf');
}
/**
* @param string $responseBody
* @return OAuthCommonTokenTokenInterface|OAuthOAuth2TokenStdOAuth2Token
* @throws OAuthCommonHttpExceptionTokenResponseException
*/
protected function parseAccessTokenResponse($responseBody)
{
$data = json_decode( $responseBody, true );
if( null === $data || !is_array($data) ) {
throw new TokenResponseException('Unable to parse response.');
} elseif( isset($data['error'] ) ) {
throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
}
$token = new StdOAuth2Token();
$token->setAccessToken( $data['access_token'] );
$token->setLifetime( $data['expires_in'] );
if( isset($data['refresh_token'] ) ) {
$token->setRefreshToken( $data['refresh_token'] );
unset($data['refresh_token']);
}
unset( $data['access_token'] );
unset( $data['expires_in'] );
$token->setExtraParams( $data );
return $token;
}
/**
* @return int
*/
public function getAuthorizationMethod()
{
return static::AUTHORIZATION_METHOD_QUERY_STRING;
}
}