class-learndash-dto.php
6.15 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
<?php
/**
* This class provides the easy way to operate data.
*
* @since 4.5.0
*
* @package LearnDash
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Learndash_DTO' ) ) {
/**
* DTO class.
*
* @since 4.5.0
*/
abstract class Learndash_DTO {
/**
* Properties are being cast to the specified type on construction according to the $cast property.
* Key is a property name, value is a PHP type which will be passed into "settype".
*
* @since 4.5.0
*
* @var array<string, string>
*/
protected $cast = array();
/**
* Property keys to be excluded from the DTO.
*
* @since 4.5.0
*
* @var string[]
*/
protected $except_keys = array();
/**
* Property keys to be included into the DTO.
*
* @since 4.5.0
*
* @var string[]
*/
protected $only_keys = array();
/**
* Reflection class for a static DTO.
*
* @since 4.5.0
*
* @var ReflectionClass
*/
private $reflection_class;
/**
* Constructor.
*
* @since 4.5.0
*
* @param array<string,mixed> $args DTO properties.
*
* @throws Learndash_DTO_Validation_Exception If one or more properties are invalid.
*
* @return void
*/
final public function __construct( array $args = array() ) {
$this->reflection_class = new ReflectionClass( $this );
foreach ( $this->get_properties() as $property ) {
$property_value = Learndash_Arr::get(
$args,
$property->getName(),
$property->getDeclaringClass()->getDefaultProperties()[ $property->getName() ] ?? null // Property default value.
);
if ( isset( $this->cast[ $property->getName() ] ) ) {
$property_type = $this->cast[ $property->getName() ];
if (
in_array(
$property_type,
array( 'bool', 'boolean', 'int', 'integer', 'float', 'double', 'string', 'array', 'object', 'null' ),
true
)
) {
settype( $property_value, $this->cast[ $property->getName() ] );
} elseif ( class_exists( $property_type ) && ! $property_value instanceof $property_type ) {
$property_value = is_array( $property_value )
? new $property_type( $property_value )
: new $property_type();
}
}
$property->setValue( $this, $property_value );
}
$this->validate();
}
/**
* Creates a DTO instance.
*
* @since 4.5.0
*
* @param array<string,mixed> $args DTO properties.
*
* @throws Learndash_DTO_Validation_Exception If one or more properties are invalid.
*
* @return static
*/
public static function create( array $args = array() ): self {
return new static( $args );
}
/**
* Returns all properties. Keys are property names.
*
* @since 4.5.0
*
* @return array<string,mixed>
*/
public function all(): array {
$data = array();
foreach ( $this->get_properties() as $property ) {
$data[ $property->getName() ] = $property->getValue( $this );
}
return $data;
}
/**
* Includes a property or multiple properties in the DTO.
*
* @since 4.5.0
*
* @param string ...$keys Keys.
*
* @return static
*/
public function only( string ...$keys ): self {
$clone = clone $this;
$clone->only_keys = array_merge( $this->only_keys, $keys );
return $clone;
}
/**
* Excludes a property or multiple properties from the DTO.
*
* @since 4.5.0
*
* @param string ...$keys Keys.
*
* @return static
*/
public function except( string ...$keys ): self {
$clone = clone $this;
$clone->except_keys = array_merge( $this->except_keys, $keys );
return $clone;
}
/**
* Returns an array of properties.
*
* @since 4.5.0
*
* @return array<string,mixed>
*/
public function to_array(): array {
if ( count( $this->only_keys ) ) {
$array = Learndash_Arr::only( $this->all(), $this->only_keys );
} else {
$array = Learndash_Arr::except( $this->all(), $this->except_keys );
}
return $this->parse_array( $array ); // @phpstan-ignore-line -- It's array<string,mixed> actually.
}
/**
* Returns a json encoded array of properties.
*
* @since 4.5.0
*
* @return string|false
*/
public function to_json() {
return wp_json_encode( $this->to_array() );
}
/**
* Validates properties on construction based on validators.
* Key is a property name, value is an array of validator objects.
*
* @since 4.5.0
*
* @return array<string,Learndash_DTO_Property_Validator[]>
*/
protected function get_validators(): array {
return array();
}
/**
* Recursively parses an array and converts DTOs to arrays.
*
* @since 4.5.0
*
* @param array<string,mixed> $array Array.
*
* @return array<string,mixed>
*/
private function parse_array( array $array ): array {
foreach ( $array as $key => $value ) {
if ( $value instanceof Learndash_DTO ) {
$array[ $key ] = $value->to_array();
continue;
}
if ( ! is_array( $value ) ) {
continue;
}
$array[ $key ] = $this->parse_array( $value );
}
return $array;
}
/**
* Returns public properties.
*
* @since 4.5.0
*
* @throws Learndash_DTO_Validation_Exception If one or more properties are invalid.
*
* @return void
*/
private function validate(): void {
$validation_errors = array();
$validators = $this->get_validators();
foreach ( $this->get_properties() as $property ) {
if ( ! isset( $validators[ $property->getName() ] ) ) {
continue;
}
foreach ( $validators[ $property->getName() ] as $validator ) {
$result = $validator->validate( $property->getValue( $this ) );
if ( $result->is_valid() ) {
continue;
}
$validation_errors[ $property->getName() ][] = $result;
}
}
if ( count( $validation_errors ) ) {
throw new Learndash_DTO_Validation_Exception( $this, $validation_errors );
}
}
/**
* Returns public properties.
*
* @since 4.5.0
*
* @return ReflectionProperty[]
*/
private function get_properties(): array {
return array_filter(
$this->reflection_class->getProperties( ReflectionProperty::IS_PUBLIC ),
function ( ReflectionProperty $property ) {
return ! $property->isStatic();
}
);
}
}
}