We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 46 |
Total Lines | 280 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Create often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Create, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
10 | trait Create |
||
11 | { |
||
12 | /* |
||
13 | |-------------------------------------------------------------------------- |
||
14 | | CREATE |
||
15 | |-------------------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Insert a row in the database. |
||
20 | * |
||
21 | * @param array $data All input values to be inserted. |
||
22 | * |
||
23 | * @return \Illuminate\Database\Eloquent\Model |
||
24 | */ |
||
25 | public function create($data) |
||
26 | { |
||
27 | $data = $this->decodeJsonCastedAttributes($data); |
||
|
|||
28 | $data = $this->compactFakeFields($data); |
||
29 | |||
30 | // omit the n-n relationships when updating the eloquent item |
||
31 | $nn_relationships = Arr::pluck($this->getRelationFieldsWithPivot(), 'name'); |
||
32 | |||
33 | // init and fill model |
||
34 | $item = $this->model->make(Arr::except($data, $nn_relationships)); |
||
35 | |||
36 | // handle BelongsTo 1:1 relations |
||
37 | $item = $this->handleBelongsToRelations($item, $data); |
||
38 | $item->save(); |
||
39 | |||
40 | // if there are any relationships available, also sync those |
||
41 | $this->createRelations($item, $data); |
||
42 | |||
43 | return $item; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Get all fields needed for the ADD NEW ENTRY form. |
||
48 | * |
||
49 | * @return array The fields with attributes and fake attributes. |
||
50 | */ |
||
51 | public function getCreateFields() |
||
52 | { |
||
53 | return $this->fields(); |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * Get all fields with relation set (model key set on field). |
||
58 | * |
||
59 | * @return array The fields with model key set. |
||
60 | */ |
||
61 | public function getRelationFields() |
||
62 | { |
||
63 | $fields = $this->fields(); |
||
64 | $relationFields = []; |
||
65 | |||
66 | foreach ($fields as $field) { |
||
67 | if (isset($field['model']) && $field['model'] !== false) { |
||
68 | array_push($relationFields, $field); |
||
69 | } |
||
70 | |||
71 | if (isset($field['subfields']) && |
||
72 | is_array($field['subfields']) && |
||
73 | count($field['subfields'])) { |
||
74 | foreach ($field['subfields'] as $subfield) { |
||
75 | array_push($relationFields, $subfield); |
||
76 | } |
||
77 | } |
||
78 | } |
||
79 | |||
80 | return $relationFields; |
||
81 | } |
||
82 | |||
83 | /** |
||
84 | * Associate and dissociate. |
||
85 | * |
||
86 | * @param Model |
||
87 | * @param array The form data. |
||
88 | * @return Model Model with relationships set up. |
||
89 | */ |
||
90 | public function handleBelongsToRelations($item, array $data) |
||
91 | { |
||
92 | foreach ($this->getBelongsToRelationFields() as $relationField) { |
||
93 | $item->{$this->getOnlyRelationEntity($relationField)}() |
||
94 | ->associate($relationField['model']::find(Arr::get($data, $relationField['name']))); |
||
95 | } |
||
96 | |||
97 | return $item; |
||
98 | } |
||
99 | |||
100 | /** |
||
101 | * Get all BelongsTo relationship fields. |
||
102 | * |
||
103 | * @return array The fields with 1:1 BelongsTo relationships and with model set. |
||
104 | */ |
||
105 | public function getBelongsToRelationFields(): array |
||
106 | { |
||
107 | return collect($this->fields()) |
||
108 | ->where('model') |
||
109 | ->where('relation_type', 'BelongsTo') |
||
110 | ->toArray(); |
||
111 | } |
||
112 | |||
113 | /** |
||
114 | * Get all fields with n-n relation set (pivot table is true). |
||
115 | * |
||
116 | * @return array The fields with n-n relationships. |
||
117 | */ |
||
118 | public function getRelationFieldsWithPivot() |
||
119 | { |
||
120 | $all_relation_fields = $this->getRelationFields(); |
||
121 | |||
122 | return Arr::where($all_relation_fields, function ($value, $key) { |
||
123 | return isset($value['pivot']) && $value['pivot']; |
||
124 | }); |
||
125 | } |
||
126 | |||
127 | /** |
||
128 | * Create the relations for the current model. |
||
129 | * |
||
130 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
131 | * @param array $data The form data. |
||
132 | */ |
||
133 | public function createRelations($item, $data) |
||
134 | { |
||
135 | $this->syncPivot($item, $data); |
||
136 | $this->createOneToOneRelations($item, $data); |
||
137 | } |
||
138 | |||
139 | /** |
||
140 | * Sync the declared many-to-many associations through the pivot field. |
||
141 | * |
||
142 | * @param \Illuminate\Database\Eloquent\Model $model The current CRUD model. |
||
143 | * @param array $data The form data. |
||
144 | */ |
||
145 | public function syncPivot($model, $data) |
||
146 | { |
||
147 | $fields_with_relationships = $this->getRelationFields(); |
||
148 | foreach ($fields_with_relationships as $key => $field) { |
||
149 | if (isset($field['pivot']) && $field['pivot']) { |
||
150 | $values = isset($data[$field['name']]) ? $data[$field['name']] : []; |
||
151 | |||
152 | // if a JSON was passed instead of an array, turn it into an array |
||
153 | if (is_string($values)) { |
||
154 | $values = json_decode($values); |
||
155 | } |
||
156 | |||
157 | $relation_data = []; |
||
158 | foreach ($values as $pivot_id) { |
||
159 | $pivot_data = []; |
||
160 | |||
161 | if (isset($field['pivotFields'])) { |
||
162 | foreach ($field['pivotFields'] as $pivot_field_name) { |
||
163 | $pivot_data[$pivot_field_name] = $data[$pivot_field_name][$pivot_id]; |
||
164 | } |
||
165 | } |
||
166 | $relation_data[$pivot_id] = $pivot_data; |
||
167 | } |
||
168 | |||
169 | $model->{$field['name']}()->sync($relation_data); |
||
170 | } |
||
171 | |||
172 | if (isset($field['morph']) && $field['morph'] && isset($data[$field['name']])) { |
||
173 | $values = $data[$field['name']]; |
||
174 | $model->{$field['name']}()->sync($values); |
||
175 | } |
||
176 | } |
||
177 | } |
||
178 | |||
179 | /** |
||
180 | * Create any existing one to one relations for the current model from the form data. |
||
181 | * |
||
182 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
183 | * @param array $data The form data. |
||
184 | */ |
||
185 | private function createOneToOneRelations($item, $data) |
||
186 | { |
||
187 | $relationData = $this->getRelationDataFromFormData($data); |
||
188 | $this->createRelationsForItem($item, $relationData); |
||
189 | } |
||
190 | |||
191 | /** |
||
192 | * Create any existing one to one relations for the current model from the relation data. |
||
193 | * |
||
194 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
195 | * @param array $formattedData The form data. |
||
196 | * |
||
197 | * @return bool|null |
||
198 | */ |
||
199 | private function createRelationsForItem($item, $formattedData) |
||
200 | { |
||
201 | if (! isset($formattedData['relations'])) { |
||
202 | return false; |
||
203 | } |
||
204 | foreach ($formattedData['relations'] as $relationMethod => $relationData) { |
||
205 | if (! isset($relationData['model'])) { |
||
206 | continue; |
||
207 | } |
||
208 | $model = $relationData['model']; |
||
209 | $relation = $item->{$relationMethod}(); |
||
210 | |||
211 | if ($relation instanceof HasOne) { |
||
212 | if ($item->{$relationMethod} != null) { |
||
213 | $item->{$relationMethod}->update($relationData['values']); |
||
214 | $modelInstance = $item->{$relationMethod}; |
||
215 | } else { |
||
216 | $modelInstance = new $model($relationData['values']); |
||
217 | $relation->save($modelInstance); |
||
218 | } |
||
219 | } |
||
220 | |||
221 | if (isset($relationData['relations'])) { |
||
222 | $this->createRelationsForItem($modelInstance, ['relations' => $relationData['relations']]); |
||
223 | } |
||
224 | } |
||
225 | } |
||
226 | |||
227 | /** |
||
228 | * Get a relation data array from the form data. |
||
229 | * For each relation defined in the fields through the entity attribute, set the model, the parent model and the |
||
230 | * attribute values. |
||
231 | * |
||
232 | * We traverse this relation array later to create the relations, for example: |
||
233 | * |
||
234 | * Current model HasOne Address, this Address (line_1, country_id) BelongsTo Country through country_id in Address Model. |
||
235 | * |
||
236 | * So when editing current model crud user have two fields address.line_1 and address.country (we infer country_id from relation) |
||
237 | * |
||
238 | * Those will be nested accordingly in this relation array, so address relation will have a nested relation with country. |
||
239 | * |
||
240 | * |
||
241 | * @param array $data The form data. |
||
242 | * |
||
243 | * @return array The formatted relation data. |
||
244 | */ |
||
245 | private function getRelationDataFromFormData($data) |
||
246 | { |
||
247 | $relation_fields = $this->getRelationFields(); |
||
248 | $relationData = []; |
||
249 | foreach ($relation_fields as $relation_field) { |
||
250 | $attributeKey = $this->parseRelationFieldNamesFromHtml([$relation_field])[0]['name']; |
||
251 | |||
252 | if (! is_null(Arr::get($data, $attributeKey)) && isset($relation_field['pivot']) && $relation_field['pivot'] !== true) { |
||
253 | $key = implode('.relations.', explode('.', $this->getOnlyRelationEntity($relation_field))); |
||
254 | $fieldData = Arr::get($relationData, 'relations.'.$key, []); |
||
255 | if (! array_key_exists('model', $fieldData)) { |
||
256 | $fieldData['model'] = $relation_field['model']; |
||
257 | } |
||
258 | if (! array_key_exists('parent', $fieldData)) { |
||
259 | $fieldData['parent'] = $this->getRelationModel($attributeKey, -1); |
||
260 | } |
||
261 | $relatedAttribute = Arr::last(explode('.', $attributeKey)); |
||
262 | $fieldData['values'][$relatedAttribute] = Arr::get($data, $attributeKey); |
||
263 | |||
264 | Arr::set($relationData, 'relations.'.$key, $fieldData); |
||
265 | } |
||
266 | } |
||
267 | |||
268 | return $relationData; |
||
269 | } |
||
270 | |||
271 | public function getOnlyRelationEntity($relation_field) |
||
290 | } |
||
291 | } |
||
292 |