forked from selective-php/transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayTransformerRule.php
More file actions
275 lines (240 loc) · 5.4 KB
/
ArrayTransformerRule.php
File metadata and controls
275 lines (240 loc) · 5.4 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
<?php
namespace Selective\Transformer;
use DateTimeZone;
/**
* Rule.
*/
final class ArrayTransformerRule
{
private string $destination = '';
private string $source = '';
/**
* @var mixed|null
*/
private $default = null;
private bool $required = false;
/**
* @var ArrayTransformerFilterItem[]
*/
private array $filters = [];
private ArrayTransformer $transformer;
/**
* The constructor.
*
* @param ArrayTransformer|null $transformer The parent transformer
*/
public function __construct(?ArrayTransformer $transformer = null)
{
$this->transformer = $transformer ?? new ArrayTransformer();
}
/**
* Add destination.
*
* @param string $destination The destination element name
*
* @return $this The rule
*/
public function destination(string $destination): self
{
$this->destination = $destination;
return $this;
}
/**
* Set source name.
*
* @param string $source The element name
*
* @return $this Self
*/
public function source(string $source): self
{
$this->source = $source;
return $this;
}
/**
* Get source.
*
* @return string The source name
*/
public function getSource(): string
{
return $this->source;
}
/**
* Get destination.
*
* @return string The destination name
*/
public function getDestination(): string
{
return $this->destination;
}
/**
* Set required.
*
* @return $this Self
*/
public function required(): self
{
$this->required = true;
return $this;
}
/**
* Get required status.
*
* @return bool The status
*/
public function isRequired(): bool
{
return $this->required;
}
/**
* Set default value.
*
* @param mixed $default The value
*
* @return $this Self
*/
public function default($default = null): self
{
$this->default = $default;
return $this;
}
/**
* Get default value.
*
* @return mixed|null The value
*/
public function getDefault()
{
return $this->default;
}
/**
* Get filters.
*
* @return ArrayTransformerFilterItem[] The filters
*/
public function getFiltersItems(): array
{
return $this->filters;
}
/**
* Add string filter.
*
* @param bool $allowBlank Convert blank to null by default. True allows the string to be blank.
*
* @return $this Self
*/
public function string(bool $allowBlank = false): self
{
$this->filter($allowBlank ? 'string-with-blank' : 'string');
return $this;
}
/**
* Add filter.
*
* @param string $name The filter name
* @param mixed ...$parameters The filter arguments
*
* @return $this Self
*/
public function filter(string $name, ...$parameters): self
{
$this->filters[] = new ArrayTransformerFilterItem($name, $parameters);
return $this;
}
/**
* Add boolean filter.
*
* @return $this Self
*/
public function boolean(): self
{
return $this->filter('boolean');
}
/**
* Add float filter.
*
* @return $this Self
*/
public function float(): self
{
return $this->filter('float');
}
/**
* Add integer filter.
*
* @return $this Self
*/
public function integer(): self
{
return $this->filter('integer');
}
/**
* Add number format filter.
*
* @param int $decimals The number of decimals
* @param string $decimalSeparator The decimal separator
* @param string $thousandsSeparator The Thousands separator
*
* @return $this Self
*/
public function number(int $decimals = 0, string $decimalSeparator = '.', string $thousandsSeparator = ','): self
{
return $this->filter('number', $decimals, $decimalSeparator, $thousandsSeparator);
}
/**
* Add date filter.
*
* @param string $format The date format
* @param DateTimeZone|null $dateTimeZone The time zone
*
* @return $this Self
*/
public function date(string $format = 'Y-m-d H:i:s', ?DateTimeZone $dateTimeZone = null): self
{
return $this->filter('date', $format, $dateTimeZone);
}
/**
* Add array filter.
*
* @return $this Self
*/
public function array(): self
{
return $this->filter('array');
}
/**
* Add callback filter.
*
* @param callable $callback The callback
*
* @return $this Self
*/
public function callback(callable $callback): self
{
return $this->filter('callback', $callback);
}
/**
* Add transformer filter.
*
* @param callable $callback The callback
*
* @return $this Self
*/
public function transform(callable $callback): self
{
return $this->filter('transform', $callback, $this->transformer);
}
/**
* Add transformer list filter.
*
* @param callable $callback The callback
*
* @return $this Self
*/
public function transformList(callable $callback): self
{
return $this->filter('transform-list', $callback, new ArrayTransformer());
}
}