Файл: vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/SoundCloud.php
Строк: 125
<?php
namespace OAuthOAuth2Service;
use OAuthOAuth2TokenStdOAuth2Token;
use OAuthCommonHttpExceptionTokenResponseException;
use OAuthCommonHttpUriUri;
use OAuthCommonConsumerCredentials;
use OAuthCommonHttpClientClientInterface;
use OAuthCommonStorageTokenStorageInterface;
use OAuthCommonHttpUriUriInterface;
class SoundCloud extends AbstractService
{
    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://api.soundcloud.com/');
        }
    }
    /**
     * @return OAuthCommonHttpUriUriInterface
     */
    public function getAuthorizationEndpoint()
    {
        return new Uri('https://soundcloud.com/connect');
    }
    /**
     * @return OAuthCommonHttpUriUriInterface
     */
    public function getAccessTokenEndpoint()
    {
        return new Uri('https://api.soundcloud.com/oauth2/token');
    }
    /**
     * @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'] );
        
        if( isset( $data['expires_in'] ) ) {
            $token->setLifetime( $data['expires_in'] );
            unset( $data['expires_in'] );
        }
        if( isset($data['refresh_token'] ) ) {
            $token->setRefreshToken( $data['refresh_token'] );
            unset($data['refresh_token']);
        }
        unset( $data['access_token'] );
        $token->setExtraParams( $data );
        return $token;
    }
}