You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.4 KiB
72 lines
1.4 KiB
11 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\authclient\clients;
|
||
|
|
||
|
use yii\authclient\OAuth2;
|
||
|
|
||
|
/**
|
||
|
* YandexOAuth allows authentication via Yandex OAuth.
|
||
|
* In order to use Yandex OAuth you must register your application at [[https://oauth.yandex.ru/client/new]].
|
||
|
*
|
||
|
* @see https://oauth.yandex.ru/client/new
|
||
|
* @see http://api.yandex.ru/login/doc/dg/reference/response.xml
|
||
|
*
|
||
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class YandexOAuth extends OAuth2
|
||
|
{
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $authUrl = 'https://oauth.yandex.ru/authorize';
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $tokenUrl = 'https://oauth.yandex.ru/token';
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $apiBaseUrl = 'https://login.yandex.ru';
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function initUserAttributes()
|
||
|
{
|
||
|
return $this->api('info', 'GET');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function apiInternal($accessToken, $url, $method, array $params)
|
||
|
{
|
||
|
if (!isset($params['format'])) {
|
||
|
$params['format'] = 'json';
|
||
|
}
|
||
|
$params['oauth_token'] = $accessToken->getToken();
|
||
|
return $this->sendRequest($method, $url, $params);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function defaultName()
|
||
|
{
|
||
|
return 'yandex';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function defaultTitle()
|
||
|
{
|
||
|
return 'Yandex';
|
||
|
}
|
||
|
}
|