1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace OAuth2\Controller; |
4
|
|
|
|
5
|
|
|
use OAuth2\ResponseType\AccessTokenInterface; |
6
|
|
|
use OAuth2\ClientAssertionType\ClientAssertionTypeInterface; |
7
|
|
|
use OAuth2\GrantType\GrantTypeInterface; |
8
|
|
|
use OAuth2\ScopeInterface; |
9
|
|
|
use OAuth2\Scope; |
10
|
|
|
use OAuth2\Storage\ClientInterface; |
11
|
|
|
use OAuth2\RequestInterface; |
12
|
|
|
use OAuth2\ResponseInterface; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* @see OAuth2\Controller\TokenControllerInterface |
16
|
|
|
*/ |
17
|
|
|
class TokenController implements TokenControllerInterface |
18
|
|
|
{ |
19
|
|
|
protected $accessToken; |
20
|
|
|
protected $grantTypes; |
21
|
|
|
protected $clientAssertionType; |
22
|
|
|
protected $scopeUtil; |
23
|
|
|
protected $clientStorage; |
24
|
|
|
|
25
|
|
|
public function __construct(AccessTokenInterface $accessToken, ClientInterface $clientStorage, array $grantTypes = array(), ClientAssertionTypeInterface $clientAssertionType = null, ScopeInterface $scopeUtil = null) |
26
|
|
|
{ |
27
|
|
|
if (is_null($clientAssertionType)) { |
28
|
|
|
foreach ($grantTypes as $grantType) { |
29
|
|
|
if (!$grantType instanceof ClientAssertionTypeInterface) { |
30
|
|
|
throw new \InvalidArgumentException('You must supply an instance of OAuth2\ClientAssertionType\ClientAssertionTypeInterface or only use grant types which implement OAuth2\ClientAssertionType\ClientAssertionTypeInterface'); |
31
|
|
|
} |
32
|
|
|
} |
33
|
|
|
} |
34
|
|
|
$this->clientAssertionType = $clientAssertionType; |
35
|
|
|
$this->accessToken = $accessToken; |
36
|
|
|
$this->clientStorage = $clientStorage; |
37
|
|
|
foreach ($grantTypes as $grantType) { |
38
|
|
|
$this->addGrantType($grantType); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
if (is_null($scopeUtil)) { |
42
|
|
|
$scopeUtil = new Scope(); |
43
|
|
|
} |
44
|
|
|
$this->scopeUtil = $scopeUtil; |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
public function handleTokenRequest(RequestInterface $request, ResponseInterface $response) |
48
|
|
|
{ |
49
|
|
|
if ($token = $this->grantAccessToken($request, $response)) { |
50
|
|
|
// @see http://tools.ietf.org/html/rfc6749#section-5.1 |
51
|
|
|
// server MUST disable caching in headers when tokens are involved |
52
|
|
|
$response->setStatusCode(200); |
53
|
|
|
$response->addParameters($token); |
54
|
|
|
$response->addHttpHeaders(array('Cache-Control' => 'no-store', 'Pragma' => 'no-cache')); |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* Grant or deny a requested access token. |
60
|
|
|
* This would be called from the "/token" endpoint as defined in the spec. |
61
|
|
|
* You can call your endpoint whatever you want. |
62
|
|
|
* |
63
|
|
|
* @param $request - RequestInterface |
64
|
|
|
* Request object to grant access token |
65
|
|
|
* |
66
|
|
|
* @throws InvalidArgumentException |
67
|
|
|
* @throws LogicException |
68
|
|
|
* |
69
|
|
|
* @see http://tools.ietf.org/html/rfc6749#section-4 |
70
|
|
|
* @see http://tools.ietf.org/html/rfc6749#section-10.6 |
71
|
|
|
* @see http://tools.ietf.org/html/rfc6749#section-4.1.3 |
72
|
|
|
* |
73
|
|
|
* @ingroup oauth2_section_4 |
74
|
|
|
*/ |
|
|
|
|
75
|
|
|
public function grantAccessToken(RequestInterface $request, ResponseInterface $response) |
76
|
|
|
{ |
77
|
|
|
if (strtolower($request->server('REQUEST_METHOD')) != 'post') { |
78
|
|
|
$response->setError(405, 'invalid_request', 'The request method must be POST when requesting an access token', '#section-3.2'); |
79
|
|
|
$response->addHttpHeaders(array('Allow' => 'POST')); |
80
|
|
|
|
81
|
|
|
return null; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
/** |
85
|
|
|
* Determine grant type from request |
86
|
|
|
* and validate the request for that grant type |
87
|
|
|
*/ |
88
|
|
|
if (!$grantTypeIdentifier = $request->request('grant_type')) { |
89
|
|
|
$response->setError(400, 'invalid_request', 'The grant type was not specified in the request'); |
90
|
|
|
|
91
|
|
|
return null; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
if (!isset($this->grantTypes[$grantTypeIdentifier])) { |
95
|
|
|
/* TODO: If this is an OAuth2 supported grant type that we have chosen not to implement, throw a 501 Not Implemented instead */ |
96
|
|
|
$response->setError(400, 'unsupported_grant_type', sprintf('Grant type "%s" not supported', $grantTypeIdentifier)); |
97
|
|
|
|
98
|
|
|
return null; |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
$grantType = $this->grantTypes[$grantTypeIdentifier]; |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Retrieve the client information from the request |
105
|
|
|
* ClientAssertionTypes allow for grant types which also assert the client data |
106
|
|
|
* in which case ClientAssertion is handled in the validateRequest method |
107
|
|
|
* |
108
|
|
|
* @see OAuth2\GrantType\JWTBearer |
109
|
|
|
* @see OAuth2\GrantType\ClientCredentials |
110
|
|
|
*/ |
111
|
|
|
if (!$grantType instanceof ClientAssertionTypeInterface) { |
112
|
|
|
if (!$this->clientAssertionType->validateRequest($request, $response)) { |
113
|
|
|
return null; |
114
|
|
|
} |
115
|
|
|
$clientId = $this->clientAssertionType->getClientId(); |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
/** |
119
|
|
|
* Retrieve the grant type information from the request |
120
|
|
|
* The GrantTypeInterface object handles all validation |
121
|
|
|
* If the object is an instance of ClientAssertionTypeInterface, |
122
|
|
|
* That logic is handled here as well |
123
|
|
|
*/ |
124
|
|
|
if (!$grantType->validateRequest($request, $response)) { |
125
|
|
|
return null; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
if ($grantType instanceof ClientAssertionTypeInterface) { |
129
|
|
|
$clientId = $grantType->getClientId(); |
130
|
|
|
} else { |
131
|
|
|
// validate the Client ID (if applicable) |
132
|
|
|
if (!is_null($storedClientId = $grantType->getClientId()) && $storedClientId != $clientId) { |
|
|
|
|
133
|
|
|
$response->setError(400, 'invalid_grant', sprintf('%s doesn\'t exist or is invalid for the client', $grantTypeIdentifier)); |
134
|
|
|
|
135
|
|
|
return null; |
136
|
|
|
} |
137
|
|
|
} |
138
|
|
|
|
139
|
|
|
/** |
140
|
|
|
* Validate the client can use the requested grant type |
141
|
|
|
*/ |
142
|
|
|
if (!$this->clientStorage->checkRestrictedGrantType($clientId, $grantTypeIdentifier)) { |
143
|
|
|
$response->setError(400, 'unauthorized_client', 'The grant type is unauthorized for this client_id'); |
144
|
|
|
|
145
|
|
|
return false; |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
/** |
149
|
|
|
* Validate the scope of the token |
150
|
|
|
* |
151
|
|
|
* requestedScope - the scope specified in the token request |
152
|
|
|
* availableScope - the scope associated with the grant type |
153
|
|
|
* ex: in the case of the "Authorization Code" grant type, |
154
|
|
|
* the scope is specified in the authorize request |
155
|
|
|
* |
156
|
|
|
* @see http://tools.ietf.org/html/rfc6749#section-3.3 |
157
|
|
|
*/ |
158
|
|
|
|
159
|
|
|
$requestedScope = $this->scopeUtil->getScopeFromRequest($request); |
160
|
|
|
$availableScope = $grantType->getScope(); |
161
|
|
|
|
162
|
|
|
if ($requestedScope) { |
163
|
|
|
// validate the requested scope |
164
|
|
|
if ($availableScope) { |
165
|
|
|
if (!$this->scopeUtil->checkScope($requestedScope, $availableScope)) { |
166
|
|
|
$response->setError(400, 'invalid_scope', 'The scope requested is invalid for this request'); |
167
|
|
|
|
168
|
|
|
return null; |
169
|
|
|
} |
170
|
|
|
} else { |
171
|
|
|
// validate the client has access to this scope |
172
|
|
|
if ($clientScope = $this->clientStorage->getClientScope($clientId)) { |
173
|
|
|
if (!$this->scopeUtil->checkScope($requestedScope, $clientScope)) { |
174
|
|
|
$response->setError(400, 'invalid_scope', 'The scope requested is invalid for this client'); |
175
|
|
|
|
176
|
|
|
return false; |
177
|
|
|
} |
178
|
|
|
} elseif (!$this->scopeUtil->scopeExists($requestedScope)) { |
179
|
|
|
$response->setError(400, 'invalid_scope', 'An unsupported scope was requested'); |
180
|
|
|
|
181
|
|
|
return null; |
182
|
|
|
} |
183
|
|
|
} |
184
|
|
|
} elseif ($availableScope) { |
185
|
|
|
// use the scope associated with this grant type |
186
|
|
|
$requestedScope = $availableScope; |
187
|
|
|
} else { |
188
|
|
|
// use a globally-defined default scope |
189
|
|
|
$defaultScope = $this->scopeUtil->getDefaultScope($clientId); |
190
|
|
|
|
191
|
|
|
// "false" means default scopes are not allowed |
192
|
|
|
if (false === $defaultScope) { |
193
|
|
|
$response->setError(400, 'invalid_scope', 'This application requires you specify a scope parameter'); |
194
|
|
|
|
195
|
|
|
return null; |
196
|
|
|
} |
197
|
|
|
|
198
|
|
|
$requestedScope = $defaultScope; |
199
|
|
|
} |
200
|
|
|
|
201
|
|
|
return $grantType->createAccessToken($this->accessToken, $clientId, $grantType->getUserId(), $requestedScope); |
202
|
|
|
} |
203
|
|
|
|
204
|
|
|
/** |
205
|
|
|
* addGrantType |
206
|
|
|
* |
207
|
|
|
* @param grantType - OAuth2\GrantTypeInterface |
208
|
|
|
* the grant type to add for the specified identifier |
209
|
|
|
* @param identifier - string |
210
|
|
|
* a string passed in as "grant_type" in the response that will call this grantType |
211
|
|
|
*/ |
|
|
|
|
212
|
|
|
public function addGrantType(GrantTypeInterface $grantType, $identifier = null) |
213
|
|
|
{ |
214
|
|
|
if (is_null($identifier) || is_numeric($identifier)) { |
215
|
|
|
$identifier = $grantType->getQuerystringIdentifier(); |
216
|
|
|
} |
217
|
|
|
|
218
|
|
|
$this->grantTypes[$identifier] = $grantType; |
219
|
|
|
} |
220
|
|
|
|
221
|
|
|
public function handleRevokeRequest(RequestInterface $request, ResponseInterface $response) |
222
|
|
|
{ |
223
|
|
|
if ($this->revokeToken($request, $response)) { |
224
|
|
|
$response->setStatusCode(200); |
225
|
|
|
$response->addParameters(array('revoked' => true)); |
226
|
|
|
} |
227
|
|
|
} |
228
|
|
|
|
229
|
|
|
/** |
230
|
|
|
* Revoke a refresh or access token. Returns true on success and when tokens are invalid |
231
|
|
|
* |
232
|
|
|
* Note: invalid tokens do not cause an error response since the client |
233
|
|
|
* cannot handle such an error in a reasonable way. Moreover, the |
234
|
|
|
* purpose of the revocation request, invalidating the particular token, |
235
|
|
|
* is already achieved. |
236
|
|
|
* |
237
|
|
|
* @param RequestInterface $request |
238
|
|
|
* @param ResponseInterface $response |
239
|
|
|
* @return bool|null |
240
|
|
|
*/ |
241
|
|
|
public function revokeToken(RequestInterface $request, ResponseInterface $response) |
242
|
|
|
{ |
243
|
|
|
if (strtolower($request->server('REQUEST_METHOD')) != 'post') { |
244
|
|
|
$response->setError(405, 'invalid_request', 'The request method must be POST when revoking an access token', '#section-3.2'); |
245
|
|
|
$response->addHttpHeaders(array('Allow' => 'POST')); |
246
|
|
|
|
247
|
|
|
return null; |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
$token_type_hint = $request->request('token_type_hint'); |
251
|
|
|
if (!in_array($token_type_hint, array(null, 'access_token', 'refresh_token'), true)) { |
252
|
|
|
$response->setError(400, 'invalid_request', 'Token type hint must be either \'access_token\' or \'refresh_token\''); |
253
|
|
|
|
254
|
|
|
return null; |
255
|
|
|
} |
256
|
|
|
|
257
|
|
|
$token = $request->request('token'); |
258
|
|
|
if ($token === null) { |
259
|
|
|
$response->setError(400, 'invalid_request', 'Missing token parameter to revoke'); |
260
|
|
|
|
261
|
|
|
return null; |
262
|
|
|
} |
263
|
|
|
|
264
|
|
|
// @todo remove this check for v2.0 |
265
|
|
|
if (!method_exists($this->accessToken, 'revokeToken')) { |
266
|
|
|
$class = get_class($this->accessToken); |
267
|
|
|
throw new \RuntimeException("AccessToken {$class} does not implement required revokeToken method"); |
268
|
|
|
} |
269
|
|
|
|
270
|
|
|
$this->accessToken->revokeToken($token, $token_type_hint); |
271
|
|
|
|
272
|
|
|
return true; |
273
|
|
|
} |
274
|
|
|
} |
275
|
|
|
|