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 | 278 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 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 | $item = $this->model->create(Arr::except($data, $nn_relationships)); |
||
| 33 | |||
| 34 | // if there are any relationships available, also sync those |
||
| 35 | $this->createRelations($item, $data); |
||
| 36 | |||
| 37 | return $item; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get all fields needed for the ADD NEW ENTRY form. |
||
| 42 | * |
||
| 43 | * @return array The fields with attributes and fake attributes. |
||
| 44 | */ |
||
| 45 | public function getCreateFields() |
||
| 46 | { |
||
| 47 | return $this->fields(); |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Get all fields with relation set (model key set on field). |
||
| 52 | * |
||
| 53 | * @return array The fields with model key set. |
||
| 54 | */ |
||
| 55 | public function getRelationFields() |
||
| 56 | { |
||
| 57 | $fields = $this->fields(); |
||
| 58 | $relationFields = []; |
||
| 59 | |||
| 60 | foreach ($fields as $field) { |
||
| 61 | if (isset($field['model']) && $field['model'] !== false) { |
||
| 62 | array_push($relationFields, $field); |
||
| 63 | } |
||
| 64 | |||
| 65 | if (isset($field['subfields']) && |
||
| 66 | is_array($field['subfields']) && |
||
| 67 | count($field['subfields'])) { |
||
| 68 | foreach ($field['subfields'] as $subfield) { |
||
| 69 | array_push($relationFields, $subfield); |
||
| 70 | } |
||
| 71 | } |
||
| 72 | } |
||
| 73 | |||
| 74 | return $relationFields; |
||
| 75 | } |
||
| 76 | |||
| 77 | /** |
||
| 78 | * Get all fields with n-n relation set (pivot table is true). |
||
| 79 | * |
||
| 80 | * @return array The fields with n-n relationships. |
||
| 81 | */ |
||
| 82 | public function getRelationFieldsWithPivot() |
||
| 83 | { |
||
| 84 | $all_relation_fields = $this->getRelationFields(); |
||
| 85 | |||
| 86 | return Arr::where($all_relation_fields, function ($value, $key) { |
||
| 87 | return isset($value['pivot']) && $value['pivot']; |
||
| 88 | }); |
||
| 89 | } |
||
| 90 | |||
| 91 | /** |
||
| 92 | * Create the relations for the current model. |
||
| 93 | * |
||
| 94 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
| 95 | * @param array $data The form data. |
||
| 96 | */ |
||
| 97 | public function createRelations($item, $data) |
||
| 101 | } |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Sync the declared many-to-many associations through the pivot field. |
||
| 105 | * |
||
| 106 | * @param \Illuminate\Database\Eloquent\Model $model The current CRUD model. |
||
| 107 | * @param array $data The form data. |
||
| 108 | */ |
||
| 109 | public function syncPivot($model, $data) |
||
| 140 | } |
||
| 141 | } |
||
| 142 | } |
||
| 143 | |||
| 144 | /** |
||
| 145 | * Create any existing one to one relations for the current model from the form data. |
||
| 146 | * |
||
| 147 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
| 148 | * @param array $data The form data. |
||
| 149 | */ |
||
| 150 | private function createOneToOneRelations($item, $data) |
||
| 154 | } |
||
| 155 | |||
| 156 | /** |
||
| 157 | * Create any existing one to one or one to many relations for the current model from the relation data. |
||
| 158 | * |
||
| 159 | * @param \Illuminate\Database\Eloquent\Model $item The current CRUD model. |
||
| 160 | * @param array $formattedData The form data. |
||
| 161 | * |
||
| 162 | * @return bool|null |
||
| 163 | */ |
||
| 164 | private function createRelationsForItem($item, $formattedData) |
||
| 221 | } |
||
| 222 | } |
||
| 223 | } |
||
| 224 | |||
| 225 | /** |
||
| 226 | * Get a relation data array from the form data. |
||
| 227 | * For each relation defined in the fields through the entity attribute, set the model, the parent model and the |
||
| 228 | * attribute values. |
||
| 229 | * |
||
| 230 | * We traverse this relation array later to create the relations, for example: |
||
| 231 | * |
||
| 232 | * Current model HasOne Address, this Address (line_1, country_id) BelongsTo Country through country_id in Address Model. |
||
| 233 | * |
||
| 234 | * So when editing current model crud user have two fields address.line_1 and address.country (we infer country_id from relation) |
||
| 235 | * |
||
| 236 | * Those will be nested accordingly in this relation array, so address relation will have a nested relation with country. |
||
| 237 | * |
||
| 238 | * |
||
| 239 | * @param array $data The form data. |
||
| 240 | * |
||
| 241 | * @return array The formatted relation data. |
||
| 242 | */ |
||
| 243 | private function getRelationDataFromFormData($data) |
||
| 244 | { |
||
| 245 | $relation_fields = $this->getRelationFields(); |
||
| 246 | $relationData = []; |
||
| 247 | foreach ($relation_fields as $relation_field) { |
||
| 248 | $attributeKey = $this->parseRelationFieldNamesFromHtml([$relation_field])[0]['name']; |
||
| 249 | |||
| 250 | |||
| 251 | if (isset($relation_field['pivot']) && $relation_field['pivot'] !== true) { |
||
| 252 | $key = implode('.relations.', explode('.', $this->getOnlyRelationEntity($relation_field))); |
||
| 253 | |||
| 254 | $fieldData = Arr::get($relationData, 'relations.'.$key, []); |
||
| 255 | |||
| 256 | $fieldData['model'] = $relation_field['model']; |
||
| 257 | |||
| 258 | $fieldData['parent'] = $this->getRelationModel($attributeKey, -1); |
||
| 259 | |||
| 260 | $relatedAttribute = Arr::last(explode('.', $attributeKey)); |
||
| 261 | $fieldData['values'][$relatedAttribute] = Arr::get($data, $attributeKey); |
||
| 262 | |||
| 263 | Arr::set($relationData, 'relations.'.$key, $fieldData); |
||
| 264 | } |
||
| 265 | } |
||
| 266 | return $relationData; |
||
| 267 | } |
||
| 268 | |||
| 269 | public function getOnlyRelationEntity($relation_field) |
||
| 288 | } |
||
| 289 | } |
||
| 290 |