forked from Nodge/yii-eauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EOAuth2Service.php
154 lines (136 loc) · 4.2 KB
/
EOAuth2Service.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* EOAuth2Service class file.
*
* @author Maxim Zemskov <[email protected]>
* @link http://github.com/Nodge/yii-eauth/
* @license http://www.opensource.org/licenses/bsd-license.php
*/
require_once 'EAuthServiceBase.php';
/**
* EOAuth2Service is a base class for all OAuth 2.0 providers.
* @package application.extensions.eauth
*/
abstract class EOAuth2Service extends EAuthServiceBase implements IAuthService {
/**
* @var string OAuth2 client id.
*/
protected $client_id;
/**
* @var string OAuth2 client secret key.
*/
protected $client_secret;
/**
* @var string OAuth scopes.
*/
protected $scope = '';
/**
* @var array Provider options. Must contain the keys: authorize, access_token.
*/
protected $providerOptions = array(
'authorize' => '',
'access_token' => '',
);
/**
* @var string current OAuth2 access token.
*/
protected $access_token = '';
/**
* Authenticate the user.
* @return boolean whether user was successfuly authenticated.
*/
public function authenticate() {
// user denied error
if (isset($_GET['error']) && $_GET['error'] == 'access_denied') {
$this->cancel();
return false;
}
// Get the access_token and save them to the session.
if (isset($_GET['code'])) {
$code = $_GET['code'];
$token = $this->getAccessToken($code);
if (isset($token)) {
$this->saveAccessToken($token);
$this->authenticated = true;
}
}
// Redirect to the authorization page
else if (!$this->restoreAccessToken()) {
// Use the URL of the current page as the callback URL.
if (isset($_GET['redirect_uri'])) {
$redirect_uri = $_GET['redirect_uri'];
}
else {
$server = Yii::app()->request->getHostInfo();
$path = Yii::app()->request->getUrl();
$redirect_uri = $server.$path;
}
$url = $this->getCodeUrl($redirect_uri);
Yii::app()->request->redirect($url);
}
return $this->getIsAuthenticated();
}
/**
* Returns the url to request to get OAuth2 code.
* @param string $redirect_uri url to redirect after user confirmation.
* @return string url to request.
*/
protected function getCodeUrl($redirect_uri) {
$this->setState('redirect_uri', $redirect_uri);
return $this->providerOptions['authorize'].'?client_id='.$this->client_id.'&redirect_uri='.urlencode($redirect_uri).'&scope='.$this->scope.'&response_type=code';
}
/**
* Returns the url to request to get OAuth2 access token.
* @return string url to request.
*/
protected function getTokenUrl($code) {
return $this->providerOptions['access_token'].'?client_id='.$this->client_id.'&client_secret='.$this->client_secret.'&code='.$code.'&redirect_uri='.urlencode($this->getState('redirect_uri'));
}
/**
* Returns the OAuth2 access token.
* @param string $code the OAuth2 code. See {@link getCodeUrl}.
* @return string the token.
*/
protected function getAccessToken($code) {
return $this->makeRequest($this->getTokenUrl($code));
}
/**
* Save access token to the session.
* @param string $token access token.
*/
protected function saveAccessToken($token) {
$this->setState('auth_token', $token);
$this->access_token = $token;
}
/**
* Restore access token from the session.
* @return boolean whether the access token was successfuly restored.
*/
protected function restoreAccessToken() {
if ($this->hasState('auth_token') && $this->getState('expires', 0) > time()) {
$this->access_token = $this->getState('auth_token');
$this->authenticated = true;
return true;
}
else {
$this->access_token = null;
$this->authenticated = false;
return false;
}
}
/**
* Returns the protected resource.
* @param string $url url to request.
* @param array $options HTTP request options. Keys: query, data, referer.
* @param boolean $parseJson Whether to parse response in json format.
* @return stdClass the response.
* @see makeRequest
*/
public function makeSignedRequest($url, $options = array(), $parseJson = true) {
if (!$this->getIsAuthenticated())
throw new CHttpException(401, Yii::t('eauth', 'Unable to complete the request because the user was not authenticated.'));
$options['query']['access_token'] = $this->access_token;
$result = $this->makeRequest($url, $options);
return $result;
}
}