Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
85.71% covered (warning)
85.71%
6 / 7
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
EncryptedPassword
85.71% covered (warning)
85.71%
6 / 7
80.00% covered (warning)
80.00%
4 / 5
5.07
0.00% covered (danger)
0.00%
0 / 1
 fromUnencryptedPassword
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getRegularExpression
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 verifyUnencryptedPassword
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getIndexes
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 createRandom
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\TextValueObjects;
3
4use Apie\Core\Attributes\FakeMethod;
5use Apie\Core\Attributes\ProvideIndex;
6use Apie\Core\ValueObjects\Interfaces\StringValueObjectInterface;
7use Apie\Core\ValueObjects\IsStringWithRegexValueObject;
8use Faker\Generator;
9use Stringable;
10
11#[FakeMethod('createRandom')]
12#[ProvideIndex('getIndexes')]
13final class EncryptedPassword implements StringValueObjectInterface
14{
15    use IsStringWithRegexValueObject;
16
17    public static function fromUnencryptedPassword(Stringable|string $password): self
18    {
19        $password = (string) $password;
20        return new self(password_hash($password, null));
21    }
22
23    public static function getRegularExpression(): string
24    {
25        return '/^[$]2[abxy]?[$](?:0[4-9]|[12][0-9]|3[01])[$][.\/0-9a-zA-Z]{53,60}$/';
26    }
27
28    public function verifyUnencryptedPassword(Stringable|string $password): bool
29    {
30        $password = (string) $password;
31        return password_verify($password, $this->internal);
32    }
33
34    /**
35     * @return array<string, int>
36     */
37    public static function getIndexes(): array
38    {
39        return [];
40    }
41
42    public static function createRandom(Generator $generator): self
43    {
44        return self::fromUnencryptedPassword($generator->password(6, 42));
45    }
46}