mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 10:04:13 -08:00
66aaafc4f2
Signed-off-by: snipe <snipe@snipe.net>
174 lines
5.7 KiB
PHP
174 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Importer;
|
|
|
|
use App\Models\AssetModel;
|
|
use App\Models\Depreciation;
|
|
use App\Models\CustomFieldset;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* When we are importing users via an Asset/etc import, we use createOrFetchUser() in
|
|
* Importer\Importer.php. [ALG]
|
|
*
|
|
* Class LocationImporter
|
|
*/
|
|
class AssetModelImporter extends ItemImporter
|
|
{
|
|
protected $models;
|
|
|
|
public function __construct($filename)
|
|
{
|
|
parent::__construct($filename);
|
|
}
|
|
|
|
protected function handle($row)
|
|
{
|
|
parent::handle($row);
|
|
$this->createAssetModelIfNotExists($row);
|
|
}
|
|
|
|
/**
|
|
* Create a model if a duplicate does not exist.
|
|
* @todo Investigate how this should interact with Importer::createModelIfNotExists
|
|
*
|
|
* @author A. Gianotto
|
|
* @since 6.1.0
|
|
* @param array $row
|
|
*/
|
|
public function createAssetModelIfNotExists(array $row)
|
|
{
|
|
|
|
$editingAssetModel = false;
|
|
$assetModel = AssetModel::where('name', '=', $this->findCsvMatch($row, 'name'))->first();
|
|
|
|
if ($assetModel) {
|
|
if (! $this->updating) {
|
|
$this->log('A matching Model '.$this->item['name'].' already exists');
|
|
return;
|
|
}
|
|
|
|
$this->log('Updating Model');
|
|
$editingAssetModel = true;
|
|
} else {
|
|
$this->log('No Matching Model, Create a new one');
|
|
$assetModel = new AssetModel();
|
|
}
|
|
|
|
// Pull the records from the CSV to determine their values
|
|
$this->item['name'] = trim($this->findCsvMatch($row, 'name'));
|
|
$this->item['category'] = trim($this->findCsvMatch($row, 'category'));
|
|
$this->item['manufacturer'] = trim($this->findCsvMatch($row, 'manufacturer'));
|
|
$this->item['min_amt'] = trim($this->findCsvMatch($row, 'min_amt'));
|
|
$this->item['model_number'] = trim($this->findCsvMatch($row, 'model_number'));
|
|
$this->item['eol'] = trim($this->findCsvMatch($row, 'eol'));
|
|
$this->item['notes'] = trim($this->findCsvMatch($row, 'notes'));
|
|
$this->item['fieldset'] = trim($this->findCsvMatch($row, 'fieldset'));
|
|
$this->item['depreciation'] = trim($this->findCsvMatch($row, 'depreciation'));
|
|
$this->item['created_by'] = auth()->id();
|
|
$this->item['requestable'] = trim(($this->fetchHumanBoolean($this->findCsvMatch($row, 'requestable'))) == 1) ? 1 : 0;
|
|
|
|
if (!empty($this->item['category'])) {
|
|
if ($category = $this->createOrFetchCategory($this->item['category'])) {
|
|
$this->item['category_id'] = $category;
|
|
}
|
|
}
|
|
if (!empty($this->item['manufacturer'])) {
|
|
if ($manufacturer = $this->createOrFetchManufacturer($this->item['manufacturer'])) {
|
|
$this->item['manufacturer_id'] = $manufacturer;
|
|
}
|
|
}
|
|
|
|
if (!empty($this->item['depreciation'])) {
|
|
if ($depreciation = $this->fetchDepreciation($this->item['depreciation'])) {
|
|
$this->item['depreciation_id'] = $depreciation;
|
|
}
|
|
}
|
|
|
|
if (!empty($this->item['fieldset'])) {
|
|
if ($fieldset = $this->createOrFetchCustomFieldset($this->item['fieldset'])) {
|
|
$this->item['fieldset_id'] = $fieldset;
|
|
}
|
|
}
|
|
|
|
Log::debug('Item array is: ');
|
|
Log::debug(print_r($this->item, true));
|
|
|
|
|
|
if ($editingAssetModel) {
|
|
Log::debug('Updating existing model');
|
|
$assetModel->update($this->sanitizeItemForUpdating($assetModel));
|
|
} else {
|
|
Log::debug('Creating model');
|
|
$assetModel->fill($this->sanitizeItemForStoring($assetModel));
|
|
}
|
|
|
|
if ($assetModel->save()) {
|
|
$this->log('AssetModel '.$assetModel->name.' created or updated from CSV import');
|
|
return $assetModel;
|
|
|
|
} else {
|
|
$this->log($assetModel->getErrors()->first());
|
|
$this->addErrorToBag($assetModel, $assetModel->getErrors()->keys()[0], $assetModel->getErrors()->first());
|
|
return $assetModel->getErrors();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Fetch an existing depreciation, or create new if it doesn't exist.
|
|
*
|
|
* We only do a fetch vs create here since Depreciations have additional fields required
|
|
* and cannot be created without them (months, for example.))
|
|
*
|
|
* @author A. Gianotto
|
|
* @since 7.1.3
|
|
* @param $depreciation_name string
|
|
* @return int id of depreciation created/found
|
|
*/
|
|
public function fetchDepreciation($depreciation_name) : ?int
|
|
{
|
|
if ($depreciation_name != '') {
|
|
|
|
if ($depreciation = Depreciation::where('name', '=', $depreciation_name)->first()) {
|
|
$this->log('A matching Depreciation '.$depreciation_name.' already exists');
|
|
return $depreciation->id;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Fetch an existing fieldset, or create new if it doesn't exist
|
|
*
|
|
* @author A. Gianotto
|
|
* @since 7.1.3
|
|
* @param $fieldset_name string
|
|
* @return int id of fieldset created/found
|
|
*/
|
|
public function createOrFetchCustomFieldset($fieldset_name) : ?int
|
|
{
|
|
if ($fieldset_name != '') {
|
|
$fieldset = CustomFieldset::where('name', '=', $fieldset_name)->first();
|
|
|
|
if ($fieldset) {
|
|
$this->log('A matching fieldset '.$fieldset_name.' already exists');
|
|
return $fieldset->id;
|
|
}
|
|
|
|
$fieldset = new CustomFieldset();
|
|
$fieldset->name = $fieldset_name;
|
|
|
|
if ($fieldset->save()) {
|
|
$this->log('Fieldset '.$fieldset_name.' was created');
|
|
|
|
return $fieldset->id;
|
|
}
|
|
$this->logError($fieldset, 'Fieldset');
|
|
}
|
|
|
|
return null;
|
|
}
|
|
} |