1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* The MIT License |
5
|
|
|
* |
6
|
|
|
* Copyright 2015 ekow. |
7
|
|
|
* |
8
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
9
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
10
|
|
|
* in the Software without restriction, including without limitation the rights |
11
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
12
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
13
|
|
|
* furnished to do so, subject to the following conditions: |
14
|
|
|
* |
15
|
|
|
* The above copyright notice and this permission notice shall be included in |
16
|
|
|
* all copies or substantial portions of the Software. |
17
|
|
|
* |
18
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
19
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
20
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
21
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
22
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
23
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
24
|
|
|
* THE SOFTWARE. |
25
|
|
|
*/ |
26
|
|
|
|
27
|
|
|
namespace ntentan\nibii; |
28
|
|
|
|
29
|
|
|
use ntentan\utils\Text; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* An active record wrapper for database records. |
33
|
|
|
*/ |
34
|
|
|
class RecordWrapper implements \ArrayAccess, \Countable, \Iterator |
35
|
|
|
{ |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* An associative array of models to which this model has a one to may relationship. |
39
|
|
|
* |
40
|
|
|
* @var array |
41
|
|
|
*/ |
42
|
|
|
protected $hasMany = []; |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* An associative array of models which have a one-to-many relationship with this model. |
46
|
|
|
* |
47
|
|
|
* @var array |
48
|
|
|
*/ |
49
|
|
|
protected $belongsTo = []; |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* An associative array of models with which this model has a many to many relationship. |
53
|
|
|
* |
54
|
|
|
* @var array |
55
|
|
|
*/ |
56
|
|
|
protected $manyHaveMany = []; |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* The name of the database table. |
60
|
|
|
* |
61
|
|
|
* @var string |
62
|
|
|
*/ |
63
|
|
|
protected $table; |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* The name of the schema to which this table belongs. |
67
|
|
|
* |
68
|
|
|
* @var string |
69
|
|
|
*/ |
70
|
|
|
protected $schema; |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* Temporary data held in the model object. |
74
|
|
|
* |
75
|
|
|
* @var array |
76
|
|
|
*/ |
77
|
|
|
protected $modelData = []; |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* A quoted string of the table name used for building queries. |
81
|
|
|
* |
82
|
|
|
* @var string |
83
|
|
|
*/ |
84
|
|
|
private $quotedTable; |
85
|
|
|
private $unquotedTable; |
86
|
|
|
private $invalidFields; |
87
|
|
|
private $dynamicOperations; |
88
|
|
|
private $index = 0; |
89
|
|
|
private $dataSet = false; |
90
|
|
|
private $className; |
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* An instance of the driver adapter for interacting with the database. |
94
|
|
|
* @var DriverAdapter |
95
|
|
|
*/ |
96
|
|
|
private $adapter; |
97
|
|
|
private $context; |
98
|
|
|
private $keys = []; |
99
|
|
|
private $initialized = false; |
100
|
|
|
|
101
|
|
|
/** |
102
|
|
|
* Initialize the record wrapper and setup the adapters, drivers, tables and schemas. |
103
|
|
|
* @return void |
104
|
|
|
*/ |
105
|
36 |
|
protected function initialize(): void |
106
|
|
|
{ |
107
|
36 |
|
if ($this->initialized) { |
108
|
36 |
|
return; |
109
|
|
|
} |
110
|
36 |
|
$this->context = ORMContext::getInstance(); |
111
|
36 |
|
$this->adapter = $this->context->getDriverAdapter(); |
112
|
36 |
|
$table = $this->table ?? $this->context->getModelTable($this); |
113
|
36 |
|
$driver = $this->context->getDbContext()->getDriver(); |
114
|
36 |
|
$this->adapter->setContext($this->context); |
115
|
36 |
|
$this->className = (new \ReflectionClass($this))->getName(); |
116
|
36 |
|
if (is_string($table)) { |
117
|
36 |
|
$this->table = $this->unquotedTable = $table; |
118
|
|
|
} else { |
119
|
|
|
$this->table = $table['table']; |
120
|
|
|
$this->schema = $table['schema']; |
121
|
|
|
} |
122
|
36 |
|
$this->quotedTable = ($this->schema ? "{$driver->quoteIdentifier($this->schema)}." : "") . $driver->quoteIdentifier($this->table); |
123
|
36 |
|
$this->unquotedTable = ($this->schema ? "{$this->schema}." : "") . $this->table; |
124
|
36 |
|
$this->adapter->setModel($this, $this->quotedTable); |
125
|
36 |
|
$this->initialized = true; |
126
|
36 |
|
} |
127
|
|
|
|
128
|
|
|
public function __debugInfo() |
|
|
|
|
129
|
|
|
{ |
130
|
|
|
$data = $this->getData(); |
131
|
|
|
return $this->hasMultipleItems() ? $data : isset($data[0]) ? $data[0] : []; |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
/** |
135
|
|
|
* Return a description of the model wrapped by this wrapper. |
136
|
|
|
* @return ModelDescription |
137
|
|
|
*/ |
138
|
28 |
|
public function getDescription() |
139
|
|
|
{ |
140
|
28 |
|
$this->initialize(); |
141
|
28 |
|
return $this->context->getCache()->read( |
142
|
28 |
|
"{$this->className}::desc", function () { |
143
|
28 |
|
return $this->context->getModelDescription($this); |
144
|
28 |
|
} |
145
|
|
|
); |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
/** |
149
|
|
|
* Return the number of items stored in the model or matched by the query. |
150
|
|
|
* Depending on the state of the model, the count method will return different values. For models that have data |
151
|
|
|
* values set with calls to setData, this method returns the number of records that were added. On the other hand, |
152
|
|
|
* for models that do not have data set, this method queries the database to find out the number of records that |
153
|
|
|
* are either in the model, or for models that have been filtered, the number of records that match the filter. |
154
|
|
|
* |
155
|
|
|
* @param int|array|QueryParameters $query |
156
|
|
|
* @return int |
|
|
|
|
157
|
|
|
*/ |
158
|
14 |
|
public function count($query = null) |
159
|
|
|
{ |
160
|
14 |
|
if ($this->dataSet) { |
161
|
10 |
|
return count($this->getData()); |
162
|
|
|
} |
163
|
4 |
|
return $this->__call('count', [$query]); |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
/** |
167
|
|
|
* Retrieve an item stored in the record. |
168
|
|
|
* This method returns items that are directly stored in the model or lazy |
169
|
|
|
* loads related items. The key could be a field in the model's table or |
170
|
|
|
* the name of a related model. |
171
|
|
|
* @param string $key A key identifying the item to be retrieved. |
172
|
|
|
* @return mixed |
173
|
|
|
*/ |
174
|
12 |
|
private function retrieveItem($key) |
175
|
|
|
{ |
176
|
12 |
|
$relationships = $this->getDescription()->getRelationships(); |
177
|
12 |
|
$decamelizedKey = Text::deCamelize($key); |
178
|
12 |
|
if (isset($relationships[$key])) { |
179
|
8 |
|
return $this->fetchRelatedFields($relationships[$key]); |
180
|
|
|
} |
181
|
4 |
|
return isset($this->modelData[$decamelizedKey]) ? $this->modelData[$decamelizedKey] : null; |
182
|
|
|
} |
183
|
|
|
|
184
|
|
|
/** |
185
|
|
|
* @method |
186
|
|
|
* @param string $name |
187
|
|
|
* @param array $arguments |
188
|
|
|
* @return type |
189
|
|
|
*/ |
190
|
34 |
|
public function __call($name, $arguments) |
191
|
|
|
{ |
192
|
34 |
|
$this->initialize(); |
193
|
34 |
|
if ($this->dynamicOperations === null) { |
194
|
34 |
|
$this->dynamicOperations = new Operations($this, $this->quotedTable); |
195
|
|
|
} |
196
|
34 |
|
return $this->dynamicOperations->perform($name, $arguments); |
197
|
|
|
} |
198
|
|
|
|
199
|
6 |
|
public function __set($name, $value) |
200
|
|
|
{ |
201
|
6 |
|
$this->dataSet = true; |
202
|
6 |
|
$this->modelData[Text::deCamelize($name)] = $value; |
203
|
6 |
|
} |
204
|
|
|
|
205
|
12 |
|
public function __get($name) |
206
|
|
|
{ |
207
|
12 |
|
return $this->retrieveItem($name); |
208
|
|
|
} |
209
|
|
|
|
210
|
4 |
|
private function expandArrayValue($array, $relationships, $depth, $index = null) |
|
|
|
|
211
|
|
|
{ |
212
|
4 |
|
foreach ($relationships as $name => $relationship) { |
213
|
4 |
|
$array[$name] = $this->fetchRelatedFields($relationship, $index)->toArray($depth); |
214
|
|
|
} |
215
|
4 |
|
return $array; |
216
|
|
|
} |
217
|
|
|
|
218
|
16 |
|
public function toArray($depth = 0) |
|
|
|
|
219
|
|
|
{ |
220
|
16 |
|
$relationships = $this->getDescription()->getRelationships(); |
221
|
16 |
|
$array = $this->modelData; |
222
|
16 |
|
if ($depth > 0) { |
223
|
4 |
|
if ($this->hasMultipleItems()) { |
224
|
|
|
foreach ($array as $i => $value) { |
225
|
|
|
$array[$i] = $this->expandArrayValue($value, $relationships, $depth - 1, $i); |
226
|
|
|
} |
227
|
|
|
} else { |
228
|
4 |
|
$array = $this->expandArrayValue($array, $relationships, $depth - 1); |
229
|
|
|
} |
230
|
|
|
} |
231
|
16 |
|
return $array; |
232
|
|
|
} |
233
|
|
|
|
234
|
10 |
|
public function save() |
235
|
|
|
{ |
236
|
10 |
|
$return = $this->__call('save', [$this->hasMultipleItems()]); |
237
|
10 |
|
$this->invalidFields = $this->dynamicOperations->getInvalidFields(); |
238
|
10 |
|
return $return; |
239
|
|
|
} |
240
|
|
|
|
241
|
18 |
|
private function hasMultipleItems() |
242
|
|
|
{ |
243
|
18 |
|
if (count($this->modelData) > 0) { |
244
|
16 |
|
return is_numeric(array_keys($this->modelData)[0]); |
245
|
|
|
} else { |
246
|
2 |
|
return false; |
247
|
|
|
} |
248
|
|
|
} |
249
|
|
|
|
250
|
18 |
|
public function getData() |
251
|
|
|
{ |
252
|
18 |
|
$data = []; |
253
|
|
|
|
254
|
18 |
|
if (count($this->modelData) == 0) { |
255
|
2 |
|
$data = $this->modelData; |
256
|
16 |
|
} else if ($this->hasMultipleItems()) { |
257
|
6 |
|
$data = $this->modelData; |
258
|
12 |
|
} else if (count($this->modelData) > 0) { |
259
|
12 |
|
$data[] = $this->modelData; |
260
|
|
|
} |
261
|
|
|
|
262
|
18 |
|
return $data; |
263
|
|
|
} |
264
|
|
|
|
265
|
26 |
|
public function setData($data) |
266
|
|
|
{ |
267
|
26 |
|
$this->dataSet = $data ? true : false; |
268
|
26 |
|
$this->modelData = $data; |
269
|
26 |
|
} |
270
|
|
|
|
271
|
|
|
public function mergeData($data) |
272
|
|
|
{ |
273
|
|
|
foreach ($data as $key => $value) { |
274
|
|
|
$this->modelData[$key] = $value; |
275
|
|
|
} |
276
|
|
|
$this->dataSet = true; |
277
|
|
|
} |
278
|
|
|
|
279
|
2 |
|
public function offsetExists($offset) |
280
|
|
|
{ |
281
|
2 |
|
return isset($this->modelData[$offset]); |
282
|
|
|
} |
283
|
|
|
|
284
|
2 |
|
public function offsetGet($offset) |
285
|
|
|
{ |
286
|
2 |
|
if (is_numeric($offset)) { |
287
|
2 |
|
return $this->wrap($offset); |
288
|
|
|
} else { |
289
|
2 |
|
return $this->retrieveItem($offset); |
290
|
|
|
} |
291
|
|
|
} |
292
|
|
|
|
293
|
2 |
|
public function offsetSet($offset, $value) |
294
|
|
|
{ |
295
|
2 |
|
$this->dataSet = true; |
296
|
2 |
|
$this->modelData[$offset] = $value; |
297
|
2 |
|
} |
298
|
|
|
|
299
|
|
|
public function offsetUnset($offset) |
300
|
|
|
{ |
301
|
|
|
unset($this->modelData[$offset]); |
302
|
|
|
} |
303
|
|
|
|
304
|
6 |
|
private function wrap($offset) |
305
|
|
|
{ |
306
|
6 |
|
$this->initialize(); |
307
|
6 |
|
if (isset($this->modelData[$offset])) { |
308
|
6 |
|
$className = $this->className; |
309
|
6 |
|
$newInstance = new $className(); |
310
|
6 |
|
$newInstance->initialize(); |
311
|
6 |
|
$newInstance->setData($this->modelData[$offset]); |
312
|
6 |
|
return $newInstance; |
313
|
|
|
} else { |
314
|
|
|
return null; |
315
|
|
|
} |
316
|
|
|
} |
317
|
|
|
|
318
|
4 |
|
public function getInvalidFields() |
319
|
|
|
{ |
320
|
4 |
|
return $this->invalidFields; |
321
|
|
|
} |
322
|
|
|
|
323
|
|
|
public function getHasMany() |
324
|
|
|
{ |
325
|
|
|
return $this->hasMany; |
326
|
|
|
} |
327
|
|
|
|
328
|
|
|
public function getBelongsTo() |
329
|
|
|
{ |
330
|
|
|
return $this->belongsTo; |
331
|
|
|
} |
332
|
|
|
|
333
|
4 |
|
public function current() |
334
|
|
|
{ |
335
|
4 |
|
return $this->wrap($this->keys[$this->index]); |
336
|
|
|
} |
337
|
|
|
|
338
|
|
|
public function key() |
339
|
|
|
{ |
340
|
|
|
return $this->keys[$this->index]; |
341
|
|
|
} |
342
|
|
|
|
343
|
4 |
|
public function next() |
344
|
|
|
{ |
345
|
4 |
|
$this->index++; |
346
|
4 |
|
} |
347
|
|
|
|
348
|
4 |
|
public function rewind() |
349
|
|
|
{ |
350
|
4 |
|
$this->keys = array_keys($this->modelData); |
351
|
4 |
|
$this->index = 0; |
352
|
4 |
|
} |
353
|
|
|
|
354
|
4 |
|
public function valid() |
355
|
|
|
{ |
356
|
4 |
|
return isset($this->keys[$this->index]) && isset($this->modelData[$this->keys[$this->index]]); |
357
|
|
|
} |
358
|
|
|
|
359
|
10 |
|
public function onValidate($errors) |
|
|
|
|
360
|
|
|
{ |
361
|
10 |
|
return $errors; |
362
|
|
|
} |
363
|
|
|
|
364
|
12 |
|
private function fetchRelatedFields($relationship, $index = null) |
|
|
|
|
365
|
|
|
{ |
366
|
12 |
|
if ($index === null) { |
367
|
12 |
|
$data = $this->modelData; |
368
|
|
|
} else { |
369
|
|
|
$data = $this->modelData[$index]; |
370
|
|
|
} |
371
|
12 |
|
$model = $relationship->getModelInstance(); |
372
|
12 |
|
if (empty($data)) { |
373
|
|
|
return $model; |
374
|
|
|
} |
375
|
12 |
|
$query = $relationship->prepareQuery($data); |
376
|
12 |
|
return $query ? $model->fetch($query) : $model; |
377
|
|
|
} |
378
|
|
|
|
379
|
28 |
|
public function getRelationships() |
380
|
|
|
{ |
381
|
|
|
return [ |
382
|
28 |
|
'HasMany' => $this->hasMany, |
383
|
28 |
|
'BelongsTo' => $this->belongsTo, |
384
|
28 |
|
'ManyHaveMany' => $this->manyHaveMany |
385
|
|
|
]; |
386
|
|
|
} |
387
|
|
|
|
388
|
|
|
public function usetField($field) |
389
|
|
|
{ |
390
|
|
|
unset($this->modelData[$field]); |
391
|
|
|
} |
392
|
|
|
|
393
|
8 |
|
public function preSaveCallback() |
394
|
|
|
{ |
395
|
|
|
|
396
|
8 |
|
} |
397
|
|
|
|
398
|
|
|
public function postSaveCallback($id) |
|
|
|
|
399
|
|
|
{ |
400
|
|
|
|
401
|
|
|
} |
402
|
|
|
|
403
|
2 |
|
public function preUpdateCallback() |
404
|
|
|
{ |
405
|
|
|
|
406
|
2 |
|
} |
407
|
|
|
|
408
|
2 |
|
public function postUpdateCallback() |
409
|
|
|
{ |
410
|
|
|
|
411
|
2 |
|
} |
412
|
|
|
|
413
|
36 |
|
public function getDBStoreInformation() |
414
|
|
|
{ |
415
|
36 |
|
$this->initialize(); |
416
|
|
|
return [ |
417
|
36 |
|
'schema' => $this->schema, |
418
|
36 |
|
'table' => $this->table, |
419
|
36 |
|
'quoted_table' => $this->quotedTable, |
420
|
36 |
|
'unquoted_table' => $this->unquotedTable |
421
|
|
|
]; |
422
|
|
|
} |
423
|
|
|
|
424
|
|
|
/** |
425
|
|
|
* |
426
|
|
|
* @return DriverAdapter |
427
|
|
|
*/ |
428
|
36 |
|
public function getAdapter() |
429
|
|
|
{ |
430
|
36 |
|
$this->initialize(); |
431
|
36 |
|
return $this->adapter; |
432
|
|
|
} |
433
|
|
|
|
434
|
|
|
} |
435
|
|
|
|
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.