Model.php
9.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<?php
/**
* @license GPL-3.0-or-later
*
* Modified by learndash on 06-June-2023 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
namespace StellarWP\Learndash\StellarWP\Models;
use JsonSerializable;
use RuntimeException;
use StellarWP\Learndash\StellarWP\Models\Contracts\Arrayable;
use StellarWP\Learndash\StellarWP\Models\Contracts\Model as ModelInterface;
use StellarWP\Learndash\StellarWP\Models\ValueObjects\Relationship;
abstract class Model implements ModelInterface, Arrayable, JsonSerializable {
/**
* The model's attributes.
*
* @var array<string,mixed>
*/
protected $attributes = [];
/**
* The model attribute's original state.
*
* @var array<string,mixed>
*/
protected $original = [];
/**
* The model properties assigned to their types.
*
* @var array<string,string>
*/
protected $properties = [];
/**
* The model relationships assigned to their relationship types.
*
* @var array<string,string>
*/
protected $relationships = [];
/**
* Relationships that have already been loaded and don't need to be loaded again.
*
* @var Model[]
*/
private $cachedRelations = [];
/**
* Constructor.
*
* @since 1.0.0
*
* @param array<string,mixed> $attributes Attributes.
*/
public function __construct( array $attributes = [] ) {
$this->fill( array_merge( $this->getPropertyDefaults(), $attributes ) );
$this->syncOriginal();
}
/**
* Fills the model with an array of attributes.
*
* @since 1.0.0
*
* @param array<string,mixed> $attributes Attributes.
*
* @return ModelInterface
*/
public function fill( array $attributes ) : ModelInterface {
foreach ( $attributes as $key => $value ) {
$this->setAttribute( $key, $value );
}
return $this;
}
/**
* Returns an attribute from the model.
*
* @since 1.0.0
*
* @param string $key Attribute name.
* @param mixed $default Default value. Default is null.
*
* @return mixed
*
* @throws RuntimeException
*/
public function getAttribute( string $key, $default = null ) {
$this->validatePropertyExists( $key );
return $this->attributes[ $key ] ?? $default;
}
/**
* Returns the attributes that have been changed since last sync.
*
* @since 1.0.0
*
* @return array<string,mixed>
*/
public function getDirty() : array {
$dirty = [];
foreach ( $this->attributes as $key => $value ) {
if ( ! array_key_exists( $key, $this->original ) || $value !== $this->original[ $key ] ) {
$dirty[ $key ] = $value;
}
}
return $dirty;
}
/**
* Returns the model's original attribute values.
*
* @since 1.0.0
*
* @param string|null $key Attribute name.
*
* @return mixed|array
*/
public function getOriginal( string $key = null ) {
return $key ? $this->original[ $key ] : $this->original;
}
/**
* Returns the default value for a property if one is provided, otherwise null.
*
* @since 1.0.0
*
* @param string $key Property name.
*
* @return mixed|null
*/
protected function getPropertyDefault( string $key ) {
return is_array( $this->properties[ $key ] ) && isset( $this->properties[ $key ][1] )
? $this->properties[ $key ][1]
: null;
}
/**
* Returns the defaults for all the properties. If a default is omitted it defaults to null.
*
* @since 1.0.0
*
* @return array<string,mixed>
*/
protected function getPropertyDefaults() : array {
$defaults = [];
foreach ( array_keys( $this->properties ) as $property ) {
$defaults[ $property ] = $this->getPropertyDefault( $property );
}
return $defaults;
}
/**
* Get the property type
*
* @since 1.0.0
*
* @param string $key Property name.
*
* @return string
*/
protected function getPropertyType( string $key ) : string {
$type = is_array( $this->properties[ $key ] ) ? $this->properties[ $key ][0] : $this->properties[ $key ];
return strtolower( trim( $type ) );
}
/**
* Returns a relationship.
*
* @since 1.0.0
*
* @param string $key Relationship name.
*
* @return Model|Model[]
*/
protected function getRelationship( string $key ) {
if ( ! is_callable( [ $this, $key ] ) ) {
$exception = Config::getInvalidArgumentException();
throw new $exception( "$key() does not exist." );
}
if ( $this->hasCachedRelationship( $key ) ) {
return $this->cachedRelations[ $key ];
}
$relationship = $this->relationships[ $key ];
switch ( $relationship ) {
case Relationship::BELONGS_TO:
case Relationship::HAS_ONE:
return $this->cachedRelations[ $key ] = $this->$key()->get();
case Relationship::HAS_MANY:
case Relationship::BELONGS_TO_MANY:
case Relationship::MANY_TO_MANY:
return $this->cachedRelations[ $key ] = $this->$key()->getAll();
}
return null;
}
/**
* Checks whether a relationship has already been loaded.
*
* @since 1.0.0
*
* @param string $key Relationship name.
*
* @return bool
*/
protected function hasCachedRelationship( string $key ) : bool {
return array_key_exists( $key, $this->cachedRelations );
}
/**
* Determines if the model has the given property.
*
* @since 1.0.0
*
* @param string $key Property name.
*
* @return bool
*/
public function hasProperty( string $key ) : bool {
return array_key_exists( $key, $this->properties );
}
/**
* Determine if a given attribute is clean.
*
* @since 1.0.0
*
* @param string|null $attribute Attribute name.
*
* @return bool
*/
public function isClean( string $attribute = null ) : bool {
return ! $this->isDirty( $attribute );
}
/**
* Determine if a given attribute is dirty.
*
* @since 1.0.0
*
* @param string|null $attribute Attribute name.
*
* @return bool
*/
public function isDirty( string $attribute = null ) : bool {
if ( ! $attribute ) {
return (bool) $this->getDirty();
}
return array_key_exists( $attribute, $this->getDirty() );
}
/**
* Validates an attribute to a PHP type.
*
* @since 1.0.0
*
* @param string $key Property name.
* @param mixed $value Property value.
*
* @return bool
*/
public function isPropertyTypeValid( string $key, $value ) : bool {
if ( is_null( $value ) ) {
return true;
}
$type = $this->getPropertyType( $key );
switch ( $type ) {
case 'int':
return is_int( $value );
case 'string':
return is_string( $value );
case 'bool':
return is_bool( $value );
case 'array':
return is_array( $value );
default:
return $value instanceof $type;
}
}
/**
* Returns the object vars.
*
* @since 1.0.0
*
* @return array<string,mixed>
*/
public function jsonSerialize() {
return get_object_vars( $this );
}
/**
* Returns the property keys.
*
* @since 1.0.0
*
* @return int[]|string[]
*/
public static function propertyKeys() : array {
return array_keys( ( new static() )->properties );
}
/**
* Sets an attribute on the model.
*
* @since 1.0.0
*
* @param string $key Attribute name.
* @param mixed $value Attribute value.
*
* @return ModelInterface
*/
public function setAttribute( string $key, $value ) : ModelInterface {
$this->validatePropertyExists( $key );
$this->validatePropertyType( $key, $value );
$this->attributes[ $key ] = $value;
return $this;
}
/**
* Syncs the original attributes with the current.
*
* @since 1.0.0
*
* @return ModelInterface
*/
public function syncOriginal() : ModelInterface {
$this->original = $this->attributes;
return $this;
}
/**
* Returns attributes.
*
* @since 1.0.0
*
* @return array<string,mixed>
*/
public function toArray() : array {
return $this->attributes;
}
/**
* Validates that the given property exists
*
* @since 1.0.0
*
* @param string $key Property name.
*
* @return void
*/
protected function validatePropertyExists( string $key ) {
if ( ! $this->hasProperty( $key ) ) {
$exception = Config::getInvalidArgumentException();
throw new $exception( "Invalid property. '$key' does not exist." );
}
}
/**
* Validates that the given value is a valid type for the given property.
*
* @since 1.0.0
*
* @param string $key Property name.
* @param mixed $value Property value.
*
* @return void
*/
protected function validatePropertyType( string $key, $value ) {
if ( ! $this->isPropertyTypeValid( $key, $value ) ) {
$type = $this->getPropertyType( $key );
$exception = Config::getInvalidArgumentException();
throw new $exception( "Invalid attribute assignment. '$key' should be of type: '$type'" );
}
}
/**
* Dynamically retrieves attributes on the model.
*
* @since 1.0.0
*
* @param string $key Attribute name.
*
* @return mixed
*/
public function __get( string $key ) {
if ( array_key_exists( $key, $this->relationships ) ) {
return $this->getRelationship( $key );
}
return $this->getAttribute( $key );
}
/**
* Determines if an attribute exists on the model.
*
* @since 1.0.0
*
* @param string $key Attribute name.
*
* @return bool
*/
public function __isset( string $key ) {
return isset( $this->attributes[ $key ] );
}
/**
* Dynamically sets attributes on the model.
*
* @since 1.0.0
*
* @param string $key Attribute name.
* @param mixed $value Attribute value.
*
* @return void
*/
public function __set( string $key, $value ) {
$this->setAttribute( $key, $value );
}
}