Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
90.91% |
20 / 22 |
|
77.78% |
7 / 9 |
CRAP | |
0.00% |
0 / 1 |
DynamicPhoneNumberProperty | |
90.91% |
20 / 22 |
|
77.78% |
7 / 9 |
12.11 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 | |||
getTypehint | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
isOptional | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
fromNative | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
4 | |||
fillField | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
fillMissingField | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
isInitialized | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getValue | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
toNative | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\CountryAndPhoneNumber\Fields; |
3 | |
4 | use Apie\Core\Exceptions\InvalidTypeException; |
5 | use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException; |
6 | use Apie\Core\ValueObjects\Fields\FieldInterface; |
7 | use Apie\Core\ValueObjects\Interfaces\ValueObjectInterface; |
8 | use Apie\Core\ValueObjects\Utils; |
9 | use Apie\CountryAndPhoneNumber\CountryAndPhoneNumber; |
10 | use Apie\CountryAndPhoneNumber\Exceptions\PhoneNumberAndCountryMismatch; |
11 | use Apie\CountryAndPhoneNumber\Factories\PhoneNumberFactory; |
12 | use Apie\CountryAndPhoneNumber\InternationalPhoneNumber; |
13 | use Apie\CountryAndPhoneNumber\PhoneNumber; |
14 | use Exception; |
15 | use ReflectionProperty; |
16 | |
17 | final class DynamicPhoneNumberProperty implements FieldInterface |
18 | { |
19 | private ReflectionProperty $property; |
20 | private ReflectionProperty $countryProperty; |
21 | |
22 | public function __construct() |
23 | { |
24 | $this->property = new ReflectionProperty(CountryAndPhoneNumber::class, 'phoneNumber'); |
25 | $this->countryProperty = new ReflectionProperty(CountryAndPhoneNumber::class, 'country'); |
26 | $this->property->setAccessible(true); |
27 | $this->countryProperty->setAccessible(true); |
28 | } |
29 | |
30 | public function getTypehint(): string |
31 | { |
32 | return PhoneNumber::class; |
33 | } |
34 | |
35 | public function isOptional(): bool |
36 | { |
37 | return false; |
38 | } |
39 | |
40 | public function fromNative(ValueObjectInterface $instance, mixed $value): void |
41 | { |
42 | // validation of country property is hit, ignore this error |
43 | if (!$this->countryProperty->isInitialized($instance)) { |
44 | return; |
45 | } |
46 | $country = $this->countryProperty->getValue($instance); |
47 | try { |
48 | $phoneNumber = PhoneNumberFactory::createFrom($value, $country); |
49 | } catch (InvalidStringForValueObjectException $error) { |
50 | $phoneNumberCountry = null; |
51 | try { |
52 | $phoneNumberCountry = InternationalPhoneNumber::fromNative($value)->toPhoneNumber()->fromCountry(); |
53 | } catch (Exception $ignored) { |
54 | // fallthrough |
55 | } |
56 | |
57 | throw new PhoneNumberAndCountryMismatch($country, $phoneNumberCountry, $error); |
58 | } |
59 | self::fillField($instance, $phoneNumber); |
60 | } |
61 | |
62 | public function fillField(ValueObjectInterface $instance, mixed $value): void |
63 | { |
64 | $this->property->setValue($instance, $value); |
65 | } |
66 | |
67 | public function fillMissingField(ValueObjectInterface $instance): void |
68 | { |
69 | throw new InvalidTypeException('(missing value)', $this->getTypehint()); |
70 | } |
71 | |
72 | public function isInitialized(ValueObjectInterface $instance): bool |
73 | { |
74 | return $this->property->isInitialized($instance); |
75 | } |
76 | |
77 | public function getValue(ValueObjectInterface $instance): mixed |
78 | { |
79 | return $this->property->getValue($instance); |
80 | } |
81 | |
82 | public function toNative(ValueObjectInterface $instance): string |
83 | { |
84 | $value = $this->getValue($instance); |
85 | return Utils::toNative($value); |
86 | } |
87 | } |