Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/HybridAuth/Provider/Odnoklassniki.php
Строк: 88
<?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 
HybridauthData;
use 
HybridauthExceptionUnexpectedApiResponseException;
use 
HybridauthUser;

/**
 * Odnoklassniki OAuth2 provider adapter.
 *
 * Example:
 *
 *   $config = [
 *       'callback'  => HybridauthHttpClientUtil::getCurrentUrl(),
 *       'keys'      => ['id' => '', 'key' => '', 'secret' => ''],
 *   ];

 *   $adapter = new HybridauthProviderOdnoklassniki($config);
 *
 *   try {
 *       if (!$adapter->isConnected()) {
 *           $adapter->authenticate();
 *       }
 *
 *       $userProfile = $adapter->getUserProfile();
 *   }
 *   catch(Exception $e) {
 *       print $e->getMessage() ;
 *   }
 */
class Odnoklassniki extends OAuth2
{
    
/**
    * {@inheritdoc}
    */
    
protected $apiBaseUrl 'https://api.ok.ru/';

    
/**
    * {@inheritdoc}
    */
    
protected $authorizeUrl 'https://connect.ok.ru/oauth/authorize';

    
/**
    * {@inheritdoc}
    */
    
protected $accessTokenUrl 'https://api.ok.ru/oauth/token.do';

    
/**
    * {@inheritdoc}
    */
    
protected function initialize()
    {
        
parent::initialize();

        
$this->tokenRefreshParameters += [
            
'client_id' => $this->clientId,
            
'client_secret' => $this->clientSecret
        
];
    }

    
/**
    * {@inheritdoc}
    */
    
public function getUserProfile()
    {
        
$fields = array(
            
'uid''locale''first_name''last_name''name''gender''age''birthday',
            
'has_email''current_status''current_status_id''current_status_date','online',
            
'photo_id''pic_1''pic_2''pic1024x768''location''email'
        
);

        
$sig md5(
            
'application_key=' $this->config->get('keys')['key'] .
            
'fields=' implode(','$fields) .
            
'method=users.getCurrentUser' .
            
md5($this->getStoredData('access_token') . $this->config->get('keys')['secret'])
        );

        
$parameters = [
            
'access_token'    => $this->getStoredData('access_token'),
            
'application_key' => $this->config->get('keys')['key'],
            
'method'          => 'users.getCurrentUser',
            
'fields'          => implode(','$fields),
            
'sig'             => $sig,
        ];

        
$response $this->apiRequest('fb.do''GET'$parameters);

        
$data = new DataCollection($response);

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

        
$userProfile = new UserProfile();


        
$userProfile->identifier  $data->get('uid');
        
$userProfile->email       $data->get('email');
        
$userProfile->firstName   $data->get('first_name');
        
$userProfile->lastName    $data->get('last_name');
        
$userProfile->displayName $data->get('name');
        
$userProfile->photoURL    $data->get('pic1024x768');
        
$userProfile->profileURL  'http://ok.ru/profile/' $data->get('uid');
        
        
// Handle birthday.
        
if ($data->get('birthday')) {
            
$bday                    explode('-'$data->get('birthday'));
            
$userProfile->birthDay   = (int)$bday[0];
            
$userProfile->birthMonth = (int)$bday[1];
            
$userProfile->birthYear  = (int)$bday[2];
        }

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