-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathField.php
More file actions
751 lines (615 loc) · 18.3 KB
/
Field.php
File metadata and controls
751 lines (615 loc) · 18.3 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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
<?php
namespace Binaryk\LaravelRestify\Fields;
use Binaryk\LaravelRestify\Fields\Concerns\HasAction;
use Binaryk\LaravelRestify\Http\Requests\RestifyRequest;
use Binaryk\LaravelRestify\Repositories\Repository;
use Binaryk\LaravelRestify\Traits\Make;
use Closure;
use Illuminate\Contracts\Validation\Rule;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
use Illuminate\Validation\Rules\Unique;
use JsonSerializable;
use ReturnTypeWillChange;
class Field extends OrganicField implements JsonSerializable
{
use HasAction;
use Make;
/**
* The resource associated with the field.
*
* @var Repository
*/
public $repository;
public Repository $parentRepository;
/**
* Column name of the field.
*
* @var string|callable|null
*/
public $attribute;
/**
* Field value.
*
* @var string|callable|null
*/
public $value;
/**
* In case of the update, this will keep the previous value.
*/
public $valueBeforeUpdate;
/**
* Closure to resolve the index method.
*/
private $indexCallback;
/**
* @var Closure
*/
public $showCallback;
/**
* Callback called when the value is filled, this callback will do not override the fill action.
*
* @var Closure
*/
public $storeCallback;
/**
* Callback called when the value is filled from a store bulk, this callback will do not override the fill action.
*
* @var Closure
*/
public $storeBulkCallback;
/**
* Callback called when update.
*
* @var Closure
*/
public $updateCallback;
/**
* Closure be used to resolve the field's value.
*
* @var \Closure
*/
public $resolveCallback;
/**
* Callback called when trying to fill this attribute, this callback will override the storeCallback or updateCallback.
*
* Make sure you assign the attribute to the model over this callback.
*
* @var Closure
*/
public $fillCallback;
/**
* Closure be used for computed field.
*
* @var callable
*/
protected $computedCallback;
/**
* Closure be used for the field's default value.
*
* @var callable
*/
protected $defaultCallback;
/**
* Closure be used for the field's default value when store/update.
*
* @var callable
*/
protected $valueCallback;
protected $fillDefaultCallback;
/**
* Closure be used to be called after the field value stored.
*/
public $afterStoreCallback;
/**
* Closure be used to be called after the field value changed.
*/
public $afterUpdateCallback;
public $label;
/**
* Create a new field.
*
* @param string|callable|null $attribute
* @param callable|null $resolveCallback
*/
public function __construct($attribute, callable|Closure|null $resolveCallback = null)
{
$this->attribute = $attribute;
$this->label = $attribute;
$this->resolveCallback = $resolveCallback;
$this->default(null);
if ($attribute instanceof Closure || (is_callable($attribute) && is_object($attribute))) {
$this->computedCallback = $attribute;
$this->attribute = 'Computed';
$this->readonly();
} else {
$this->attribute = $attribute ?? str_replace(' ', '_', Str::lower($attribute));
}
}
public function indexCallback(callable|Closure $callback)
{
$this->indexCallback = $callback;
return $this;
}
/**
* @param Closure $callback
* @return $this
*/
public function showCallback(callable|Closure $callback)
{
$this->showCallback = $callback;
return $this;
}
public function storeCallback(callable|Closure $callback)
{
$this->storeCallback = $callback;
return $this;
}
public function storeBulkCallback(callable|Closure $callback)
{
$this->storeBulkCallback = $callback;
return $this;
}
public function updateCallback(callable|Closure $callback)
{
$this->updateCallback = $callback;
return $this;
}
/**
* Callback called when trying to fill this attribute, this callback will override the fill action, so make
* sure you assign the attribute to the model over this callback.
*
* @param Closure $callback
* @return $this
*/
public function fillCallback(callable|Closure $callback)
{
$this->fillCallback = $callback;
return $this;
}
/**
* This is called after the fill and store callbacks.
*
* You can pass a callable or a value, and it will be attached to the model if no value provided otherwise.
*
* Imagine it's like `attributes` in the model.
*
* @return $this
*/
public function defaultCallback(mixed $callback)
{
$this->fillDefaultCallback = $callback;
return $this;
}
/**
* Fill attribute with value from the request or delegate this action to the user defined callback.
*
* @return mixed|void
*/
public function fillAttribute(RestifyRequest $request, $model, ?int $bulkRow = null)
{
$this->resolveValueBeforeUpdate($request, $model);
if (is_callable($this->fillCallback)) {
return call_user_func(
$this->fillCallback,
$request,
$model,
$this->label ?? $this->attribute,
$bulkRow
);
}
if ($this->isHidden($request)) {
return $this->fillAttributeFromValue(
$request,
$model,
$this->label ?? $this->attribute
);
}
$this->fillAttributeFromRequest(
$request,
$model,
$this->label ?? $this->attribute,
$bulkRow
);
$this->fillAttributeFromCallback(
$request,
$model,
$this->label ?? $this->attribute,
$bulkRow
);
$this->fillAttributeFromDefault(
$request,
$model,
$this->label ?? $this->attribute
);
$this->fillAttributeFromValue(
$request,
$model,
$this->label ?? $this->attribute
);
return $this;
}
/**
* Fill the model with value from the request.
*/
protected function fillAttributeFromRequest(RestifyRequest $request, $model, $attribute, ?int $bulkRow = null)
{
$attribute = is_null($bulkRow)
? $attribute
: "{$bulkRow}.{$attribute}";
if (! ($request->exists($attribute) || $request->input($attribute))) {
return;
}
tap(
($request->input($attribute) ?? $request[$attribute]),
fn ($value) => $model->{$this->attribute} = $request->has($attribute)
? $value
: $model->{$this->attribute}
);
}
/**
* Fill the model with value from the callback.
*/
protected function fillAttributeFromCallback(RestifyRequest $request, $model, $attribute, ?int $bulkRow = null)
{
if (is_callable($cb = $this->guessBeforeFillableCallable($request))) {
$value = $request->input($attribute ?? $this->attribute);
if ($this instanceof File) {
$value = $request->file($attribute ?? $this->attribute);
}
$model->{$this->attribute} = $cb($value);
}
}
/**
* Fill the model with the value from value.
*
* @return Field
*/
protected function fillAttributeFromValue(RestifyRequest $request, $model, $attribute)
{
if (! isset($this->valueCallback)) {
return $this;
}
$model->{$attribute} = is_callable($this->valueCallback)
? call_user_func($this->valueCallback, $request, $model, $attribute)
: $this->valueCallback;
return $this;
}
protected function fillAttributeFromDefault(RestifyRequest $request, $model, $attribute)
{
if ($model->{$attribute}) {
return $this;
}
if (! isset($this->fillDefaultCallback)) {
return $this;
}
$model->{$attribute} = is_callable($this->fillDefaultCallback)
? call_user_func($this->fillDefaultCallback, $request, $model, $attribute)
: $this->fillDefaultCallback;
return $this;
}
/**
* @return callable|string|null
*/
public function getAttribute()
{
return $this->label ?? $this->attribute;
}
/**
* Validation rules for store.
*
* @return Field
*/
public function storingRules($rules)
{
$this->storingRules = ($rules instanceof Rule || is_string($rules) || $rules instanceof Unique) ? func_get_args() : $rules;
return $this;
}
public function storeBulkRules($rules)
{
$this->storingBulkRules = ($rules instanceof Rule || is_string($rules) || $rules instanceof Unique) ? func_get_args() : $rules;
return $this;
}
public function updateBulkRules($rules)
{
$this->updateBulkRules = ($rules instanceof Rule || is_string($rules) || $rules instanceof Unique) ? func_get_args() : $rules;
return $this;
}
/**
* Alias for storingRules - to maintain it consistent.
*
* @return $this
*/
public function storeRules($rules)
{
return $this->storingRules($rules);
}
/**
* Validation rules for update.
*
* @return Field
*/
public function updatingRules($rules)
{
$this->updatingRules = ($rules instanceof Rule || is_string($rules) || $rules instanceof Unique) ? func_get_args() : $rules;
return $this;
}
/**
* Validation rules for store.
*
* @return Field
*/
public function rules($rules)
{
$this->rules += ($rules instanceof Rule || is_string($rules) || $rules instanceof Unique) ? func_get_args() : $rules;
return $this;
}
public function messages(array $messages)
{
$this->messages = $messages;
return $this;
}
public function serializeMessages(): array
{
$messages = [];
foreach ($this->messages as $ruleFor => $message) {
$messages[$this->getAttribute().'.'.$ruleFor] = $message;
}
return $messages;
}
public function getStoringRules(): array
{
return array_merge($this->rules, $this->storingRules);
}
public function getStoringBulkRules(): array
{
return array_merge($this->rules, $this->storingBulkRules);
}
public function getUpdatingRules(): array
{
return array_merge($this->rules, $this->updatingRules);
}
public function getUpdatingBulkRules(): array
{
return array_merge($this->rules, $this->updateBulkRules);
}
/**
* Determine if the attribute is computed.
*
* @return bool
*/
public function computed()
{
return (is_callable($this->attribute) && ! is_string($this->attribute)) ||
is_callable($this->computedCallback) || $this->attribute == 'Computed';
}
/**
* Resolve the attribute's value for display.
*
* @param mixed $repository
* @param string|null $attribute
* @return Field|void
*/
public function resolveForShow($repository, $attribute = null)
{
$attribute = $attribute ?? $this->attribute;
if ($attribute === 'Computed') {
$this->value = call_user_func($this->computedCallback, $repository);
return;
}
if (! $this->showCallback) {
$this->resolve($repository, $attribute);
} elseif (is_callable($this->showCallback)) {
tap(
$this->value ?? $this->resolveAttribute($repository, $attribute),
function ($value) use ($repository, $attribute) {
$this->value = call_user_func($this->showCallback, $value, $repository, $attribute);
}
);
}
return $this;
}
public function resolveForIndex($repository, $attribute = null)
{
$this->repository = $repository;
$attribute = $attribute ?? $this->attribute;
if ($attribute === 'Computed') {
$this->value = call_user_func($this->computedCallback, $repository);
return $this;
}
if (! $this->indexCallback) {
$this->resolve($repository, $attribute);
} elseif (is_callable($this->indexCallback)) {
tap(
$this->value ?? $this->resolveAttribute($repository, $attribute),
function ($value) use ($repository, $attribute) {
$this->value = call_user_func($this->indexCallback, $value, $repository, $attribute);
}
);
}
return $this;
}
public function resolve($repository, $attribute = null)
{
$this->repository = $repository;
$attribute = $attribute ?? $this->attribute;
if ($attribute === 'Computed') {
$this->value = call_user_func($this->computedCallback, $repository);
return $this;
}
if (! $this->resolveCallback) {
$this->value = $this->resolveAttribute($repository, $attribute);
} elseif (is_callable($this->resolveCallback)) {
tap($this->resolveAttribute($repository, $attribute), function ($value) use ($repository, $attribute) {
$this->value = call_user_func($this->resolveCallback, $value, $repository, $attribute);
});
}
return $this;
}
/**
* Resolve the given attribute from the given repository.
*
* @param mixed $repository
* @param string $attribute
* @return mixed
*/
protected function resolveAttribute($repository, $attribute)
{
return data_get($repository, str_replace('->', '.', $attribute));
}
protected function resolveValueBeforeUpdate(RestifyRequest $request, $repository)
{
if ($request->isUpdateRequest()) {
$this->valueBeforeUpdate = $this->resolveAttribute($repository, $this->attribute);
}
}
#[ReturnTypeWillChange]
public function jsonSerialize()
{
return with(app(RestifyRequest::class), function ($request) {
return [
'attribute' => $this->label ?? $this->attribute,
'value' => $this->value ?? $this->resolveDefaultValue($request),
];
});
}
public function label($label)
{
$this->label = $label;
return $this;
}
public function serializeToValue($request)
{
return [
$this->label ?? $this->attribute => $this->value ?? $this->resolveDefaultValue($request),
];
}
/**
* Set the callback to be used for determining the field's default value.
*
* @return $this
*/
public function default($callback)
{
$this->defaultCallback = $callback;
return $this;
}
/**
* Resolve the default value for the field.
*
* @return callable|mixed
*/
protected function resolveDefaultValue(RestifyRequest $request)
{
if (is_null($this->value) && is_callable($this->defaultCallback)) {
return call_user_func($this->defaultCallback, $request);
}
return $this->defaultCallback;
}
/**
* Define the callback that should be used to resolve the field's value.
*
* @return $this
*/
public function resolveCallback(callable $resolveCallback)
{
$this->resolveCallback = $resolveCallback;
return $this;
}
public function afterUpdate(callable|Closure $callback)
{
$this->afterUpdateCallback = $callback;
return $this;
}
public function afterStore(callable|Closure $callback)
{
$this->afterStoreCallback = $callback;
return $this;
}
public function invokeAfter(RestifyRequest $request, Model $model): void
{
if ($request->isStoreRequest() && is_callable($this->afterStoreCallback)) {
call_user_func(
$this->afterStoreCallback,
data_get($model, $this->attribute),
$model,
$request
);
}
if ($request->isUpdateRequest() && is_callable($this->afterUpdateCallback)) {
call_user_func(
$this->afterUpdateCallback,
$this->resolveAttribute($model, $this->attribute),
$this->valueBeforeUpdate,
$model,
$request
);
}
}
/**
* Indicate whatever the input is hidden or not.
*
* @param bool $callback
* @return $this
*/
public function hidden($callback = true)
{
$this->hideFromIndex($callback)
->hideFromShow($callback);
$this->hiddenCallback = $callback;
return $this;
}
/**
* Force set values when store/update.
*
* @param callable|string $value
* @return $this
*/
public function value($value)
{
$this->valueCallback = $value;
return $this;
}
/**
* @return $this
*
* @deprecated
*/
public function append($value)
{
return $this->value($value);
}
public function setRepository(Repository $repository): Field
{
$this->repository = $repository;
return $this;
}
public function setParentRepository(Repository $repository): Field
{
$this->parentRepository = $repository;
return $this;
}
private function guessBeforeFillableCallable(RestifyRequest $request): Closure|callable|null
{
if ($request->isUpdateRequest()) {
return $this->updateCallback;
}
if ($request->isStoreBulkRequest()) {
return $this->storeBulkCallback;
}
return $this->storeCallback;
}
public function required(): self
{
$this->rules += ['required'];
return $this;
}
public function file(): File
{
return File::make($this->attribute);
}
public function image(): Image
{
return Image::make($this->attribute);
}
}