-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFieldTrait.php
More file actions
249 lines (217 loc) · 6.86 KB
/
FieldTrait.php
File metadata and controls
249 lines (217 loc) · 6.86 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
<?php
namespace NormanHuth\SingleResource\Traits;
use Illuminate\Database\Eloquent\Concerns\HasAttributes;
use Illuminate\Support\Collection as BaseCollection;
use Laravel\Nova\Fields\Field;
use Laravel\Nova\Http\Requests\NovaRequest;
trait FieldTrait
{
use HasAttributes;
protected string $valueColumn;
protected string $keyColumn;
protected mixed $currentModel;
protected ?string $castColumn = null;
/**
* Resolve the field's value.
*
* @param mixed $resource
* @param string|null $attribute
* @return void
*/
public function resolve($resource, $attribute = null): void
{
$this->castColumn = $attribute;
$this->resource = $resource;
$attribute = $attribute ?? $this->attribute;
if ($attribute === 'ComputedField') {
$this->value = call_user_func($this->computedCallback, $resource);
return;
}
$this->currentModel = $resource;
$this->keyColumn = !empty($resource::$keyColumn) ? $resource::$keyColumn : 'key';
$this->valueColumn = !empty($resource::$valueColumn) ? $resource::$valueColumn : 'value';
$model = $resource::where($this->keyColumn, $attribute)->first();
$modelAttribute = $model ? $model->{$this->valueColumn} : null;
if (!$this->resolveCallback) {
$this->value = $this->castValue($modelAttribute);
} elseif (is_callable($this->resolveCallback)) {
tap($this->resolveAttribute($resource, $attribute), function ($value) use ($resource, $modelAttribute) {
if (method_exists($this, 'fieldResolveAttribute')) {
$this->value = $this->fieldResolveAttribute($modelAttribute, $value, $resource, $modelAttribute);
} else {
$this->value = call_user_func($this->resolveCallback, $value, $resource, $modelAttribute);
}
});
}
}
/**
* Get the current connection name for the model.
*
* @return string|null
*/
public function getConnection(): ?string
{
return 'mysql';
}
/**
* Cast values
*
* @param $value
* @return bool|BaseCollection|int|mixed|string|null|void|array
*/
protected function castValue($value)
{
if (empty($this->cast)) {
return $value;
}
return $this->castAttribute($this->cast, $value);
}
/**
* Get the casts array.
*
* @return array
*/
public function getCasts(): array
{
return [$this->castColumn => $this->cast];
}
/**
* Get the value indicating whether the IDs are incrementing.
*
* @return bool
*/
public function getIncrementing(): bool
{
return false;
}
/**
* Get the format for database stored dates.
*
* @return string
*/
public function getDateFormat(): string
{
return empty($this->dateFormat) ? 'Y-m-d H:i:s' : $this->dateFormat;
}
/**
* Get the type of cast for a model attribute.
*
* @param string $key
* @return string
*/
protected function getCastType($key): string
{
if ($this->isCustomDateTimeCast($this->cast)) {
return 'custom_datetime';
}
if ($this->isImmutableCustomDateTimeCast($this->cast)) {
return 'immutable_custom_datetime';
}
if ($this->isDecimalCast($this->cast)) {
return 'decimal';
}
return trim(strtolower($this->cast));
}
/**
* Resolve the given attribute from the given resource.
*
* @param mixed $resource
* @param string $attribute
* @return mixed
*/
protected function resolveAttribute($resource, $attribute): mixed
{
if (empty($this->valueColumn)) {
$this->valueColumn = !empty($resource::$valueColumn) ? $resource::$valueColumn : 'value';
}
if (empty($this->keyColumn)) {
$this->keyColumn = !empty($resource::$keyColumn) ? $resource::$keyColumn : 'key';
}
/**
* Failed sometimes
* if (!empty($resource->{$this->valueColumn})) {
* return $resource->{$this->valueColumn};
* }
**/
$model = $resource::where($this->keyColumn, $attribute)->first();
if ($model) {
$modelAttribute = $model->{$this->valueColumn};
return $this->castValue($modelAttribute);
}
return data_get($resource, str_replace('->', '.', $attribute));
}
/**
* Hydrate the given attribute on the model based on the incoming request.
*
* @param NovaRequest $request
* @param string $requestAttribute
* @param object $model
* @param string $attribute
* @return void
*/
protected function fillAttributeFromRequest(NovaRequest $request, $requestAttribute, $model, $attribute): void
{
if ($request->exists($requestAttribute)) {
$value = $request[$requestAttribute];
$value = $this->isNullValue($value) ? null : $value;
if (!empty($this->cast) && !is_null($value) && $this->isEncryptedCastable($this->cast)) {
$value = $this->castAttributeAsEncryptedString($this->cast, $value);
}
$this->currentModel::updateOrCreate(
[$this->keyColumn => $requestAttribute],
[$this->valueColumn => $value],
);
}
}
/**
* Determine whether a value is an encrypted castable for inbound manipulation.
*
* @param string $key
* @return bool
*/
protected function isEncryptedCastable($key): bool
{
return in_array($key, ['encrypted', 'encrypted:array', 'encrypted:collection', 'encrypted:json', 'encrypted:object']);
}
/**
* Hydrate the given attribute on the model based on the incoming request.
*
* @param NovaRequest $request
* @param string $requestAttribute
* @param object $model
* @param string $attribute
*/
protected function fillAttribute(NovaRequest $request, $requestAttribute, $model, $attribute): void
{
if (method_exists($this, 'fieldFillAttribute')) {
$this->fieldFillAttribute($request, $requestAttribute, $model, $attribute);
return;
}
$this->fillAttributeFromRequest($request, $requestAttribute, $model, $attribute);
}
/**
* Specify that this field should be sortable.
*
* @param bool $value
* @return Field
*/
public function sortable($value = false): Field
{
/**
* No sortable for single resources!
*/
$this->sortable = false;
return $this;
}
/**
* Cast this field
*
* @param string $cast
* @return Field
*/
public function cast(string $cast): Field
{
$this->cast = $cast;
return $this;
}
}