-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathUserModel.php
More file actions
412 lines (338 loc) · 11.2 KB
/
UserModel.php
File metadata and controls
412 lines (338 loc) · 11.2 KB
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
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter Shield.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* 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'];
protected $afterInsert = ['saveEmailIdentity'];
protected $afterUpdate = ['saveEmailIdentity'];
/**
* Whether identity records should be included
* when user records are fetched from the database.
*/
protected bool $fetchIdentities = 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;
}
/**
* 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;
}
/**
* 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
{
$result = $this->find($id);
return $result instanceof User ? $result : null;
}
/**
* 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);
}
}