|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace SimpleCrud; |
|
4
|
|
|
|
|
5
|
|
|
use ArrayAccess; |
|
6
|
|
|
use Iterator; |
|
7
|
|
|
use Countable; |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* Stores a collection of rows. |
|
11
|
|
|
*/ |
|
12
|
|
|
class RowCollection extends BaseRow implements ArrayAccess, Iterator, Countable |
|
13
|
|
|
{ |
|
14
|
|
|
private $rows = []; |
|
15
|
|
|
private $idAsKey = true; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Magic method to set properties to all rows. |
|
19
|
|
|
* |
|
20
|
|
|
* @see self::set() |
|
21
|
|
|
*/ |
|
22
|
|
|
public function __set($name, $value) |
|
23
|
|
|
{ |
|
24
|
|
|
$this->set($name, $value); |
|
25
|
|
|
} |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* Magic method to get properties from all rows. |
|
29
|
|
|
* |
|
30
|
|
|
* @see self::get() |
|
31
|
|
|
*/ |
|
32
|
|
|
public function __get($name) |
|
33
|
|
|
{ |
|
34
|
|
|
reset($this->rows); |
|
35
|
|
|
$first = current($this->rows); |
|
36
|
|
|
|
|
37
|
|
|
if (!$first) { |
|
38
|
|
|
return []; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
//Returns related entities |
|
42
|
|
|
$db = $this->entity->getDb(); |
|
43
|
|
|
|
|
44
|
|
|
if ($db->has($name)) { |
|
45
|
|
|
$entity = $db->get($name); |
|
46
|
|
|
|
|
47
|
|
|
if ($first->has($name)) { |
|
48
|
|
|
$collection = $entity->createCollection(); |
|
49
|
|
|
|
|
50
|
|
|
foreach ($this->get($name) as $row) { |
|
51
|
|
|
if ($row instanceof self) { |
|
52
|
|
|
foreach ($row as $r) { |
|
53
|
|
|
$collection[] = $r; |
|
54
|
|
|
} |
|
55
|
|
|
} else { |
|
56
|
|
|
$collection = $row; |
|
57
|
|
|
} |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
return $collection; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
$collection = $this->select($name)->all(false); |
|
|
|
|
|
|
64
|
|
|
|
|
65
|
|
|
if ($this->entity->hasOne($entity)) { |
|
|
|
|
|
|
66
|
|
|
$this->joinOne($collection); |
|
67
|
|
|
} else { |
|
68
|
|
|
$this->joinMany($collection); |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
return $collection; |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
|
//Returns values |
|
75
|
|
|
if ($first->has($name)) { |
|
76
|
|
|
return $this->get($name); |
|
77
|
|
|
} |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
/** |
|
81
|
|
|
* Set whether or not use the id as key. |
|
82
|
|
|
* |
|
83
|
|
|
* @param bool $idAsKey |
|
84
|
|
|
* |
|
85
|
|
|
* @return self |
|
86
|
|
|
*/ |
|
87
|
|
|
public function idAsKey($idAsKey) |
|
88
|
|
|
{ |
|
89
|
|
|
$this->idAsKey = (boolean) $idAsKey; |
|
90
|
|
|
|
|
91
|
|
|
return $this; |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* Magic method to print the row values (and subvalues). |
|
96
|
|
|
* |
|
97
|
|
|
* @return string |
|
98
|
|
|
*/ |
|
99
|
|
|
public function __toString() |
|
100
|
|
|
{ |
|
101
|
|
|
return "\n".$this->entity->name.":\n".print_r($this->toArray(), true)."\n"; |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* @see ArrayAccess |
|
106
|
|
|
*/ |
|
107
|
|
|
public function offsetSet($offset, $value) |
|
108
|
|
|
{ |
|
109
|
|
|
if (!($value instanceof Row)) { |
|
110
|
|
|
throw new SimpleCrudException('Only instances of SimpleCrud\\Row must be added to collections'); |
|
111
|
|
|
} |
|
112
|
|
|
|
|
113
|
|
|
if ($this->idAsKey === false) { |
|
114
|
|
|
$this->rows[] = $value; |
|
115
|
|
|
|
|
116
|
|
|
return; |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
if (empty($value->id)) { |
|
120
|
|
|
throw new SimpleCrudException('Only rows with the defined id must be added to collections'); |
|
121
|
|
|
} |
|
122
|
|
|
|
|
123
|
|
|
$this->rows[$value->id] = $value; |
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
|
|
/** |
|
127
|
|
|
* @see ArrayAccess |
|
128
|
|
|
*/ |
|
129
|
|
|
public function offsetExists($offset) |
|
130
|
|
|
{ |
|
131
|
|
|
return isset($this->rows[$offset]); |
|
132
|
|
|
} |
|
133
|
|
|
|
|
134
|
|
|
/** |
|
135
|
|
|
* @see ArrayAccess |
|
136
|
|
|
*/ |
|
137
|
|
|
public function offsetUnset($offset) |
|
138
|
|
|
{ |
|
139
|
|
|
unset($this->rows[$offset]); |
|
140
|
|
|
} |
|
141
|
|
|
|
|
142
|
|
|
/** |
|
143
|
|
|
* @see ArrayAccess |
|
144
|
|
|
*/ |
|
145
|
|
|
public function offsetGet($offset) |
|
146
|
|
|
{ |
|
147
|
|
|
return isset($this->rows[$offset]) ? $this->rows[$offset] : null; |
|
148
|
|
|
} |
|
149
|
|
|
|
|
150
|
|
|
/** |
|
151
|
|
|
* @see Iterator |
|
152
|
|
|
*/ |
|
153
|
|
|
public function rewind() |
|
154
|
|
|
{ |
|
155
|
|
|
return reset($this->rows); |
|
156
|
|
|
} |
|
157
|
|
|
|
|
158
|
|
|
/** |
|
159
|
|
|
* @see Iterator |
|
160
|
|
|
*/ |
|
161
|
|
|
public function current() |
|
162
|
|
|
{ |
|
163
|
|
|
return current($this->rows); |
|
164
|
|
|
} |
|
165
|
|
|
|
|
166
|
|
|
/** |
|
167
|
|
|
* @see Iterator |
|
168
|
|
|
*/ |
|
169
|
|
|
public function key() |
|
170
|
|
|
{ |
|
171
|
|
|
return key($this->rows); |
|
172
|
|
|
} |
|
173
|
|
|
|
|
174
|
|
|
/** |
|
175
|
|
|
* @see Iterator |
|
176
|
|
|
*/ |
|
177
|
|
|
public function next() |
|
178
|
|
|
{ |
|
179
|
|
|
return next($this->rows); |
|
180
|
|
|
} |
|
181
|
|
|
|
|
182
|
|
|
/** |
|
183
|
|
|
* @see Iterator |
|
184
|
|
|
*/ |
|
185
|
|
|
public function valid() |
|
186
|
|
|
{ |
|
187
|
|
|
return key($this->rows) !== null; |
|
188
|
|
|
} |
|
189
|
|
|
|
|
190
|
|
|
/** |
|
191
|
|
|
* @see Countable |
|
192
|
|
|
*/ |
|
193
|
|
|
public function count() |
|
194
|
|
|
{ |
|
195
|
|
|
return count($this->rows); |
|
196
|
|
|
} |
|
197
|
|
|
|
|
198
|
|
|
/** |
|
199
|
|
|
* {@inheritdoc} |
|
200
|
|
|
*/ |
|
201
|
|
|
public function toArray($idAsKey = false, array $parentEntities = array()) |
|
202
|
|
|
{ |
|
203
|
|
|
if (!empty($parentEntities) && in_array($this->entity->name, $parentEntities)) { |
|
204
|
|
|
return; |
|
205
|
|
|
} |
|
206
|
|
|
|
|
207
|
|
|
$rows = []; |
|
208
|
|
|
|
|
209
|
|
|
foreach ($this->rows as $id => $row) { |
|
210
|
|
|
$rows[$id] = $row->toArray($parentEntities); |
|
211
|
|
|
} |
|
212
|
|
|
|
|
213
|
|
|
return $idAsKey ? $rows : array_values($rows); |
|
214
|
|
|
} |
|
215
|
|
|
|
|
216
|
|
|
/** |
|
217
|
|
|
* Set values to all children. |
|
218
|
|
|
* |
|
219
|
|
|
* @param string $name |
|
220
|
|
|
* @param string $value |
|
221
|
|
|
* |
|
222
|
|
|
* @return self |
|
223
|
|
|
*/ |
|
224
|
|
|
public function set($name, $value) |
|
225
|
|
|
{ |
|
226
|
|
|
foreach ($this->rows as $row) { |
|
227
|
|
|
$row->$name = $value; |
|
228
|
|
|
} |
|
229
|
|
|
|
|
230
|
|
|
return $this; |
|
231
|
|
|
} |
|
232
|
|
|
|
|
233
|
|
|
/** |
|
234
|
|
|
* Returns one or all values of the collections. |
|
235
|
|
|
* |
|
236
|
|
|
* @param string $name The value name. If it's not defined returns all values |
|
237
|
|
|
* @param string $key The parameter name used for the keys. If it's not defined, returns a numeric array |
|
238
|
|
|
* |
|
239
|
|
|
* @return array |
|
240
|
|
|
*/ |
|
241
|
|
|
public function get($name = null, $key = null) |
|
242
|
|
|
{ |
|
243
|
|
|
$rows = []; |
|
244
|
|
|
|
|
245
|
|
|
if ($name === null) { |
|
246
|
|
|
if ($key === null) { |
|
247
|
|
|
return array_values($this->rows); |
|
248
|
|
|
} |
|
249
|
|
|
|
|
250
|
|
View Code Duplication |
foreach ($this->rows as $row) { |
|
|
|
|
|
|
251
|
|
|
$k = $row->$key; |
|
252
|
|
|
|
|
253
|
|
|
if (!empty($k)) { |
|
254
|
|
|
$rows[$k] = $row; |
|
255
|
|
|
} |
|
256
|
|
|
} |
|
257
|
|
|
|
|
258
|
|
|
return $rows; |
|
259
|
|
|
} |
|
260
|
|
|
|
|
261
|
|
|
if ($key !== null) { |
|
262
|
|
View Code Duplication |
foreach ($this->rows as $row) { |
|
|
|
|
|
|
263
|
|
|
$k = $row->$key; |
|
264
|
|
|
|
|
265
|
|
|
if (!empty($k)) { |
|
266
|
|
|
$rows[$k] = $row->$name; |
|
267
|
|
|
} |
|
268
|
|
|
} |
|
269
|
|
|
|
|
270
|
|
|
return $rows; |
|
271
|
|
|
} |
|
272
|
|
|
|
|
273
|
|
|
foreach ($this->rows as $row) { |
|
274
|
|
|
$value = $row->$name; |
|
275
|
|
|
|
|
276
|
|
|
if (!empty($value)) { |
|
277
|
|
|
$rows[] = $value; |
|
278
|
|
|
} |
|
279
|
|
|
} |
|
280
|
|
|
|
|
281
|
|
|
return $rows; |
|
282
|
|
|
} |
|
283
|
|
|
|
|
284
|
|
|
/** |
|
285
|
|
|
* Returns a slice of the content. |
|
286
|
|
|
* |
|
287
|
|
|
* @param int $offset |
|
288
|
|
|
* @param int|null|true $length |
|
289
|
|
|
* |
|
290
|
|
|
* @return array |
|
291
|
|
|
*/ |
|
292
|
|
|
public function slice($offset = null, $length = null) |
|
293
|
|
|
{ |
|
294
|
|
|
if ($length === true) { |
|
295
|
|
|
return current(array_slice($this->rows, $offset, 1)); |
|
296
|
|
|
} |
|
297
|
|
|
|
|
298
|
|
|
return array_slice($this->rows, $offset, $length); |
|
299
|
|
|
} |
|
300
|
|
|
|
|
301
|
|
|
/** |
|
302
|
|
|
* Add new values to the collection. |
|
303
|
|
|
* |
|
304
|
|
|
* @param array|RowInterface $rows The new rows |
|
305
|
|
|
* |
|
306
|
|
|
* @return $this |
|
307
|
|
|
*/ |
|
308
|
|
|
public function add($rows) |
|
309
|
|
|
{ |
|
310
|
|
|
if (is_array($rows) || ($rows instanceof self)) { |
|
311
|
|
|
foreach ($rows as $row) { |
|
312
|
|
|
$this->offsetSet(null, $row); |
|
313
|
|
|
} |
|
314
|
|
|
} elseif (isset($rows)) { |
|
315
|
|
|
$this->offsetSet(null, $rows); |
|
316
|
|
|
} |
|
317
|
|
|
|
|
318
|
|
|
return $this; |
|
319
|
|
|
} |
|
320
|
|
|
|
|
321
|
|
|
/** |
|
322
|
|
|
* Filter the rows by a value. |
|
323
|
|
|
* |
|
324
|
|
|
* @param string $name The value name |
|
325
|
|
|
* @param mixed $value The value to filter |
|
326
|
|
|
* @param bool $strict Strict mode |
|
327
|
|
|
* |
|
328
|
|
|
* @return RowCollection |
|
329
|
|
|
*/ |
|
330
|
|
|
public function filter($name, $value, $strict = true) |
|
331
|
|
|
{ |
|
332
|
|
|
$rows = []; |
|
333
|
|
|
|
|
334
|
|
View Code Duplication |
foreach ($this->rows as $row) { |
|
|
|
|
|
|
335
|
|
|
if (($row->$name === $value) || (!$strict && $row->$name == $value) || (is_array($value) && in_array($row->$name, $value, $strict))) { |
|
336
|
|
|
$rows[] = $row; |
|
337
|
|
|
} |
|
338
|
|
|
} |
|
339
|
|
|
|
|
340
|
|
|
return $this->entity->createCollection($rows); |
|
341
|
|
|
} |
|
342
|
|
|
|
|
343
|
|
|
/** |
|
344
|
|
|
* Find a row by a value. |
|
345
|
|
|
* |
|
346
|
|
|
* @param string $name The value name |
|
347
|
|
|
* @param mixed $value The value to filter |
|
348
|
|
|
* @param bool $strict Strict mode |
|
349
|
|
|
* |
|
350
|
|
|
* @return Row|null The rows found |
|
351
|
|
|
*/ |
|
352
|
|
|
public function find($name, $value, $strict = true) |
|
353
|
|
|
{ |
|
354
|
|
View Code Duplication |
foreach ($this->rows as $row) { |
|
|
|
|
|
|
355
|
|
|
if (($row->$name === $value) || (!$strict && $row->$name == $value) || (is_array($value) && in_array($row->$name, $value, $strict))) { |
|
356
|
|
|
return $row; |
|
357
|
|
|
} |
|
358
|
|
|
} |
|
359
|
|
|
} |
|
360
|
|
|
|
|
361
|
|
|
/** |
|
362
|
|
|
* Distribute a rowcollection througth all rows. |
|
363
|
|
|
* |
|
364
|
|
|
* @param RowCollection $rows |
|
365
|
|
|
* |
|
366
|
|
|
* @return $this |
|
367
|
|
|
*/ |
|
368
|
|
|
public function joinMany(RowCollection $rows) |
|
369
|
|
|
{ |
|
370
|
|
|
$thisEntity = $this->entity; |
|
371
|
|
|
$thatEntity = $rows->getEntity(); |
|
372
|
|
|
$thisName = $thisEntity->name; |
|
373
|
|
|
$thatName = $thatEntity->name; |
|
374
|
|
|
|
|
375
|
|
|
$foreignKey = $thisEntity->foreignKey; |
|
376
|
|
|
|
|
377
|
|
|
foreach ($this->rows as $row) { |
|
378
|
|
|
if (!isset($row->$thatName)) { |
|
379
|
|
|
$row->$thatName = $thatEntity->createCollection(); |
|
380
|
|
|
} |
|
381
|
|
|
} |
|
382
|
|
|
|
|
383
|
|
|
foreach ($rows as $row) { |
|
384
|
|
|
$id = $row->$foreignKey; |
|
385
|
|
|
|
|
386
|
|
|
if (isset($this->rows[$id])) { |
|
387
|
|
|
$this->rows[$id]->$thatName->add($row); |
|
388
|
|
|
$row->$thisName = $this->rows[$id]; |
|
389
|
|
|
} |
|
390
|
|
|
} |
|
391
|
|
|
|
|
392
|
|
|
return $this; |
|
393
|
|
|
} |
|
394
|
|
|
|
|
395
|
|
|
/** |
|
396
|
|
|
* Distribute a rowcollection througth all rows. |
|
397
|
|
|
* Its the opposite of $this->joinMany(). |
|
398
|
|
|
* |
|
399
|
|
|
* @param RowCollection $rows |
|
400
|
|
|
* |
|
401
|
|
|
* @return $this |
|
402
|
|
|
*/ |
|
403
|
|
|
public function joinOne(RowCollection $rows) |
|
404
|
|
|
{ |
|
405
|
|
|
$rows->joinMany($this); |
|
406
|
|
|
|
|
407
|
|
|
return $this; |
|
408
|
|
|
} |
|
409
|
|
|
} |
|
410
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: