1 | <?php |
||
21 | abstract class DataTransferObject implements DtoContract |
||
22 | { |
||
23 | /** @var array */ |
||
24 | protected $onlyKeys = []; |
||
25 | |||
26 | /** @var Property[] | array */ |
||
27 | protected $properties = []; |
||
28 | |||
29 | /** @var bool */ |
||
30 | protected $immutable = false; |
||
31 | |||
32 | public function __construct(array $parameters) |
||
33 | { |
||
34 | $this->boot($parameters); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Boot the dto and process all parameters. |
||
39 | * @param array $parameters |
||
40 | * @throws \ReflectionException |
||
41 | */ |
||
42 | protected function boot(array $parameters): void |
||
43 | { |
||
44 | $this->resolveImmutable(); |
||
45 | |||
46 | foreach ($this->getPublicProperties() as $property) { |
||
47 | |||
48 | /* |
||
49 | * Do not change the order of the following methods. |
||
50 | * External packages rely on this order. |
||
51 | */ |
||
52 | |||
53 | $this->setPropertyDefaultValue($property); |
||
54 | |||
55 | $property = $this->mutateProperty($property); |
||
56 | |||
57 | $this->validateProperty($property, $parameters); |
||
58 | |||
59 | $this->setPropertyValue($property, $parameters); |
||
60 | |||
61 | /* add the property to an associative array with the name as key */ |
||
62 | $this->properties[$property->getName()] = $property; |
||
63 | |||
64 | /* remove the property from the value object and parameters array */ |
||
65 | unset($parameters[$property->getName()], $this->{$property->getName()}); |
||
66 | } |
||
67 | |||
68 | $this->processRemainingProperties($parameters); |
||
69 | } |
||
70 | |||
71 | protected function resolveImmutable() |
||
72 | { |
||
73 | if ($this instanceof immutable) { |
||
74 | $this->immutable = true; |
||
75 | } |
||
76 | } |
||
77 | |||
78 | /** |
||
79 | * Get all public properties from the current object through reflection. |
||
80 | * @return Property[] |
||
81 | * @throws \ReflectionException |
||
82 | */ |
||
83 | protected function getPublicProperties(): array |
||
84 | { |
||
85 | $class = new ReflectionClass(static::class); |
||
86 | |||
87 | $properties = []; |
||
88 | foreach ($class->getProperties(ReflectionProperty::IS_PUBLIC) as $reflectionProperty) { |
||
89 | $properties[$reflectionProperty->getName()] = new Property($reflectionProperty); |
||
90 | } |
||
91 | |||
92 | return $properties; |
||
93 | } |
||
94 | |||
95 | /** |
||
96 | * Check if property passes the basic conditions. |
||
97 | * @param PropertyContract $property |
||
98 | * @param array $parameters |
||
99 | */ |
||
100 | protected function validateProperty(PropertyContract $property, array $parameters): void |
||
101 | { |
||
102 | if (! array_key_exists($property->getName(), $parameters) |
||
103 | && is_null($property->getDefault()) |
||
104 | && ! $property->nullable() |
||
105 | ) { |
||
106 | throw new UninitialisedPropertyDtoException($property); |
||
107 | } |
||
108 | } |
||
109 | |||
110 | /** |
||
111 | * Set the value if it's present in the array. |
||
112 | * @param PropertyContract $property |
||
113 | * @param array $parameters |
||
114 | */ |
||
115 | protected function setPropertyValue(PropertyContract $property, array $parameters): void |
||
116 | { |
||
117 | if (array_key_exists($property->getName(), $parameters)) { |
||
118 | $property->set($parameters[$property->getName()]); |
||
119 | } |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * Set the value if it's present in the array. |
||
124 | * @param PropertyContract $property |
||
125 | */ |
||
126 | protected function setPropertyDefaultValue(PropertyContract $property): void |
||
130 | |||
131 | /** |
||
132 | * Allows to mutate the property before it gets processed. |
||
133 | * @param PropertyContract $property |
||
134 | * @return PropertyContract |
||
135 | */ |
||
136 | protected function mutateProperty(PropertyContract $property): PropertyContract |
||
137 | { |
||
138 | return $property; |
||
139 | } |
||
140 | |||
141 | /** |
||
142 | * Check if there are additional parameters left. |
||
143 | * Throw error if there are. |
||
144 | * Additional properties are not allowed in a dto. |
||
145 | * @param array $parameters |
||
146 | * @throws UnknownPropertiesDtoException |
||
147 | */ |
||
148 | protected function processRemainingProperties(array $parameters) |
||
154 | |||
155 | /** |
||
156 | * Immutable behavior |
||
157 | * Throw error if a user tries to set a property. |
||
158 | * @param $name |
||
159 | * @param $value |
||
160 | * @throws ImmutableDtoException|ImmutablePropertyDtoException|PropertyNotFoundDtoException |
||
161 | */ |
||
162 | public function __set($name, $value) |
||
176 | |||
177 | /** |
||
178 | * Proxy through to the properties array. |
||
179 | * @param $name |
||
180 | * @return mixed |
||
181 | */ |
||
182 | public function __get($name) |
||
186 | |||
187 | /** |
||
188 | * @return static |
||
189 | */ |
||
190 | public function mutable(): DtoContract |
||
196 | |||
197 | /** |
||
198 | * @return static |
||
199 | */ |
||
200 | public function immutable(): DtoContract |
||
206 | |||
207 | public function all(): array |
||
217 | |||
218 | public function only(string ...$keys): DtoContract |
||
224 | |||
225 | public function except(string ...$keys): DtoContract |
||
236 | |||
237 | public function toArray(): array |
||
254 | |||
255 | protected function parseArray(array $array): array |
||
276 | } |
||
277 |