licenses = License::all(); } protected function handle($row) { // ItemImporter handles the general fetching. parent::handle($row); $this->createLicenseIfNotExists($row); } /** * Create the license if it does not exist. * * @author Daniel Melzter * @since 4.0 * @param array $row * @return License|mixed|null */ public function createLicenseIfNotExists(array $row) { $editingLicense = false; $license = new License; $license_id = $this->licenses->search(function ($key) { return strcasecmp($key->name, $this->item['name']) == 0; }); if ($license_id !== false) { if (!$this->updating) { $this->log('A matching License ' . $this->item['name'] . ' already exists'); return; } $this->log("Updating License"); $editingLicense = true; $license = $this->licenses[$license_id]; } else { $this->log("No Matching License, Creating a new one"); } $asset_tag = $this->item['asset_tag'] = $this->array_smart_fetch($row, 'asset_tag'); // used for checkout out to an asset. $this->item['expiration_date'] = $this->array_smart_fetch($row, 'expiration date'); $this->item['license_email'] = $this->array_smart_fetch($row, "licensed to email"); $this->item['license_name'] = $this->array_smart_fetch($row, "licensed to name"); $this->item['maintained'] = $this->array_smart_fetch($row, 'maintained'); $this->item['purchase_order'] = $this->array_smart_fetch($row, 'purchase_order'); $this->item['reassignable'] = $this->array_smart_fetch($row, 'reassignable'); $this->item['serial'] = $this->array_smart_fetch($row, "serial number"); $this->item['termination_date'] = $this->array_smart_fetch($row, 'termination_date'); $this->item['seats'] = $this->array_smart_fetch($row, 'seats'); if ($editingLicense) { $license->update($this->sanitizeItemForUpdating($license)); } else { $license->fill($this->sanitizeItemForStoring($license)); } if (!$editingLicense) { $this->licenses->add($license); } if (!$this->testRun) { if ($license->save()) { $license->logCreate('Imported using csv importer'); $this->log('License ' . $this->item["name"] . ' with serial number ' . $this->item['serial'] . ' was created'); // Lets try to checkout seats if the fields exist and we have seats. if ($license->seats > 0) { $user = $this->item['user']; $asset = Asset::where('asset_tag', $asset_tag)->first(); $targetLicense = $license->licenseSeats()->first(); if ($user) { $targetLicense->assigned_to = $user->id; if ($asset) { $targetLicense->asset_id = $asset->id; } $targetLicense->save(); } elseif ($asset) { $targetLicense->asset_id = $asset->id; $targetLicense->save(); } } return; } $this->jsonError($license, 'License "' . $this->item['name'].'"'); } } }