-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathUserModel.php
553 lines (450 loc) · 14.8 KB
/
UserModel.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter Shield.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Shield\Models;
use CodeIgniter\Database\Exceptions\DataException;
use CodeIgniter\I18n\Time;
use CodeIgniter\Shield\Authentication\Authenticators\Session;
use CodeIgniter\Shield\Entities\User;
use CodeIgniter\Shield\Entities\UserIdentity;
use CodeIgniter\Shield\Exceptions\InvalidArgumentException;
use CodeIgniter\Shield\Exceptions\LogicException;
use CodeIgniter\Shield\Exceptions\ValidationException;
use Faker\Generator;
/**
* @phpstan-consistent-constructor
*/
class UserModel extends BaseModel
{
protected $primaryKey = 'id';
protected $returnType = User::class;
protected $useSoftDeletes = true;
protected $allowedFields = [
'username',
'status',
'status_message',
'active',
'last_active',
];
protected $useTimestamps = true;
protected $afterFind = ['fetchIdentities', 'fetchGroups', 'fetchPermissions'];
protected $afterInsert = ['saveEmailIdentity'];
protected $afterUpdate = ['saveEmailIdentity'];
/**
* Whether identity records should be included
* when user records are fetched from the database.
*/
protected bool $fetchIdentities = false;
/**
* Whether groups should be included
* when user records are fetched from the database.
*/
protected bool $fetchGroups = false;
/**
* Whether permissions should be included
* when user records are fetched from the database.
*/
protected bool $fetchPermissions = false;
/**
* Save the User for afterInsert and afterUpdate
*/
protected ?User $tempUser = null;
protected function initialize(): void
{
parent::initialize();
$this->table = $this->tables['users'];
}
/**
* Mark the next find* query to include identities
*
* @return $this
*/
public function withIdentities(): self
{
$this->fetchIdentities = true;
return $this;
}
/**
* Mark the next find* query to include groups
*
* @return $this
*/
public function withGroups(): self
{
$this->fetchGroups = true;
return $this;
}
/**
* Mark the next find* query to include permissions
*
* @return $this
*/
public function withPermissions(): self
{
$this->fetchPermissions = true;
return $this;
}
/**
* Populates identities for all records
* returned from a find* method. Called
* automatically when $this->fetchIdentities == true
*
* Model event callback called by `afterFind`.
*/
protected function fetchIdentities(array $data): array
{
if (! $this->fetchIdentities) {
return $data;
}
$userIds = $data['singleton']
? array_column($data, 'id')
: array_column($data['data'], 'id');
if ($userIds === []) {
return $data;
}
/** @var UserIdentityModel $identityModel */
$identityModel = model(UserIdentityModel::class);
// Get our identities for all users
$identities = $identityModel->getIdentitiesByUserIds($userIds);
if (empty($identities)) {
return $data;
}
$mappedUsers = $this->assignIdentities($data, $identities);
$data['data'] = $data['singleton'] ? $mappedUsers[$data['id']] : $mappedUsers;
return $data;
}
/**
* Map our users by ID to make assigning simpler
*
* @param array $data Event $data
* @param list<UserIdentity> $identities
*
* @return list<User> UserId => User object
* @phpstan-return array<int|string, User> UserId => User object
*/
private function assignIdentities(array $data, array $identities): array
{
$mappedUsers = [];
$userIdentities = [];
$users = $data['singleton'] ? [$data['data']] : $data['data'];
foreach ($users as $user) {
$mappedUsers[$user->id] = $user;
}
unset($users);
// Now group the identities by user
foreach ($identities as $identity) {
$userIdentities[$identity->user_id][] = $identity;
}
unset($identities);
// Now assign the identities to the user
foreach ($userIdentities as $userId => $identityArray) {
$mappedUsers[$userId]->identities = $identityArray;
}
unset($userIdentities);
return $mappedUsers;
}
/**
* Populates groups for all records
* returned from a find* method. Called
* automatically when $this->fetchGroups == true
*
* Model event callback called by `afterFind`.
*/
protected function fetchGroups(array $data): array
{
if (! $this->fetchGroups) {
return $data;
}
$userIds = $data['singleton']
? array_column($data, 'id')
: array_column($data['data'], 'id');
if ($userIds === []) {
return $data;
}
/** @var GroupModel $groupModel */
$groupModel = model(GroupModel::class);
// Get our groups for all users
$groups = $groupModel->getGroupsByUserIds($userIds);
if ($groups === []) {
return $data;
}
$mappedUsers = $this->assignProperties($data, $groups, 'groups');
$data['data'] = $data['singleton'] ? $mappedUsers[$data['id']] : $mappedUsers;
return $data;
}
/**
* Populates permissions for all records
* returned from a find* method. Called
* automatically when $this->fetchPermissions == true
*
* Model event callback called by `afterFind`.
*/
protected function fetchPermissions(array $data): array
{
if (! $this->fetchPermissions) {
return $data;
}
$userIds = $data['singleton']
? array_column($data, 'id')
: array_column($data['data'], 'id');
if ($userIds === []) {
return $data;
}
/** @var PermissionModel $permissionModel */
$permissionModel = model(PermissionModel::class);
$permissions = $permissionModel->getPermissionsByUserIds($userIds);
if ($permissions === []) {
return $data;
}
$mappedUsers = $this->assignProperties($data, $permissions, 'permissions');
$data['data'] = $data['singleton'] ? $mappedUsers[$data['id']] : $mappedUsers;
return $data;
}
/**
* Map our users by ID to make assigning simpler
*
* @param array $data Event $data
* @param list<array> $properties
* @param string $type One of: 'groups' or 'permissions'
*
* @return list<User> UserId => User object
*/
private function assignProperties(array $data, array $properties, string $type): array
{
$mappedUsers = [];
$users = $data['singleton'] ? [$data['data']] : $data['data'];
foreach ($users as $user) {
$mappedUsers[$user->id] = $user;
}
unset($users);
// Build method name
$method = 'set' . ucfirst($type) . 'Cache';
// Now assign the properties to the user
foreach ($properties as $userId => $propertyArray) {
$mappedUsers[$userId]->{$method}($propertyArray);
}
unset($properties);
return $mappedUsers;
}
/**
* Adds a user to the default group.
* Used during registration.
*/
public function addToDefaultGroup(User $user): void
{
$defaultGroup = setting('AuthGroups.defaultGroup');
/** @var GroupModel $groupModel */
$groupModel = model(GroupModel::class);
if (empty($defaultGroup) || ! $groupModel->isValidGroup($defaultGroup)) {
throw new InvalidArgumentException(lang('Auth.unknownGroup', [$defaultGroup ?? '--not found--']));
}
$user->addGroup($defaultGroup);
}
public function fake(Generator &$faker): User
{
$this->checkReturnType();
return new $this->returnType([
'username' => $faker->unique()->userName(),
'active' => true,
]);
}
/**
* Locates a User object by ID.
*
* @param int|string $id
*/
public function findById($id): ?User
{
return $this->find($id);
}
/**
* Locate a User object by the given credentials.
*
* @param array<string, string> $credentials
*/
public function findByCredentials(array $credentials): ?User
{
// Email is stored in an identity so remove that here
$email = $credentials['email'] ?? null;
unset($credentials['email']);
if ($email === null && $credentials === []) {
return null;
}
// any of the credentials used should be case-insensitive
foreach ($credentials as $key => $value) {
$this->where(
'LOWER(' . $this->db->protectIdentifiers($this->table . ".{$key}") . ')',
strtolower($value),
);
}
if ($email !== null) {
/** @var array<string, int|string|null>|null $data */
$data = $this->select(
sprintf('%1$s.*, %2$s.secret as email, %2$s.secret2 as password_hash', $this->table, $this->tables['identities']),
)
->join($this->tables['identities'], sprintf('%1$s.user_id = %2$s.id', $this->tables['identities'], $this->table))
->where($this->tables['identities'] . '.type', Session::ID_TYPE_EMAIL_PASSWORD)
->where(
'LOWER(' . $this->db->protectIdentifiers($this->tables['identities'] . '.secret') . ')',
strtolower($email),
)
->asArray()
->first();
if ($data === null) {
return null;
}
$email = $data['email'];
unset($data['email']);
$password_hash = $data['password_hash'];
unset($data['password_hash']);
$this->checkReturnType();
$user = new $this->returnType($data);
$user->email = $email;
$user->password_hash = $password_hash;
$user->syncOriginal();
return $user;
}
return $this->first();
}
/**
* Activate a User.
*/
public function activate(User $user): void
{
$user->active = true;
$this->save($user);
}
/**
* Override the BaseModel's `insert()` method.
* If you pass User object, also inserts Email Identity.
*
* @param array|User $row
*
* @return int|string|true Insert ID if $returnID is true
*
* @throws ValidationException
*/
public function insert($row = null, bool $returnID = true)
{
// Clone User object for not changing the passed object.
$this->tempUser = $row instanceof User ? clone $row : null;
$result = parent::insert($row, $returnID);
$this->checkQueryReturn($result);
return $returnID ? $this->insertID : $result;
}
/**
* Override the BaseModel's `update()` method.
* If you pass User object, also updates Email Identity.
*
* @param array|int|string|null $id
* @param array|User $row
*
* @return true if the update is successful
*
* @throws ValidationException
*/
public function update($id = null, $row = null): bool
{
// Clone User object for not changing the passed object.
$this->tempUser = $row instanceof User ? clone $row : null;
try {
/** @throws DataException */
$result = parent::update($id, $row);
} catch (DataException $e) {
// When $data is an array.
if ($this->tempUser === null) {
throw $e;
}
$messages = [
lang('Database.emptyDataset', ['update']),
];
if (in_array($e->getMessage(), $messages, true)) {
$this->tempUser->saveEmailIdentity();
return true;
}
throw $e;
}
$this->checkQueryReturn($result);
return true;
}
/**
* Override the BaseModel's `save()` method.
* If you pass User object, also updates Email Identity.
*
* @param array|User $row
*
* @return true if the save is successful
*
* @throws ValidationException
*/
public function save($row): bool
{
$result = parent::save($row);
$this->checkQueryReturn($result);
return true;
}
/**
* Save Email Identity
*
* Model event callback called by `afterInsert` and `afterUpdate`.
*/
protected function saveEmailIdentity(array $data): array
{
// If insert()/update() gets an array data, do nothing.
if ($this->tempUser === null) {
return $data;
}
// Insert
if ($this->tempUser->id === null) {
/** @var User $user */
$user = $this->find($this->db->insertID());
// If you get identity (email/password), the User object must have the id.
$this->tempUser->id = $user->id;
$user->email = $this->tempUser->email ?? '';
$user->password = $this->tempUser->password ?? '';
$user->password_hash = $this->tempUser->password_hash ?? '';
$user->saveEmailIdentity();
$this->tempUser = null;
return $data;
}
// Update
$this->tempUser->saveEmailIdentity();
$this->tempUser = null;
return $data;
}
/**
* Updates the user's last active date.
*/
public function updateActiveDate(User $user): void
{
assert($user->last_active instanceof Time);
// Safe date string for database
$last_active = $this->timeToDate($user->last_active);
$this->builder()
->set('last_active', $last_active)
->where('id', $user->id)
->update();
}
private function checkReturnType(): void
{
if (! is_a($this->returnType, User::class, true)) {
throw new LogicException('Return type must be a subclass of ' . User::class);
}
}
/**
* Returns a new User Entity.
*
* @param array<string, array<array-key, mixed>|bool|float|int|object|string|null> $data (Optional) user data
*/
public function createNewUser(array $data = []): User
{
return new $this->returnType($data);
}
}