Total Complexity | 48 |
Total Lines | 329 |
Duplicated Lines | 0 % |
Changes | 12 | ||
Bugs | 5 | Features | 0 |
Complex classes like Model often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Model, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
31 | class Model implements \Stringable, \IteratorAggregate, \ArrayAccess |
||
32 | { |
||
33 | use Iterator; |
||
34 | use Stringable; |
||
35 | use ArrayAccess; |
||
36 | use Getter; |
||
37 | use Setter; |
||
38 | |||
39 | /** |
||
40 | * Store all properties of model. |
||
41 | * |
||
42 | * @var array<string,array<string,mixed>> |
||
43 | */ |
||
44 | private array $__properties = []; |
||
45 | |||
46 | /** |
||
47 | * Store the table name of model. |
||
48 | */ |
||
49 | private string $table; |
||
50 | /** |
||
51 | * Store the metadata of model. |
||
52 | * |
||
53 | * @var array<string,mixed> |
||
54 | */ |
||
55 | private array $__meta = []; |
||
56 | |||
57 | /** |
||
58 | * Create a new model. |
||
59 | */ |
||
60 | public function __construct( |
||
76 | } |
||
77 | |||
78 | /** |
||
79 | * adds the key to properties. |
||
80 | */ |
||
81 | public function __set(string $key, mixed $val): void |
||
84 | } |
||
85 | |||
86 | /** |
||
87 | * Adds the key to properties. |
||
88 | */ |
||
89 | public function set(string $key, mixed $val): void |
||
126 | } |
||
127 | |||
128 | /** |
||
129 | * Get a key from properties, keys can be relational |
||
130 | * like sharedList,ownList or foreign table. |
||
131 | */ |
||
132 | public function __get(string $key): mixed |
||
135 | } |
||
136 | |||
137 | /** |
||
138 | * Get a key from properties, keys can be relational |
||
139 | * like sharedList,ownList or foreign table. |
||
140 | */ |
||
141 | public function get(string $key): mixed |
||
180 | } |
||
181 | |||
182 | /** |
||
183 | * Eager Load relation variable. |
||
184 | * |
||
185 | * @param array<string> $relations |
||
186 | */ |
||
187 | public function with(array $relations): Model |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * Refresh the current model from database. |
||
198 | */ |
||
199 | public function refresh(): void{ |
||
200 | $model = $this->recordManager->getById($this->getName(), $this->getId()); |
||
201 | if(!is_null($model)){ |
||
202 | $this->cleanModel(); |
||
203 | $this->setLoadedProperties($model->getSelfProperties()); |
||
204 | $this->setLoaded(); |
||
205 | } |
||
206 | } |
||
207 | |||
208 | /** |
||
209 | * Unset a property from model. |
||
210 | */ |
||
211 | public function __unset(string $key): void |
||
212 | { |
||
213 | $this->unset($key); |
||
214 | } |
||
215 | |||
216 | /** |
||
217 | * Unset a property from model. |
||
218 | */ |
||
219 | public function unset(string $key): void |
||
220 | { |
||
221 | unset($this->__properties['self'][$key]); |
||
222 | unset($this->__properties['all'][$key]); |
||
223 | unset($this->__properties['type'][$key]); |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | * Check if property exists. |
||
228 | */ |
||
229 | public function __isset(string $key): bool |
||
230 | { |
||
231 | return $this->isset($key); |
||
232 | } |
||
233 | |||
234 | /** |
||
235 | * Check if property exists. |
||
236 | */ |
||
237 | public function isset(string $key): bool |
||
238 | { |
||
239 | return array_key_exists($key, $this->__properties['all']); |
||
240 | } |
||
241 | |||
242 | /** |
||
243 | * check if model loaded from db. |
||
244 | */ |
||
245 | public function isLoaded(): bool |
||
246 | { |
||
247 | return $this->__meta['is_loaded']; |
||
248 | } |
||
249 | |||
250 | /** |
||
251 | * Check if model has id error. |
||
252 | */ |
||
253 | public function hasIdError(): bool |
||
254 | { |
||
255 | return $this->__meta['id_error']; |
||
256 | } |
||
257 | |||
258 | /** |
||
259 | * Save model to database. |
||
260 | */ |
||
261 | public function save(): mixed |
||
262 | { |
||
263 | $this->id = $this->writeManager->save($this); |
||
264 | |||
265 | return $this->getId(); |
||
266 | } |
||
267 | |||
268 | /** |
||
269 | * Cleans up model internal state to be consistent after save. |
||
270 | */ |
||
271 | public function cleanModel(): void |
||
272 | { |
||
273 | $this->__properties['all'] = $this->__properties['self']; |
||
274 | $this->__meta['id_error'] = false; |
||
275 | $this->__meta['foreign_models']['otm'] = null; |
||
276 | $this->__meta['foreign_models']['oto'] = null; |
||
277 | $this->__meta['foreign_models']['mtm'] = null; |
||
278 | } |
||
279 | |||
280 | /** |
||
281 | * Delete model data. |
||
282 | */ |
||
283 | public function delete(): void |
||
284 | { |
||
285 | $this->recordManager->delete($this); |
||
286 | } |
||
287 | |||
288 | /** |
||
289 | * Function used to compare to models. |
||
290 | */ |
||
291 | public function equals(self $other): bool |
||
294 | } |
||
295 | |||
296 | /** |
||
297 | * Check if model has any relations. |
||
298 | */ |
||
299 | public function hasForeign(string $type): bool |
||
302 | } |
||
303 | |||
304 | /** |
||
305 | * Get the type of value. |
||
306 | */ |
||
307 | private function getDataType(mixed $value): string |
||
308 | { |
||
309 | $type = gettype($value); |
||
310 | |||
311 | if ('array' === $type || 'object' === $type) { |
||
312 | return 'json_document'; |
||
324 | } |
||
325 | |||
326 | /** |
||
327 | * Check if array passed is instance of model. |
||
328 | * |
||
329 | * @param array<mixed>|Collection $models |
||
330 | * |
||
331 | * @throws Exception\InvalidModelException |
||
332 | */ |
||
333 | private function createCollection(?Collection $collection, array|Collection $models): Collection |
||
334 | { |
||
335 | if (is_null($collection)) { |
||
336 | $collection = Collection::fromIterable([]); |
||
337 | } |
||
338 | |||
339 | if ($models instanceof Collection) { |
||
|
|||
340 | return $collection->merge($models); |
||
341 | } |
||
342 | |||
343 | if ([] !== array_filter($models, fn ($d): bool => !$d instanceof Model)) { |
||
344 | throw new Exception\InvalidModelException(); |
||
345 | } |
||
346 | |||
347 | return $collection->merge(Collection::fromIterable($models)); |
||
348 | } |
||
349 | |||
350 | /** |
||
351 | * Get the database value from PHP value. |
||
352 | */ |
||
353 | private function getDbValue(mixed $val, string $type): mixed |
||
360 | } |
||
361 | } |
||
362 |