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.
54 lines
1.3 KiB
54 lines
1.3 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;
|
||
|
|
||
|
/**
|
||
|
* GoogleOAuth allows authentication via Google OAuth.
|
||
|
* In order to use Google OAuth you must register your application at [[https://code.google.com/apis/console#access]].
|
||
|
*
|
||
|
* @see https://code.google.com/apis/console#access
|
||
|
* @see https://developers.google.com/google-apps/contacts/v3/
|
||
|
*
|
||
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class GoogleOAuth extends OAuth2
|
||
|
{
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function __construct($config = [])
|
||
|
{
|
||
|
$config = array_merge(
|
||
|
[
|
||
|
'clientId' => 'anonymous',
|
||
|
'clientSecret' => 'anonymous',
|
||
|
'authUrl' => 'https://accounts.google.com/o/oauth2/auth',
|
||
|
'tokenUrl' => 'https://accounts.google.com/o/oauth2/token',
|
||
|
'apiBaseUrl' => 'https://www.googleapis.com/oauth2/v1',
|
||
|
'scope' => implode(' ', [
|
||
|
'https://www.googleapis.com/auth/userinfo.profile',
|
||
|
'https://www.googleapis.com/auth/userinfo.email',
|
||
|
]),
|
||
|
],
|
||
|
$config
|
||
|
);
|
||
|
parent::__construct($config);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function initUserAttributes()
|
||
|
{
|
||
|
$attributes = $this->api('userinfo', 'GET');
|
||
|
return $attributes;
|
||
|
}
|
||
|
}
|