|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace AlgoWeb\PODataLaravel\Serialisers; |
|
4
|
|
|
|
|
5
|
|
|
use AlgoWeb\PODataLaravel\Query\LaravelReadQuery; |
|
6
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
7
|
|
|
|
|
8
|
|
|
class ModelSerialiser |
|
9
|
|
|
{ |
|
10
|
|
|
// take a supplied Eloquent model with metadata trait and serialise it in bulk. |
|
11
|
|
|
// Upstream POData implementation has an N+1 lookup problem that interacts badly with how |
|
12
|
|
|
// Eloquent handles property accesses |
|
13
|
|
|
|
|
14
|
|
|
private static $mutatorCache = []; |
|
15
|
|
|
private static $metadataCache = []; |
|
16
|
|
|
|
|
17
|
|
|
public function __construct() |
|
18
|
|
|
{ |
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* Serialise needed bits of supplied model, taking fast path where possible. |
|
23
|
|
|
* |
|
24
|
|
|
* @param $model |
|
25
|
|
|
* |
|
26
|
|
|
* @return mixed |
|
27
|
|
|
*/ |
|
28
|
|
|
public function bulkSerialise($model) |
|
29
|
|
|
{ |
|
30
|
|
|
$class = get_class($model); |
|
31
|
|
|
assert($model instanceof Model, $class); |
|
32
|
|
|
// dig up metadata |
|
33
|
|
|
if (!isset(self::$metadataCache[$class])) { |
|
34
|
|
|
self::$metadataCache[$class] = $model->metadata(); |
|
35
|
|
|
} |
|
36
|
|
|
$model->synthLiteralPK(); |
|
37
|
|
|
$meta = self::$metadataCache[$class]; |
|
38
|
|
|
$keys = array_keys($meta); |
|
39
|
|
|
// dig up getter list - we only care about the mutators that end up in metadata |
|
40
|
|
|
if (!isset(self::$mutatorCache[$class])) { |
|
41
|
|
|
$getterz = []; |
|
42
|
|
|
$datez = $model->getDates(); |
|
43
|
|
|
$castz = $model->retrieveCasts(); |
|
44
|
|
|
foreach ($keys as $key) { |
|
45
|
|
|
if ($model->hasGetMutator($key) || in_array($key, $datez) || array_key_exists($key, $castz)) { |
|
46
|
|
|
$getterz[] = $key; |
|
47
|
|
|
} |
|
48
|
|
|
} |
|
49
|
|
|
self::$mutatorCache[$class] = $getterz; |
|
50
|
|
|
} |
|
51
|
|
|
$getterz = self::$mutatorCache[$class]; |
|
52
|
|
|
$modelAttrib = $model->getAttributes(); |
|
53
|
|
|
$result = array_intersect_key($modelAttrib, $meta); |
|
54
|
|
|
foreach ($keys as $key) { |
|
55
|
|
|
if (!isset($result[$key])) { |
|
56
|
|
|
$result[$key] = null; |
|
57
|
|
|
} |
|
58
|
|
|
} |
|
59
|
|
|
foreach ($getterz as $getter) { |
|
60
|
|
|
$result[$getter] = $model->$getter; |
|
61
|
|
|
} |
|
62
|
|
|
if (isset($modelAttrib[LaravelReadQuery::PK])) { |
|
63
|
|
|
$result[LaravelReadQuery::PK] = $modelAttrib[LaravelReadQuery::PK]; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
return $result; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
public function reset() |
|
70
|
|
|
{ |
|
71
|
|
|
self::$mutatorCache = []; |
|
72
|
|
|
self::$metadataCache = []; |
|
73
|
|
|
} |
|
74
|
|
|
} |
|
75
|
|
|
|