-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathJwtAuthenticate.php
273 lines (238 loc) · 7.93 KB
/
JwtAuthenticate.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
declare(strict_types=1);
namespace ADmad\JwtAuth\Auth;
use Cake\Auth\BaseAuthenticate;
use Cake\Controller\ComponentRegistry;
use Cake\Core\Configure;
use Cake\Http\Exception\UnauthorizedException;
use Cake\Http\Response;
use Cake\Http\ServerRequest;
use Cake\Utility\Security;
use Exception;
use Firebase\JWT\JWT;
/**
* An authentication adapter for authenticating using JSON Web Tokens.
*
* ```
* $this->Auth->config('authenticate', [
* 'ADmad/JwtAuth.Jwt' => [
* 'parameter' => 'token',
* 'userModel' => 'Users',
* 'fields' => [
* 'username' => 'id'
* ],
* ]
* ]);
* ```
*
* @copyright 2015-Present ADmad
* @license MIT
* @see http://jwt.io
* @see http://tools.ietf.org/html/draft-ietf-oauth-json-web-token
*/
class JwtAuthenticate extends BaseAuthenticate
{
/**
* Parsed token.
*
* @var string|null
*/
protected $_token;
/**
* Payload data.
*
* @var object|null
*/
protected $_payload;
/**
* Exception.
*
* @var \Throwable|null
*/
protected $_error;
/**
* Constructor.
*
* Settings for this object.
*
* - `cookie` - Cookie name to check. Defaults to `false`.
* - `header` - Header name to check. Defaults to `'authorization'`.
* - `prefix` - Token prefix. Defaults to `'bearer'`.
* - `parameter` - The url parameter name of the token. Defaults to `token`.
* First $_SERVER['HTTP_AUTHORIZATION'] is checked for token value.
* Its value should be of form "Bearer <token>". If empty this query string
* paramater is checked.
* - `allowedAlgs` - List of supported verification algorithms.
* Defaults to ['HS256']. See API of JWT::decode() for more info.
* - `queryDatasource` - Boolean indicating whether the `sub` claim of JWT
* token should be used to query the user model and get user record. If
* set to `false` JWT's payload is directly retured. Defaults to `true`.
* - `userModel` - The model name of users, defaults to `Users`.
* - `fields` - Key `username` denotes the identifier field for fetching user
* record. The `sub` claim of JWT must contain identifier value.
* Defaults to ['username' => 'id'].
* - `finder` - Finder method.
* - `unauthenticatedException` - Fully namespaced exception name. Exception to
* throw if authentication fails. Set to false to do nothing.
* Defaults to '\Cake\Http\Exception\UnauthorizedException'.
* - `key` - The key, or map of keys used to decode JWT. If not set, value
* of Security::salt() will be used.
*
* @param \Cake\Controller\ComponentRegistry $registry The Component registry
* used on this request.
* @param array $config Array of config to use.
*/
public function __construct(ComponentRegistry $registry, array $config)
{
$defaultConfig = [
'cookie' => false,
'header' => 'authorization',
'prefix' => 'bearer',
'parameter' => 'token',
'queryDatasource' => true,
'fields' => ['username' => 'id'],
'unauthenticatedException' => UnauthorizedException::class,
'key' => null,
];
$this->setConfig($defaultConfig);
if (empty($config['allowedAlgs'])) {
$config['allowedAlgs'] = ['HS256'];
}
parent::__construct($registry, $config);
}
/**
* Get user record based on info available in JWT.
*
* @param \Cake\Http\ServerRequest $request The request object.
* @param \Cake\Http\Response $response Response object.
* @return false|array User record array or false on failure.
*/
public function authenticate(ServerRequest $request, Response $response)
{
return $this->getUser($request);
}
/**
* Get user record based on info available in JWT.
*
* @param \Cake\Http\ServerRequest $request Request object.
* @return false|array User record array or false on failure.
*/
public function getUser(ServerRequest $request)
{
$payload = $this->getPayload($request);
if (empty($payload)) {
return false;
}
if (!$this->_config['queryDatasource']) {
return json_decode(json_encode($payload), true);
}
if (!isset($payload->sub)) {
return false;
}
$user = $this->_findUser((string)$payload->sub);
if (!$user) {
return false;
}
unset($user[$this->_config['fields']['password']]);
return $user;
}
/**
* Get payload data.
*
* @param \Cake\Http\ServerRequest|null $request Request instance or null
* @return object|null Payload object on success, null on failurec
*/
public function getPayload(?ServerRequest $request = null)
{
if (!$request) {
return $this->_payload;
}
$payload = null;
$token = $this->getToken($request);
if ($token) {
$payload = $this->_decode($token);
}
return $this->_payload = $payload;
}
/**
* Get token from header or query string.
*
* @param \Cake\Http\ServerRequest|null $request Request object.
* @return string|null Token string if found else null.
*/
public function getToken(?ServerRequest $request = null)
{
$config = $this->_config;
if ($request === null) {
return $this->_token;
}
$header = $request->getHeaderLine($config['header']);
if ($header && stripos($header, $config['prefix']) === 0) {
return $this->_token = str_ireplace($config['prefix'] . ' ', '', $header);
}
if (!empty($this->_config['cookie'])) {
$token = $request->getCookie($this->_config['cookie']);
if ($token !== null) {
/** @psalm-suppress PossiblyInvalidCast */
$token = (string)$token;
}
return $this->_token = $token;
}
if (!empty($this->_config['parameter'])) {
$token = $request->getQuery($this->_config['parameter']);
if ($token !== null) {
/** @psalm-suppress PossiblyInvalidCast */
$token = (string)$token;
}
return $this->_token = $token;
}
return $this->_token;
}
/**
* Decode JWT token.
*
* @param string $token JWT token to decode.
* @return object|null The JWT's payload as a PHP object, null on failure.
*/
protected function _decode(string $token)
{
$config = $this->_config;
try {
$payload = JWT::decode(
$token,
$config['key'] ?: Security::getSalt(),
$config['allowedAlgs']
);
return $payload;
} catch (Exception $e) {
if (Configure::read('debug')) {
throw $e;
}
$this->_error = $e;
}
return null;
}
/**
* Handles an unauthenticated access attempt. Depending on value of config
* `unauthenticatedException` either throws the specified exception or returns
* null.
*
* @param \Cake\Http\ServerRequest $request A request object.
* @param \Cake\Http\Response $response A response object.
* @throws \Cake\Http\Exception\UnauthorizedException Or any other
* configured exception.
* @return void
*/
public function unauthenticated(ServerRequest $request, Response $response)
{
if (!$this->_config['unauthenticatedException']) {
return;
}
$message = $this->_error
? $this->_error->getMessage()
: $this->_registry->get('Auth')->getConfig('authError');
/** @var \Throwable $exception */
$exception = new $this->_config['unauthenticatedException']($message);
throw $exception;
}
}