forked from doppar/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInteractsWithModelSerialization.php
More file actions
384 lines (342 loc) · 11.4 KB
/
InteractsWithModelSerialization.php
File metadata and controls
384 lines (342 loc) · 11.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
<?php
namespace Doppar\Queue;
use Phaseolies\Database\Entity\Model;
use Phaseolies\Support\Collection;
// Provides secure serialization of Entity models in queue jobs.
// Instead of serializing entire model object
// This trait stores only the model's identifier
// Re-fetches it from the database when the job is unserialized.
/*
* Security Benefits:
* - Prevents exposure of hidden/protected attributes (passwords, tokens, etc.)
* - Always fetches fresh data from database
* - Reduces queue payload size
* - Handles deleted models gracefully (returns null)
*/
trait InteractsWithModelSerialization
{
/**
* Prepare the instance for serialization.
*
* @return array
*/
public function __serialize(): array
{
$values = [];
$reflection = new \ReflectionClass($this);
$properties = $reflection->getProperties();
foreach ($properties as $property) {
$property->setAccessible(true);
if (!$property->isInitialized($this)) {
continue;
}
$value = $property->getValue($this);
$name = $property->getName();
// If the value is Entity Model
if ($value instanceof Model) {
$values[$name] = $this->getSerializedPropertyValue($value);
}
// If the value is Collection
elseif ($value instanceof Collection) {
$values[$name] = $this->serializeCollection($value);
}
// Handle arrays that might contain models
elseif (is_array($value)) {
$values[$name] = $this->serializeArray($value);
}
// Handle standard values
else {
$values[$name] = $value;
}
}
return $values;
}
/**
* Restore the model after unserialization.
*
* @param array $values
* @return void
*/
public function __unserialize(array $values): void
{
$reflection = new \ReflectionClass($this);
foreach ($values as $name => $value) {
if (!$reflection->hasProperty($name)) {
continue;
}
$property = $reflection->getProperty($name);
$property->setAccessible(true);
// Restore serialized models
if (is_array($value) && isset($value['__serialized_model__'])) {
$property->setValue($this, $this->restoreModel($value));
}
// Restore serialized collections
elseif (is_array($value) && isset($value['__serialized_collection__'])) {
$property->setValue($this, $this->restoreCollection($value));
}
// Restore arrays that might contain models
elseif (is_array($value)) {
$property->setValue($this, $this->restoreArray($value));
}
// Restore standard values
else {
$property->setValue($this, $value);
}
}
}
/**
* Get the serialized representation of a model.
*
* @param Model $model
* @return array
*/
protected function getSerializedPropertyValue(Model $model): array
{
return [
'__serialized_model__' => true,
'class' => get_class($model),
'id' => $model->getKey(),
'relations' => $this->serializeRelations($model),
'connection' => $model instanceof Model ? $this->getModelConnection($model) : null,
];
}
/**
* Get the connection name from a model
*
* @param Model $model
* @return string|null
*/
protected function getModelConnection(Model $model): ?string
{
try {
$reflection = new \ReflectionClass($model);
$property = $reflection->getProperty('connection');
$property->setAccessible(true);
return $property->getValue($model);
} catch (\ReflectionException $e) {
return null;
}
}
/**
* Serialize a collection of models.
*
* @param Collection $collection
* @return array
*/
protected function serializeCollection(Collection $collection): array
{
$items = [];
foreach ($collection->all() as $item) {
if ($item instanceof Model) {
$items[] = $this->getSerializedPropertyValue($item);
} else {
$items[] = $item;
}
}
return [
'__serialized_collection__' => true,
'class' => get_class($collection),
'modelClass' => $this->getCollectionModelClass($collection),
'items' => $items,
];
}
/**
* Get the model class from a collection
*
* @param Collection $collection
* @return string|null
*/
protected function getCollectionModelClass(Collection $collection): ?string
{
try {
$reflection = new \ReflectionClass($collection);
$property = $reflection->getProperty('modelClass');
$property->setAccessible(true);
return $property->getValue($collection);
} catch (\ReflectionException $e) {
// If we can't get the modelClass, try to infer from first item
$items = $collection->all();
if (!empty($items) && $items[0] instanceof Model) {
return get_class($items[0]);
}
return null;
}
}
/**
* Serialize an array that might contain models.
*
* @param array $array
* @return array
*/
protected function serializeArray(array $array): array
{
return array_map(function ($value) {
if ($value instanceof Model) {
return $this->getSerializedPropertyValue($value);
} elseif ($value instanceof Collection) {
return $this->serializeCollection($value);
} elseif (is_array($value)) {
return $this->serializeArray($value);
}
return $value;
}, $array);
}
/**
* Serialize the model's loaded relationships.
*
* @param Model $model
* @return array
*/
protected function serializeRelations(Model $model): array
{
$relations = [];
// Get loaded relations from the model using the public method
foreach ($model->getRelations() as $name => $relation) {
if ($relation instanceof Model) {
$relations[$name] = $this->getSerializedPropertyValue($relation);
} elseif ($relation instanceof Collection) {
$relations[$name] = $this->serializeCollection($relation);
} elseif (is_array($relation)) {
// Handle array of models
$relations[$name] = $this->serializeArray($relation);
}
}
return $relations;
}
/**
* Restore a serialized model.
*
* @param array $data
* @return Model|null
*/
protected function restoreModel(array $data): ?Model
{
if (!isset($data['class']) || !isset($data['id'])) {
return null;
}
$class = $data['class'];
// Check if class exists and is a Model
if (!class_exists($class) || !is_subclass_of($class, Model::class)) {
return null;
}
try {
// Use the connection if specified
if (!empty($data['connection'])) {
$model = $class::connection($data['connection'])
->where((new $class)->getKeyName(), $data['id'])
->first();
} else {
// Use static query method from your Model
$model = $class::query()
->where((new $class)->getKeyName(), $data['id'])
->first();
}
// Restore relationships if the model was found
if ($model && !empty($data['relations'])) {
$this->restoreRelations($model, $data['relations']);
}
return $model;
} catch (\Throwable $e) {
// Log error if needed
error("Failed to restore model {$class}: " . $e->getMessage());
return null;
}
}
/**
* Restore a serialized collection.
*
* @param array $data
* @return Collection
*/
protected function restoreCollection(array $data): Collection
{
$modelClass = $data['modelClass'] ?? null;
$restoredItems = [];
foreach ($data['items'] as $itemData) {
if (is_array($itemData) && isset($itemData['__serialized_model__'])) {
$restored = $this->restoreModel($itemData);
if ($restored !== null) {
$restoredItems[] = $restored;
}
} else {
$restoredItems[] = $itemData;
}
}
// Create a new Collection with the model class and items
return new Collection($modelClass ?? 'array', $restoredItems);
}
/**
* Restore an array that might contain serialized models.
*
* @param array $array
* @return array
*/
protected function restoreArray(array $array): array
{
return array_map(function ($value) {
if (is_array($value) && isset($value['__serialized_model__'])) {
return $this->restoreModel($value);
} elseif (is_array($value) && isset($value['__serialized_collection__'])) {
return $this->restoreCollection($value);
} elseif (is_array($value)) {
return $this->restoreArray($value);
}
return $value;
}, $array);
}
/**
* Restore the model relations.
*
* @param Model $model
* @param array $relations
* @return void
*/
protected function restoreRelations(Model $model, array $relations): void
{
foreach ($relations as $name => $relationData) {
if (is_array($relationData)) {
if (isset($relationData['__serialized_model__'])) {
$restored = $this->restoreModel($relationData);
if ($restored) {
$model->setRelation($name, $restored);
}
} elseif (isset($relationData['__serialized_collection__'])) {
$restored = $this->restoreCollection($relationData);
if ($restored) {
$model->setRelation($name, $restored);
}
}
}
}
}
/**
* Get the property value prepared for serialization.
*
* @return array
*/
public function __sleep(): array
{
$serialized = $this->__serialize();
foreach ($serialized as $key => $value) {
$this->$key = $value;
}
return array_keys($serialized);
}
/**
* Restore the model after unserialization.
*
* @return void
*/
public function __wakeup(): void
{
$values = [];
$reflection = new \ReflectionClass($this);
foreach ($reflection->getProperties() as $property) {
$property->setAccessible(true);
if ($property->isInitialized($this)) {
$values[$property->getName()] = $property->getValue($this);
}
}
$this->__unserialize($values);
}
}