1 | <?php |
||
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 | * Gets the password reset of a token but only if it is younger than 48h. |
||
33 | * |
||
34 | * @param string $token |
||
35 | * the password reset token |
||
36 | * |
||
37 | * @return null|CRUDlex\Entity |
||
38 | * the password reset request |
||
39 | */ |
||
40 | protected function getValidPasswordReset($token) { |
||
54 | |||
55 | /** |
||
56 | * Constructor. |
||
57 | * |
||
58 | * @param CRUDlex\Data $userData |
||
59 | * the user data instance |
||
60 | * @param CRUDlex\Data $passwordResetData |
||
61 | * the password reset data instance |
||
62 | */ |
||
63 | public function __construct($userData, $passwordResetData) { |
||
67 | |||
68 | /** |
||
69 | * Creates a password reset request. |
||
70 | * |
||
71 | * @param string $identifyingField |
||
72 | * the identifying field to grab an user, likely the email |
||
73 | * @param string $identifyingValue |
||
74 | * the identifying value to grab an user, likely the email |
||
75 | * |
||
76 | * @return null|string |
||
77 | * the token of the password reset instance ready to be send to the user via |
||
78 | * a secondary channel like email; might be null if the user could not be |
||
79 | * identified uniquly via the given parameters: either zero or more than one |
||
80 | * users were found |
||
81 | */ |
||
82 | public function requestPasswordReset($identifyingField, $identifyingValue) { |
||
104 | |||
105 | /** |
||
106 | * Resets the password of an user belonging to the given password reset |
||
107 | * token. |
||
108 | * |
||
109 | * @param string $token |
||
110 | * the password reset token |
||
111 | * @param string $newPassword |
||
112 | * the new password |
||
113 | * |
||
114 | * @return boolean |
||
115 | * true on success, false on failure with one of this reasons: |
||
116 | * - no or more than one password reset request found for this token |
||
117 | * - the password request for this token is older than 48h |
||
118 | * - the password request for this token has already been used |
||
119 | */ |
||
120 | public function resetPassword($token, $newPassword) { |
||
136 | |||
137 | } |
||
138 |