Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/HybridAuth/Provider/Spotify.php
Строк: 47
<?php
/*!
* Hybridauth
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth
*  (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
*/

namespace HybridauthProvider;

use 
HybridauthAdapterOAuth2;
use 
HybridauthExceptionUnexpectedApiResponseException;
use 
HybridauthData;
use 
HybridauthUser;

/**
 * Spotify OAuth2 provider adapter.
 */
class Spotify extends OAuth2
{

    
/**
     * {@inheritdoc}
     */
    
public $scope 'user-read-email';

    
/**
     * {@inheritdoc}
     */
    
public $apiBaseUrl 'https://api.spotify.com/v1/';

    
/**
     * {@inheritdoc}
     */
    
public $authorizeUrl 'https://accounts.spotify.com/authorize';

    
/**
     * {@inheritdoc}
     */
    
protected $accessTokenUrl 'https://accounts.spotify.com/api/token';

    
/**
     * {@inheritdoc}
     */
    
public function getUserProfile()
    {
        
$response $this->apiRequest('me');

        
$data = new DataCollection($response);

        if (!
$data->exists('id')) {
            throw new 
UnexpectedApiResponseException('Provider API returned an unexpected response.');
        }

        
$userProfile = new UserProfile();

        
$userProfile->identifier $data->get('id');
        
$userProfile->displayName $data->get('display_name');
        
$userProfile->email $data->get('email');
        
$userProfile->emailVerified $data->get('email');
        
$userProfile->profileURL $data->filter('external_urls')->get('spotify');
        
$userProfile->photoURL $data->filter('images')->get('url');
        
$userProfile->country $data->get('country');

        if (
$data->exists('birthdate')) {
            
$this->fetchBirthday($userProfile$data->get('birthdate'));
        }

        return 
$userProfile;
    }

    
/**
     * Fetch use birthday
     *
     * @param UserProfile $userProfile
     * @param              $birthday
     *
     * @return UserProfile
     */
    
protected function fetchBirthday(UserProfile $userProfile$birthday)
    {
        
$result = (new DataParser())->parseBirthday($birthday'-');

        
$userProfile->birthDay = (int)$result[0];
        
$userProfile->birthMonth = (int)$result[1];
        
$userProfile->birthYear = (int)$result[2];

        return 
$userProfile;
    }
}
Онлайн: 3
Реклама