Passed
Pull Request — master (#72)
by Daniel
06:31
created

AbstractUser::setOldPassword()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the Silverback API Components Bundle Project
5
 *
6
 * (c) Daniel West <[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
declare(strict_types=1);
13
14
namespace Silverback\ApiComponentsBundle\Entity\User;
15
16
use ApiPlatform\Core\Annotation\ApiProperty;
17
use DateTime;
18
use Lexik\Bundle\JWTAuthenticationBundle\Security\User\JWTUserInterface;
19
use Ramsey\Uuid\Uuid;
20
use Silverback\ApiComponentsBundle\Annotation as Silverback;
21
use Silverback\ApiComponentsBundle\Entity\Utility\IdTrait;
22
use Silverback\ApiComponentsBundle\Entity\Utility\TimestampedTrait;
23
use Silverback\ApiComponentsBundle\Validator\Constraints as AcbAssert;
24
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
25
use Symfony\Component\Security\Core\User\UserInterface as SymfonyUserInterface;
26
use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
27
use Symfony\Component\Serializer\Annotation\Groups;
28
use Symfony\Component\Validator\Constraints as Assert;
29
30
/**
31
 * @author Daniel West <[email protected]>
32
 *
33
 * @Silverback\Timestamped
34
 * @UniqueEntity(fields={"username"}, errorPath="username", message="Sorry, that user already exists in the database.")
35
 * @UniqueEntity(fields={"emailAddress"}, errorPath="emailAddress", message="Sorry, that email address already exists in the database.")
36
 * @AcbAssert\NewEmailAddress(groups={"User:emailAddress", "Default"})
37
 */
38
abstract class AbstractUser implements SymfonyUserInterface, JWTUserInterface
39
{
40
    use IdTrait;
41
    use TimestampedTrait;
42
43
    /**
44
     * @Assert\NotBlank(groups={"Default"}, message="Please enter a username.")
45
     * @Groups({"User:superAdmin", "User:output"})
46
     */
47
    protected ?string $username;
48
49
    /**
50
     * @Assert\NotBlank(groups={"Default"})
51
     * @Assert\Email()
52
     * @Groups({"User:superAdmin", "User:output"})
53
     */
54
    protected ?string $emailAddress;
55
56
    /**
57
     * @Groups({"User:superAdmin"})
58
     */
59
    protected array $roles;
60
61
    /**
62
     * @Groups({"User:superAdmin"})
63
     */
64
    protected bool $enabled;
65
66
    /**
67
     * @ApiProperty(readable=false, writable=false)
68
     */
69
    protected string $password;
70
71
    /**
72
     * @ApiProperty(readable=false)
73
     * @Assert\NotBlank(message="Please enter your desired password.", groups={"User:password:create"})
74
     * @Assert\Length(max="4096", min="6", maxMessage="Your password cannot be over 4096 characters", minMessage="Your password must be more than 6 characters long.", groups={"User:password:create"})
75
     * @Groups({"User:input"})
76
     */
77
    protected ?string $plainPassword = null;
78
79
    /**
80
     * Random string sent to the user email address in order to verify it.
81
     *
82
     * @ApiProperty(readable=false, writable=false)
83
     */
84
    protected ?string $newPasswordConfirmationToken = null;
85
86
    /**
87
     *  @ApiProperty(readable=false, writable=false)
88
     */
89
    public ?string $plainNewPasswordConfirmationToken = null;
90
91
    /**
92
     * @ApiProperty(readable=false, writable=false)
93
     */
94
    protected ?DateTime $passwordRequestedAt = null;
95
96
    /**
97
     * @ApiProperty(readable=false)
98
     * @UserPassword(message="You have not entered your current password correctly. Please try again.", groups={"User:password:change"})
99
     * @Groups({"User:input"})
100
     */
101
    protected ?string $oldPassword = null;
102
103
    /**
104
     * @ApiProperty(readable=false, writable=false)
105
     */
106
    protected ?DateTime $passwordUpdatedAt = null;
107
108
    /**
109
     * @Assert\NotBlank(groups={"User:emailAddress"})
110
     * @Groups({"User:input", "User:output", "User:emailAddress"})
111
     */
112
    protected ?string $newEmailAddress = null;
113
114
    /**
115
     * Random string sent to the user's new email address in order to verify it.
116
     *
117
     * @ApiProperty(readable=false, writable=false)
118
     */
119
    protected ?string $newEmailConfirmationToken = null;
120
121
    /**
122
     *  @ApiProperty(readable=false, writable=false)
123
     */
124
    public ?string $plainNewEmailConfirmationToken = null;
125
126
    /**
127
     * @ApiProperty(readable=false, writable=false)
128
     */
129
    protected bool $emailAddressVerified = false;
130
131
    /**
132
     * Random string sent to previous email address when email is changed to permit email restore and password change.
133
     *
134
     * @ApiProperty(readable=false, writable=false)
135
     */
136
    protected ?string $emailAddressVerifyToken = null;
137
138
    /**
139
     *  @ApiProperty(readable=false, writable=false)
140
     */
141
    public ?string $plainEmailAddressVerifyToken = null;
142
143
    /**
144
     * @ApiProperty(readable=false, writable=false)
145
     */
146
    protected ?DateTime $emailLastUpdatedAt = null;
147
148 56
    public function __construct(string $username = '', string $emailAddress = '', bool $emailAddressVerified = false, array $roles = ['ROLE_USER'], string $password = '', bool $enabled = true)
149
    {
150 56
        $this->username = $username;
151 56
        $this->emailAddress = $emailAddress;
152 56
        $this->emailAddressVerified = $emailAddressVerified;
153 56
        $this->roles = $roles;
154 56
        $this->password = $password;
155 56
        $this->enabled = $enabled;
156 56
    }
157
158 23
    public function getUsername(): ?string
159
    {
160 23
        return $this->username;
161
    }
162
163 22
    public function setUsername(?string $username): self
164
    {
165 22
        $this->username = $username;
166
167 22
        return $this;
168
    }
169
170 18
    public function getEmailAddress(): ?string
171
    {
172 18
        return $this->emailAddress;
173
    }
174
175 24
    public function setEmailAddress(?string $emailAddress): self
176
    {
177 24
        $this->emailAddress = $emailAddress;
178 24
        if ($emailAddress) {
179 24
            $this->emailLastUpdatedAt = new \DateTime();
180
        }
181
182 24
        return $this;
183
    }
184
185 4
    public function getRoles(): array
186
    {
187 4
        return $this->roles;
188
    }
189
190 1
    public function setRoles(array $roles): self
191
    {
192 1
        $this->roles = $roles;
193
194 1
        return $this;
195
    }
196
197 6
    public function isEnabled(): bool
198
    {
199 6
        return $this->enabled;
200
    }
201
202 4
    public function setEnabled(bool $enabled): self
203
    {
204 4
        $this->enabled = $enabled;
205
206 4
        return $this;
207
    }
208
209 3
    public function getPassword(): ?string
210
    {
211 3
        return $this->password;
212
    }
213
214 2
    public function setPassword(string $password): self
215
    {
216 2
        $this->password = $password;
217
218 2
        return $this;
219
    }
220
221 1
    public function getPlainPassword(): ?string
222
    {
223 1
        return $this->plainPassword;
224
    }
225
226 1
    public function setPlainPassword(?string $plainPassword): self
227
    {
228 1
        $this->plainPassword = $plainPassword;
229 1
        if ($plainPassword) {
230
            // Needs to update mapped field to trigger update event which will encode the plain password
231 1
            $this->passwordUpdatedAt = new \DateTime();
232
        }
233
234 1
        return $this;
235
    }
236
237 1
    public function getNewPasswordConfirmationToken(): ?string
238
    {
239 1
        return $this->newPasswordConfirmationToken;
240
    }
241
242 3
    public function setNewPasswordConfirmationToken(?string $newPasswordConfirmationToken): self
243
    {
244 3
        $this->newPasswordConfirmationToken = $newPasswordConfirmationToken;
245
246 3
        return $this;
247
    }
248
249 2
    public function getPasswordRequestedAt(): ?DateTime
250
    {
251 2
        return $this->passwordRequestedAt;
252
    }
253
254 4
    public function setPasswordRequestedAt(?DateTime $passwordRequestedAt): self
255
    {
256 4
        $this->passwordRequestedAt = $passwordRequestedAt;
257
258 4
        return $this;
259
    }
260
261 1
    public function getOldPassword(): ?string
262
    {
263 1
        return $this->oldPassword;
264
    }
265
266 1
    public function setOldPassword(?string $oldPassword): self
267
    {
268 1
        $this->oldPassword = $oldPassword;
269
270 1
        return $this;
271
    }
272
273 7
    public function getNewEmailAddress(): ?string
274
    {
275 7
        return $this->newEmailAddress;
276
    }
277
278 6
    public function setNewEmailAddress(?string $newEmailAddress): self
279
    {
280 6
        $this->newEmailAddress = $newEmailAddress;
281
282 6
        return $this;
283
    }
284
285 1
    public function getNewEmailConfirmationToken(): ?string
286
    {
287 1
        return $this->newEmailConfirmationToken;
288
    }
289
290 2
    public function setNewEmailConfirmationToken(?string $newEmailConfirmationToken): self
291
    {
292 2
        $this->newEmailConfirmationToken = $newEmailConfirmationToken;
293
294 2
        return $this;
295
    }
296
297 6
    public function isEmailAddressVerified(): bool
298
    {
299 6
        return $this->emailAddressVerified;
300
    }
301
302 5
    public function setEmailAddressVerified(bool $emailAddressVerified): self
303
    {
304 5
        $this->emailAddressVerified = $emailAddressVerified;
305
306 5
        return $this;
307
    }
308
309
    public function getEmailAddressVerifyToken(): ?string
310
    {
311
        return $this->emailAddressVerifyToken;
312
    }
313
314
    public function setEmailAddressVerifyToken(?string $emailAddressVerifyToken): void
315
    {
316
        $this->emailAddressVerifyToken = $emailAddressVerifyToken;
317
    }
318
319 1
    public function isPasswordRequestLimitReached($ttl): bool
320
    {
321 1
        $lastRequest = $this->getPasswordRequestedAt();
322
323 1
        return $lastRequest instanceof DateTime &&
324 1
            $lastRequest->getTimestamp() + $ttl > time();
325
    }
326
327
    /** @see \Serializable::serialize() */
328 1
    public function serialize(): string
329
    {
330 1
        return serialize([
331 1
            (string) $this->id,
332 1
            $this->username,
333 1
            $this->emailAddress,
334 1
            $this->password,
335 1
            $this->enabled,
336 1
            $this->roles,
337
        ]);
338
    }
339
340
    /**
341
     * @see \Serializable::unserialize()
342
     */
343 2
    public function unserialize(string $serialized): self
344
    {
345 2
        $id = null;
0 ignored issues
show
Unused Code introduced by
The assignment to $id is dead and can be removed.
Loading history...
346
        [
347
            $id,
348 2
            $this->username,
349 2
            $this->emailAddress,
350 2
            $this->password,
351 2
            $this->enabled,
352 2
            $this->roles,
353 2
        ] = unserialize($serialized, ['allowed_classes' => false]);
354 2
        $this->id = Uuid::fromString($id);
355
356 2
        return $this;
357
    }
358
359
    /**
360
     * Not needed - we use bcrypt.
361
     *
362
     * @ApiProperty(readable=false, writable=false)
363
     */
364
    public function getSalt()
365
    {
366
    }
367
368
    /**
369
     * Remove sensitive data - e.g. plain passwords etc.
370
     */
371 1
    public function eraseCredentials(): void
372
    {
373 1
        $this->plainPassword = null;
374 1
    }
375
376 2
    public function __toString()
377
    {
378 2
        return (string) $this->id;
379
    }
380
381
    public static function createFromPayload($username, array $payload)
382
    {
383
        return new static(
384
            $username,
385
            $payload['roles']
386
        );
387
    }
388
}
389