Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
22 / 22 |
|
100.00% |
4 / 4 |
CRAP | |
100.00% |
1 / 1 |
CountryAndPhoneNumber | |
100.00% |
22 / 22 |
|
100.00% |
4 / 4 |
6 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getFields | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 | |||
validateState | |
100.00% |
9 / 9 |
|
100.00% |
1 / 1 |
2 | |||
createRandom | |
100.00% |
8 / 8 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | namespace Apie\CountryAndPhoneNumber; |
3 | |
4 | use Apie\Core\Attributes\FakeMethod; |
5 | use Apie\Core\ValueObjects\CompositeValueObject; |
6 | use Apie\Core\ValueObjects\CompositeWithOwnValidation; |
7 | use Apie\Core\ValueObjects\Fields\FieldInterface; |
8 | use Apie\Core\ValueObjects\Fields\FromProperty; |
9 | use Apie\CountryAndPhoneNumber\Exceptions\PhoneNumberAndCountryMismatch; |
10 | use Apie\CountryAndPhoneNumber\Factories\PhoneNumberFactory; |
11 | use Apie\CountryAndPhoneNumber\Fields\DynamicPhoneNumberProperty; |
12 | use Apie\Serializer\Exceptions\ValidationException; |
13 | use Faker\Generator; |
14 | use libphonenumber\PhoneNumberFormat; |
15 | use libphonenumber\PhoneNumberUtil; |
16 | use PrinsFrank\Standards\Country\CountryAlpha2; |
17 | use ReflectionProperty; |
18 | |
19 | #[FakeMethod('createRandom')] |
20 | final class CountryAndPhoneNumber implements CompositeWithOwnValidation |
21 | { |
22 | use CompositeValueObject; |
23 | |
24 | public function __construct(private CountryAlpha2 $country, private PhoneNumber $phoneNumber) |
25 | { |
26 | $this->validateState(); |
27 | } |
28 | |
29 | /** |
30 | * @return array<string, FieldInterface> |
31 | */ |
32 | public static function getFields(): array |
33 | { |
34 | return [ |
35 | 'country' => new FromProperty(new ReflectionProperty(CountryAndPhoneNumber::class, 'country')), |
36 | 'phoneNumber' => new DynamicPhoneNumberProperty(), |
37 | ]; |
38 | } |
39 | |
40 | private function validateState(): void |
41 | { |
42 | if ($this->country !== $this->phoneNumber->fromCountry()) { |
43 | throw ValidationException::createFromArray( |
44 | [ |
45 | 'phoneNumber' => new PhoneNumberAndCountryMismatch( |
46 | $this->country, |
47 | $this->phoneNumber->fromCountry() |
48 | ) |
49 | ] |
50 | ); |
51 | } |
52 | } |
53 | |
54 | public static function createRandom(Generator $generator): self |
55 | { |
56 | $phoneNumber = ''; |
57 | do { |
58 | $country = $generator->randomElement(CountryAlpha2::cases()); |
59 | $phoneNumberUtil = PhoneNumberUtil::getInstance(); |
60 | $phoneNumberObject = $phoneNumberUtil->getExampleNumber($country->value); |
61 | if ($phoneNumberObject) { |
62 | $phoneNumber = $phoneNumberUtil->format($phoneNumberObject, PhoneNumberFormat::E164); |
63 | } |
64 | } while ($phoneNumber === ''); |
65 | return new self($country, PhoneNumberFactory::createFrom($phoneNumber, $country)); |
66 | } |
67 | } |