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