createAccessoryIfNotExists($row); } /** * Create an accessory if a duplicate does not exist * * @author Daniel Melzter * @since 3.0 */ public function createAccessoryIfNotExists($row) { $accessory = Accessory::where('name', $this->item['name'])->first(); if ($accessory) { if (! $this->updating) { $this->log('A matching Accessory '.$this->item['name'].' already exists. '); return; } $this->log('Updating Accessory'); $this->item['model_number'] = $this->findCsvMatch($row, "model_number"); $accessory->update($this->sanitizeItemForUpdating($accessory)); $accessory->save(); return; } $this->log('No Matching Accessory, Creating a new one'); $accessory = new Accessory(); $this->item['model_number'] = $this->findCsvMatch($row, "model_number"); $accessory->fill($this->sanitizeItemForStoring($accessory)); //FIXME: this disables model validation. Need to find a way to avoid double-logs without breaking everything. // $accessory->unsetEventDispatcher(); if ($accessory->save()) { $accessory->logCreate('Imported using CSV Importer'); $this->log('Accessory '.$this->item['name'].' was created'); return; } $this->logError($accessory, 'Accessory'); } }