mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
f432f98e12
* Fix Bug in User::generateFormattedNameFromFullName In a name "John Doe", this method would split it into "John" and " Doe", Leaving a space in the last name when importing to the database. Strip this space. * Cleanup/fix some item mapping. Also make some changes to the importer schema to allow for unit testing. Generate a default item mapping, and then merge that with any custom mappings. * Beginning work on importer unit tests. * Strip out testrun branches from importer. It added a lot of complexity and was not terribly useful with web importer as it stood, might reconsider down the road however. * Normalize the mapped keys when using custom field mappings. * Add test for custom asset import mapping. * Make all unit tests inherit from a new custom base. This baseclass currently calls Artisan::migrate() and seeds a Settings instance. This fixes unit tests after the autoincrement bits. * Store requestable as a boolean. Fixes some import oddities * Work on tests for accessory importer. * Test for custom mapping of accessory import, also adjust the internal field for purchase date. * Update default locale fallback for currency detection * Fix Reassignable in consumable as well. * More importer tests and fixes.
68 lines
2.2 KiB
PHP
68 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Importer;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\User;
|
|
|
|
class UserImporter extends ItemImporter
|
|
{
|
|
protected $users;
|
|
public function __construct($filename)
|
|
{
|
|
parent::__construct($filename);
|
|
// $this->users = User::all();
|
|
}
|
|
|
|
protected function handle($row)
|
|
{
|
|
parent::handle($row);
|
|
$this->createUserIfNotExists($row);
|
|
}
|
|
|
|
/**
|
|
* Create a user if a duplicate does not exist.
|
|
* @todo Investigate how this should interact with Importer::createOrFetchUser
|
|
*
|
|
* @author Daniel Melzter
|
|
* @since 4.0
|
|
*/
|
|
public function createUserIfNotExists(array $row)
|
|
{
|
|
// User Specific Bits
|
|
$this->item['username'] = $this->findCsvMatch($row, 'username');
|
|
$this->item['first_name'] = $this->findCsvMatch($row, 'first_name');
|
|
$this->item['last_name'] = $this->findCsvMatch($row, 'last_name');
|
|
$this->item['email'] = $this->findCsvMatch($row, 'user_email');
|
|
$this->item['phone'] = $this->findCsvMatch($row, 'phone_number');
|
|
$this->item['jobtitle'] = $this->findCsvMatch($row, 'jobtitle');
|
|
$this->item['employee_num'] = $this->findCsvMatch($row, 'employee_num');
|
|
$this->item['password'] = $this->tempPassword;
|
|
$user = User::where('username', $this->item['username'])->first();
|
|
if ($user) {
|
|
if (!$this->updating) {
|
|
$this->log('A matching User ' . $this->item["name"] . ' already exists. ');
|
|
return;
|
|
}
|
|
$this->log('Updating User');
|
|
// $user = $this->users[$userId];
|
|
$user->update($this->sanitizeItemForUpdating($user));
|
|
$user->save();
|
|
return;
|
|
}
|
|
$this->log("No matching user, creating one");
|
|
$user = new User();
|
|
$user->fill($this->sanitizeItemForStoring($user));
|
|
|
|
if ($user->save()) {
|
|
// $user->logCreate('Imported using CSV Importer');
|
|
$this->log("User " . $this->item["name"] . ' was created');
|
|
$user = null;
|
|
$this->item = null;
|
|
return;
|
|
}
|
|
$this->logError($user, 'User');
|
|
return;
|
|
}
|
|
}
|