1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the CRUDlexUser package. |
5
|
|
|
* |
6
|
|
|
* (c) Philip Lehmann-Böhm <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace CRUDlex; |
13
|
|
|
|
14
|
|
|
use CRUDlex\UserSetup; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* This class offers some features to implement a password reset flow. |
18
|
|
|
*/ |
19
|
|
|
class PasswordReset { |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Holds the user Data instance. |
23
|
|
|
*/ |
24
|
|
|
protected $userData; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Holds the password reset Data instance. |
28
|
|
|
*/ |
29
|
|
|
protected $passwordResetData; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Constructor. |
33
|
|
|
* |
34
|
|
|
* @param CRUDlex\Data $userData |
35
|
|
|
* the user data instance |
36
|
|
|
* @param CRUDlex\Data $passwordResetData |
37
|
|
|
* the password reset data instance |
38
|
|
|
*/ |
39
|
|
|
public function __construct($userData, $passwordResetData) { |
40
|
|
|
$this->userData = $userData; |
41
|
|
|
$this->passwordResetData = $passwordResetData; |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Creates a password reset request. |
46
|
|
|
* |
47
|
|
|
* @param string $identifyingField |
48
|
|
|
* the identifying field to grab an user, likely the email |
49
|
|
|
* @param string $identifyingValue |
50
|
|
|
* the identifying value to grab an user, likely the email |
51
|
|
|
* |
52
|
|
|
* @return null|string |
53
|
|
|
* the token of the password reset instance ready to be send to the user via |
54
|
|
|
* a secondary channel like email; might be null if the user could not be |
55
|
|
|
* identified uniquly via the given parameters: either zero or more than one |
56
|
|
|
* users were found |
57
|
|
|
*/ |
58
|
|
|
public function requestPasswordReset($identifyingField, $identifyingValue) { |
59
|
|
|
|
60
|
|
|
$users = $this->userData->listEntries(array($identifyingField => $identifyingValue)); |
61
|
|
|
if (count($users) !== 1) { |
62
|
|
|
return null; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
$user = $users[0]; |
66
|
|
|
$userSetup = new UserSetup(); |
67
|
|
|
|
68
|
|
|
do { |
69
|
|
|
$token = $userSetup->getSalt(32); |
70
|
|
|
$tokenFound = $this->passwordResetData->countBy($this->passwordResetData->getDefinition()->getTable(), array('token' => $token), array('token' => '='), true) === 0; |
71
|
|
|
} while (!$tokenFound); |
72
|
|
|
|
73
|
|
|
$passwordReset = $this->passwordResetData->createEmpty(); |
74
|
|
|
$passwordReset->set('user', $user->get('id')); |
75
|
|
|
$passwordReset->set('token', $token); |
76
|
|
|
$this->passwordResetData->create($passwordReset); |
77
|
|
|
|
78
|
|
|
return $token; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
} |
82
|
|
|
|