Total Complexity | 80 |
Total Lines | 490 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
Complex classes like ExcelBulkLoader 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 ExcelBulkLoader, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
18 | class ExcelBulkLoader extends BulkLoader |
||
19 | { |
||
20 | private bool $useTransaction = false; |
||
21 | |||
22 | /** |
||
23 | * Delimiter character |
||
24 | * We use auto detection for csv because we can't ask the user what he is using |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $delimiter = 'auto'; |
||
29 | |||
30 | /** |
||
31 | * Enclosure character (Default: doublequote) |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | public $enclosure = '"'; |
||
36 | |||
37 | /** |
||
38 | * Identifies if the file has a header row. |
||
39 | * |
||
40 | * @var boolean |
||
41 | */ |
||
42 | public $hasHeaderRow = true; |
||
43 | |||
44 | /** |
||
45 | * @var array<string,string> |
||
46 | */ |
||
47 | public $duplicateChecks = [ |
||
48 | 'ID' => 'ID', |
||
49 | ]; |
||
50 | |||
51 | /** |
||
52 | * The uploaded file infos |
||
53 | * @var array<mixed> |
||
54 | */ |
||
55 | protected $uploadFile = null; |
||
56 | |||
57 | /** |
||
58 | * |
||
59 | * @var DataObject |
||
60 | */ |
||
61 | protected $singleton = null; |
||
62 | |||
63 | /** |
||
64 | * @var array<mixed> |
||
65 | */ |
||
66 | protected $db = []; |
||
67 | |||
68 | /** |
||
69 | * Type of file if not able to determine through uploaded file |
||
70 | * |
||
71 | * @var string |
||
72 | */ |
||
73 | protected $fileType = 'xlsx'; |
||
74 | |||
75 | /** |
||
76 | * @return BulkLoader_Result |
||
77 | */ |
||
78 | public function preview($filepath) |
||
79 | { |
||
80 | return $this->processAll($filepath, true); |
||
81 | } |
||
82 | |||
83 | /** |
||
84 | * Load the given file via {@link self::processAll()} and {@link self::processRecord()}. |
||
85 | * Optionally truncates (clear) the table before it imports. |
||
86 | * |
||
87 | * @return BulkLoader_Result See {@link self::processAll()} |
||
88 | */ |
||
89 | public function load($filepath) |
||
90 | { |
||
91 | // A small hack to allow model admin import form to work properly |
||
92 | if (!is_array($filepath) && isset($_FILES['_CsvFile'])) { |
||
93 | $filepath = $_FILES['_CsvFile']; |
||
94 | } |
||
95 | if (is_array($filepath)) { |
||
96 | $this->uploadFile = $filepath; |
||
97 | $filepath = $filepath['tmp_name']; |
||
98 | } |
||
99 | if (is_string($filepath)) { |
||
100 | $ext = pathinfo($filepath, PATHINFO_EXTENSION); |
||
101 | if ($ext == 'csv' || $ext == 'xlsx') { |
||
102 | $this->fileType = $ext; |
||
103 | } |
||
104 | } |
||
105 | |||
106 | // upload is resource intensive |
||
107 | Environment::increaseTimeLimitTo(3600); |
||
108 | Environment::increaseMemoryLimitTo('512M'); |
||
109 | |||
110 | if ($this->useTransaction) { |
||
111 | DB::get_conn()->transactionStart(); |
||
112 | } |
||
113 | |||
114 | try { |
||
115 | //get all instances of the to be imported data object |
||
116 | if ($this->deleteExistingRecords) { |
||
117 | if ($this->getCheckPermissions()) { |
||
118 | // We need to check each record, in case there's some fancy conditional logic in the canDelete method. |
||
119 | // If we can't delete even a single record, we should bail because otherwise the result would not be |
||
120 | // what the user expects. |
||
121 | /** @var DataObject $record */ |
||
122 | foreach (DataObject::get($this->objectClass) as $record) { |
||
123 | if (!$record->canDelete()) { |
||
124 | $type = $record->i18n_singular_name(); |
||
125 | throw new HTTPResponse_Exception( |
||
126 | _t(__CLASS__ . '.CANNOT_DELETE', "Not allowed to delete '{type}' records", ["type" => $type]), |
||
127 | 403 |
||
128 | ); |
||
129 | } |
||
130 | } |
||
131 | } |
||
132 | DataObject::get($this->objectClass)->removeAll(); |
||
133 | } |
||
134 | |||
135 | $result = $this->processAll($filepath); |
||
136 | |||
137 | if ($this->useTransaction) { |
||
138 | DB::get_conn()->transactionEnd(); |
||
139 | } |
||
140 | } catch (Exception $e) { |
||
141 | if ($this->useTransaction) { |
||
142 | DB::get_conn()->transactionRollback(); |
||
143 | } |
||
144 | $code = $e->getCode() ?: 500; |
||
145 | throw new HTTPResponse_Exception($e->getMessage(), $code); |
||
146 | } |
||
147 | return $result; |
||
148 | } |
||
149 | |||
150 | /** |
||
151 | * @return string |
||
152 | */ |
||
153 | protected function getUploadFileExtension() |
||
154 | { |
||
155 | if ($this->uploadFile) { |
||
156 | return pathinfo($this->uploadFile['name'], PATHINFO_EXTENSION); |
||
157 | } |
||
158 | return $this->fileType; |
||
159 | } |
||
160 | |||
161 | /** |
||
162 | * Merge a row with its headers |
||
163 | * |
||
164 | * @param array $row |
||
165 | * @param array $headers |
||
166 | * @param int $headersCount (optional) Limit to a specifc number of headers |
||
167 | * @return array |
||
168 | */ |
||
169 | protected function mergeRowWithHeaders($row, $headers, $headersCount = null) |
||
170 | { |
||
171 | if ($headersCount === null) { |
||
172 | $headersCount = count($headers); |
||
173 | } |
||
174 | $row = array_slice($row, 0, $headersCount); |
||
175 | $row = array_combine($headers, $row); |
||
176 | return $row; |
||
177 | } |
||
178 | |||
179 | /** |
||
180 | * @param string $filepath |
||
181 | * @param boolean $preview |
||
182 | */ |
||
183 | protected function processAll($filepath, $preview = false) |
||
184 | { |
||
185 | $this->extend('onBeforeProcessAll', $filepath, $preview); |
||
186 | |||
187 | $results = new BulkLoader_Result(); |
||
188 | $ext = $this->getUploadFileExtension(); |
||
189 | |||
190 | if (!is_readable($filepath)) { |
||
191 | throw new Exception("Cannot read $filepath"); |
||
192 | } |
||
193 | |||
194 | $opts = [ |
||
195 | 'separator' => $this->delimiter, |
||
196 | 'enclosure' => $this->enclosure, |
||
197 | 'extension' => $ext, |
||
198 | ]; |
||
199 | if ($this->hasHeaderRow) { |
||
200 | $opts['assoc'] = true; |
||
201 | } |
||
202 | |||
203 | $data = SpreadCompat::read($filepath, ...$opts); |
||
204 | |||
205 | $objectClass = $this->objectClass; |
||
206 | $objectConfig = $objectClass::config(); |
||
207 | $this->db = $objectConfig->db; |
||
208 | $this->singleton = singleton($objectClass); |
||
209 | |||
210 | foreach ($data as $row) { |
||
211 | $this->processRecord( |
||
212 | $row, |
||
213 | $this->columnMap, |
||
214 | $results, |
||
215 | $preview |
||
216 | ); |
||
217 | } |
||
218 | |||
219 | $this->extend('onAfterProcessAll', $result, $preview); |
||
220 | |||
221 | return $results; |
||
222 | } |
||
223 | |||
224 | /** |
||
225 | * |
||
226 | * @param array $record |
||
227 | * @param array $columnMap |
||
228 | * @param BulkLoader_Result $results |
||
229 | * @param boolean $preview |
||
230 | * |
||
231 | * @return int |
||
232 | */ |
||
233 | protected function processRecord( |
||
234 | $record, |
||
235 | $columnMap, |
||
236 | &$results, |
||
237 | $preview = false, |
||
238 | $makeRelations = false |
||
239 | ) { |
||
240 | // find existing object, or create new one |
||
241 | $existingObj = $this->findExistingObject($record, $columnMap); |
||
242 | $alreadyExists = (bool) $existingObj; |
||
243 | |||
244 | // If we can't edit the existing object, bail early. |
||
245 | if ($this->getCheckPermissions() && !$preview && $alreadyExists && !$existingObj->canEdit()) { |
||
246 | $type = $existingObj->i18n_singular_name(); |
||
247 | throw new HTTPResponse_Exception( |
||
248 | _t(BulkLoader::class . '.CANNOT_EDIT', "Not allowed to edit '{type}' records", ["type" => $type]), |
||
249 | 403 |
||
250 | ); |
||
251 | } |
||
252 | |||
253 | $class = $record['ClassName'] ?? $this->objectClass; |
||
254 | $obj = $existingObj ? $existingObj : new $class(); |
||
255 | |||
256 | // If we can't create a new record, bail out early. |
||
257 | if ($this->getCheckPermissions() && !$preview && !$alreadyExists && !$obj->canCreate()) { |
||
258 | $type = $obj->i18n_singular_name(); |
||
259 | throw new HTTPResponse_Exception( |
||
260 | _t(BulkLoader::class . '.CANNOT_CREATE', "Not allowed to create '{type}' records", ["type" => $type]), |
||
261 | 403 |
||
262 | ); |
||
263 | } |
||
264 | |||
265 | // first run: find/create any relations and store them on the object |
||
266 | // we can't combine runs, as other columns might rely on the relation being present |
||
267 | if ($makeRelations) { |
||
268 | foreach ($record as $fieldName => $val) { |
||
269 | // don't bother querying of value is not set |
||
270 | if ($this->isNullValue($val)) { |
||
271 | continue; |
||
272 | } |
||
273 | |||
274 | // checking for existing relations |
||
275 | if (isset($this->relationCallbacks[$fieldName])) { |
||
276 | // trigger custom search method for finding a relation based on the given value |
||
277 | // and write it back to the relation (or create a new object) |
||
278 | $relationName = $this->relationCallbacks[$fieldName]['relationname']; |
||
279 | if ($this->hasMethod($this->relationCallbacks[$fieldName]['callback'])) { |
||
280 | $relationObj = $this->{$this->relationCallbacks[$fieldName]['callback']}( |
||
281 | $obj, |
||
282 | $val, |
||
283 | $record |
||
284 | ); |
||
285 | } elseif ($obj->hasMethod($this->relationCallbacks[$fieldName]['callback'])) { |
||
286 | $relationObj = $obj->{$this->relationCallbacks[$fieldName]['callback']}( |
||
287 | $val, |
||
288 | $record |
||
289 | ); |
||
290 | } |
||
291 | if (!$relationObj || !$relationObj->exists()) { |
||
292 | $relationClass = $obj->hasOneComponent($relationName); |
||
293 | $relationObj = new $relationClass(); |
||
294 | //write if we aren't previewing |
||
295 | if (!$preview) { |
||
296 | $relationObj->write(); |
||
297 | } |
||
298 | } |
||
299 | $obj->{"{$relationName}ID"} = $relationObj->ID; |
||
300 | //write if we are not previewing |
||
301 | if (!$preview) { |
||
302 | $obj->write(); |
||
303 | $obj->flushCache(); // avoid relation caching confusion |
||
304 | } |
||
305 | } elseif (strpos($fieldName, '.') !== false) { |
||
306 | // we have a relation column with dot notation |
||
307 | list($relationName) = explode('.', $fieldName); |
||
308 | // always gives us an component (either empty or existing) |
||
309 | $relationObj = $obj->getComponent($relationName); |
||
310 | if (!$preview) { |
||
311 | $relationObj->write(); |
||
312 | } |
||
313 | $obj->{"{$relationName}ID"} = $relationObj->ID; |
||
314 | |||
315 | //write if we are not previewing |
||
316 | if (!$preview) { |
||
317 | $obj->write(); |
||
318 | $obj->flushCache(); // avoid relation caching confusion |
||
319 | } |
||
320 | } |
||
321 | } |
||
322 | } |
||
323 | |||
324 | |||
325 | // second run: save data |
||
326 | |||
327 | $db = $this->db; |
||
328 | |||
329 | foreach ($record as $fieldName => $val) { |
||
330 | // break out of the loop if we are previewing |
||
331 | if ($preview) { |
||
332 | break; |
||
333 | } |
||
334 | |||
335 | // Do not update ID if any exist |
||
336 | if ($fieldName == 'ID' && $obj->ID) { |
||
337 | continue; |
||
338 | } |
||
339 | |||
340 | // look up the mapping to see if this needs to map to callback |
||
341 | $mapping = ($columnMap && isset($columnMap[$fieldName])) ? $columnMap[$fieldName] |
||
342 | : null; |
||
343 | |||
344 | // Mapping that starts with -> map to a method |
||
345 | if ($mapping && strpos($mapping, '->') === 0) { |
||
346 | $funcName = substr($mapping, 2); |
||
347 | |||
348 | $this->$funcName($obj, $val, $record); |
||
349 | } elseif ($obj->hasMethod("import{$fieldName}")) { |
||
350 | // Try to call import_myFieldName |
||
351 | $obj->{"import{$fieldName}"}($val, $record); |
||
352 | } else { |
||
353 | // Map column to field |
||
354 | $usedName = $mapping ? $mapping : $fieldName; |
||
355 | |||
356 | // Basic value mapping based on datatype if needed |
||
357 | if (isset($db[$usedName])) { |
||
358 | switch ($db[$usedName]) { |
||
359 | case 'Boolean': |
||
360 | if ((string) $val == 'yes') { |
||
361 | $val = true; |
||
362 | } elseif ((string) $val == 'no') { |
||
363 | $val = false; |
||
364 | } |
||
365 | } |
||
366 | } |
||
367 | |||
368 | $obj->update(array($usedName => $val)); |
||
369 | } |
||
370 | } |
||
371 | |||
372 | // write record |
||
373 | if (!$preview) { |
||
374 | $obj->write(); |
||
375 | } |
||
376 | |||
377 | // @todo better message support |
||
378 | $message = ''; |
||
379 | |||
380 | // save to results |
||
381 | if ($existingObj) { |
||
382 | $results->addUpdated($obj, $message); |
||
383 | } else { |
||
384 | $results->addCreated($obj, $message); |
||
385 | } |
||
386 | |||
387 | $objID = $obj->ID; |
||
388 | |||
389 | $obj->destroy(); |
||
390 | |||
391 | // memory usage |
||
392 | unset($existingObj); |
||
393 | unset($obj); |
||
394 | |||
395 | return $objID; |
||
396 | } |
||
397 | |||
398 | /** |
||
399 | * Find an existing objects based on one or more uniqueness columns |
||
400 | * specified via {@link self::$duplicateChecks}. |
||
401 | * |
||
402 | * @param array $record CSV data column |
||
403 | * @param array $columnMap |
||
404 | * |
||
405 | * @return DataObject|false |
||
406 | */ |
||
407 | public function findExistingObject($record, $columnMap = []) |
||
459 | } |
||
460 | |||
461 | /** |
||
462 | * Determine whether any loaded files should be parsed with a |
||
463 | * header-row (otherwise we rely on {@link self::$columnMap}. |
||
464 | * |
||
465 | * @return boolean |
||
466 | */ |
||
467 | public function hasHeaderRow() |
||
470 | } |
||
471 | |||
472 | /** |
||
473 | * Set file type as import |
||
474 | * |
||
475 | * @param string $fileType |
||
476 | * @return void |
||
477 | */ |
||
478 | public function setFileType($fileType) |
||
479 | { |
||
480 | $this->fileType = $fileType; |
||
481 | } |
||
482 | |||
483 | /** |
||
484 | * Get file type (default is xlsx) |
||
485 | * |
||
486 | * @return string |
||
487 | */ |
||
488 | public function getFileType() |
||
489 | { |
||
490 | return $this->fileType; |
||
491 | } |
||
492 | |||
493 | /** |
||
494 | * If true, will wrap everything in a transaction |
||
495 | */ |
||
496 | public function getUseTransaction(): bool |
||
499 | } |
||
500 | |||
501 | /** |
||
502 | * Determines if everything will be wrapped in a transaction |
||
503 | */ |
||
504 | public function setCheckPermissions(bool $value): ExcelBulkLoader |
||
508 | } |
||
509 | } |
||
510 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths