mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
44683c784f
* Major code simplification of the importers. Move towards using Model::fill and Model::update rather than reinventing the wheel. This makes the updating/creating logic a lot clearer, and allows for the deletion of a lot of code. Also allows for supporting of more fields in the future really easily. * Cleanup constructors and use setters instead. * Set the LC_MONETARY locale, and use it to strip currency symbols in Helper::parseFloat() * Move licenseseat creation/deletion logic into an event handler on the model rather than the controller. * Move the logging of parsed values to array_smart_fetch rather than writing it out everywhere * Move to storing dates as carbon rather than strings. Allows for the parsing of more arbitrary strings from the importer * Add a license importer with support for checking out to users or assets. * Make a directory for sample/mock import csvs and populate it * Adjust how we store/retrieve dates to fix some issues the tests found.
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Importer;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Accessory;
|
|
|
|
class AccessoryImporter extends ItemImporter
|
|
{
|
|
protected $accessories;
|
|
public function __construct($filename)
|
|
{
|
|
parent::__construct($filename);
|
|
$this->accessories = Accessory::all();
|
|
}
|
|
|
|
protected function handle($row)
|
|
{
|
|
parent::handle($row); // TODO: Change the autogenerated stub
|
|
$this->createAccessoryIfNotExists();
|
|
}
|
|
|
|
/**
|
|
* Create an accessory if a duplicate does not exist
|
|
*
|
|
* @author Daniel Melzter
|
|
* @since 3.0
|
|
*/
|
|
public function createAccessoryIfNotExists()
|
|
{
|
|
$accessoryId = $this->accessories->search(function ($key) {
|
|
return strcasecmp($key->name, $this->item['name']) == 0;
|
|
});
|
|
if ($accessoryId !== false) {
|
|
if (!$this->updating) {
|
|
$this->log('A matching Accessory ' . $this->item["name"] . ' already exists. ');
|
|
return;
|
|
}
|
|
|
|
$this->log('Updating Accessory');
|
|
$accessory = $this->accessories[$accessoryId];
|
|
$accessory->update($this->sanitizeItemForUpdating($accessory));
|
|
if (!$this->testRun) {
|
|
$accessory->save();
|
|
}
|
|
return;
|
|
}
|
|
$this->log("No Matching Accessory, Creating a new one");
|
|
$accessory = new Accessory();
|
|
$accessory->fill($this->sanitizeItemForStoring($accessory));
|
|
|
|
if ($this->testRun) {
|
|
$this->log('TEST RUN - Accessory ' . $this->item["name"] . ' not created');
|
|
return;
|
|
}
|
|
|
|
if ($accessory->save()) {
|
|
$accessory->logCreate('Imported using CSV Importer');
|
|
$this->log('Accessory ' . $this->item["name"] . ' was created');
|
|
}
|
|
$this->jsonError($accessory, 'Accessory');
|
|
}
|
|
}
|