2016-05-17 19:25:17 -07:00
< ? php
namespace App\Console\Commands ;
use Illuminate\Console\Command ;
use Illuminate\Support\Facades\Config ;
use Symfony\Component\Console\Input\InputOption ;
use Symfony\Component\Console\Input\InputArgument ;
use League\Csv\Reader ;
use App\Models\Accessory ;
use App\Models\Asset ;
use App\Models\AssetModel ;
use App\Models\Category ;
use App\Models\Company ;
use App\Models\Consumable ;
use App\Models\Location ;
use App\Models\Manufacturer ;
2016-05-24 15:14:01 -07:00
use App\Models\Statuslabel ;
2016-05-17 19:25:17 -07:00
use App\Models\Supplier ;
use App\Models\User ;
use DB ;
/**
* Class ObjectImportCommand
*/
class ObjectImportCommand extends Command {
/**
* The console command name .
*
* @ var string
*/
2016-05-18 20:38:19 -07:00
protected $name = 'snipeit:import' ;
2016-05-17 19:25:17 -07:00
/**
* The console command description .
*
* @ var string
*/
protected $description = 'Import Items from CSV' ;
/**
* Create a new command instance .
*
* @ return void
*/
public function __construct ()
{
parent :: __construct ();
}
/**
* Execute the console command .
*
* @ return mixed
*/
public function fire ()
{
$filename = $this -> argument ( 'filename' );
2016-05-25 17:34:54 -07:00
$logFile = $this -> option ( 'logfile' );
\Log :: useFiles ( $logFile );
2016-05-17 19:25:17 -07:00
if ( $this -> option ( 'testrun' )) {
$this -> comment ( '====== TEST ONLY Asset Import for ' . $filename . ' ====' );
$this -> comment ( '============== NO DATA WILL BE WRITTEN ==============' );
} else {
$this -> comment ( '======= Importing Assets from ' . $filename . ' =========' );
}
if ( ! ini_get ( " auto_detect_line_endings " )) {
ini_set ( " auto_detect_line_endings " , '1' );
}
$csv = Reader :: createFromPath ( $this -> argument ( 'filename' ));
$csv -> setNewline ( " \r \n " );
$results = $csv -> fetchAssoc ();
$newarray = NULL ;
foreach ( $results as $index => $arraytoNormalize ) {
$internalnewarray = array_change_key_case ( $arraytoNormalize );
$newarray [ $index ] = $internalnewarray ;
}
$this -> locations = Location :: All ([ 'name' , 'id' ]);
$this -> categories = Category :: All ([ 'name' , 'category_type' , 'id' ]);
$this -> manufacturers = Manufacturer :: All ([ 'name' , 'id' ]);
$this -> asset_models = AssetModel :: All ([ 'name' , 'modelno' , 'category_id' , 'manufacturer_id' , 'id' ]);
$this -> companies = Company :: All ([ 'name' , 'id' ]);
$this -> assets = Asset :: all ([ 'asset_tag' ]);
$this -> suppliers = Supplier :: All ([ 'name' ]);
$this -> accessories = Accessory :: All ([ 'name' ]);
$this -> consumables = Consumable :: All ([ 'name' ]);
2016-05-24 15:14:01 -07:00
$this -> status_labels = Statuslabel :: All ([ 'name' ]);
2016-05-17 19:25:17 -07:00
// Loop through the records
DB :: transaction ( function () use ( & $newarray ){
2016-05-25 18:19:12 -07:00
$item_type = strtolower ( $this -> option ( 'item-type' ));
2016-05-17 19:25:17 -07:00
foreach ( $newarray as $row ) {
// Let's just map some of these entries to more user friendly words
// Fetch general items here, fetch item type specific items in respective methods
/** @var Asset, License, Accessory, or Consumable $item_type */
$item_category = $this -> array_smart_fetch ( $row , " category " );
$item_company_name = $this -> array_smart_fetch ( $row , " company " );
$item_location = $this -> array_smart_fetch ( $row , " location " );
2016-05-24 15:14:01 -07:00
$item_status_name = $this -> array_smart_fetch ( $row , " status " );
2016-05-17 19:25:17 -07:00
$item [ " item_name " ] = $this -> array_smart_fetch ( $row , " item name " );
$item [ " purchase_date " ] = date ( " Y-m-d 00:00:01 " , strtotime ( $this -> array_smart_fetch ( $row , " purchase date " )));
$item [ " purchase_cost " ] = $this -> array_smart_fetch ( $row , " purchase cost " );
$item [ " order_number " ] = $this -> array_smart_fetch ( $row , " order number " );
$item [ " notes " ] = $this -> array_smart_fetch ( $row , " notes " );
$item [ " quantity " ] = $this -> array_smart_fetch ( $row , " quantity " );
$item [ " requestable " ] = $this -> array_smart_fetch ( $row , " requestable " );
2016-05-24 15:14:01 -07:00
2016-05-17 19:25:17 -07:00
2016-05-25 17:34:54 -07:00
$this -> current_assetId = $item [ " item_name " ];
$this -> log ( 'Category Name: ' . $item_category );
$this -> log ( 'Location: ' . $item_location );
$this -> log ( 'Purchase Date: ' . $item [ " purchase_date " ]);
$this -> log ( 'Purchase Cost: ' . $item [ " purchase_cost " ]);
$this -> log ( 'Company Name: ' . $item_company_name );
2016-05-17 19:25:17 -07:00
$item [ " user " ] = $this -> createOrFetchUser ( $row );
$item [ " location " ] = $this -> createOrFetchLocation ( $item_location );
2016-05-25 18:19:12 -07:00
$item [ " category " ] = $this -> createOrFetchCategory ( $item_category , $item_type );
2016-05-17 19:25:17 -07:00
$item [ " manufacturer " ] = $this -> createOrFetchManufacturer ( $row );
$item [ " company " ] = $this -> createOrFetchCompany ( $item_company_name );
2016-05-24 15:14:01 -07:00
$item [ " status_label " ] = $this -> createOrFetchStatusLabel ( $item_status_name );
2016-05-25 18:19:12 -07:00
switch ( $item_type ) {
2016-05-17 19:25:17 -07:00
case " asset " :
$this -> createAssetIfNotExists ( $row , $item );
break ;
case " accessory " :
$this -> createAccessoryIfNotExists ( $item );
break ;
case 'consumable' :
$this -> createConsumableIfNotExists ( $item );
break ;
}
2016-05-25 17:34:54 -07:00
$this -> log ( '------------- Action Summary ----------------' );
2016-05-17 19:25:17 -07:00
}
});
2016-05-25 17:34:54 -07:00
$this -> log ( '=====================================' );
if ( ! empty ( $this -> errors )) {
$this -> comment ( " The following Errors were encountered. " );
foreach ( $this -> errors as $error )
{
$this -> comment ( $error );
}
}
$this -> comment ( " " );
2016-05-17 19:25:17 -07:00
return true ;
}
2016-05-25 17:34:54 -07:00
// Tracks the current item for error messages
private $current_assetId ;
// An array of errors encountered while parsing
private $errors ;
public function error ( $string , $verbosity = null )
{
$errorString = 'Error: Item ' . $this -> current_assetId . ': ' . $string ;
$this -> errors [] = $errorString ;
if ( $this -> option ( 'verbose' ))
parent :: error ( $string , $verbosity );
}
/**
* Log a message to file , configurable by the -- log - file parameter .
* If a warning message is passed , we ' ll spit it to the console as well .
* @ param string $string
* @ param string $level
*/
private function log ( $string , $level = 'info' )
{
if ( $level === 'warning' )
{
\Log :: warning ( $string );
$this -> comment ( $string );
}
else {
\Log :: Info ( $string );
if ( $this -> option ( 'verbose' )) {
$this -> comment ( $string );
}
}
}
2016-05-17 19:25:17 -07:00
/**
* Check to see if the given key exists in the array , and trim excess white space before returning it
* @ param $array array
* @ param $key string
* @ param $default string
* @ return string
*/
public function array_smart_fetch ( Array $array , $key , $default = '' ){
2016-05-17 19:47:38 -07:00
return array_key_exists ( $key , $array ) ? e ( trim ( $array [ $key ])) : $default ;
2016-05-17 19:25:17 -07:00
}
2016-05-17 19:47:38 -07:00
private $asset_models ;
/**
* @ param array
* @ param $category Category
* @ param $manufacturer Manufacturer
* @ return Model
* @ internal param $asset_modelno string
2016-05-17 19:25:17 -07:00
*/
2016-05-17 19:47:38 -07:00
public function createOrFetchAssetModel ( array $row , $category , $manufacturer )
2016-05-17 19:25:17 -07:00
{
2016-05-17 19:47:38 -07:00
$asset_model_name = $this -> array_smart_fetch ( $row , " model name " );
$asset_modelno = $this -> array_smart_fetch ( $row , " model number " );
if ( empty ( $asset_model_name ))
$asset_model_name = 'Unknown' ;
if ( empty ( $asset_modelno ))
$asset_modelno = 0 ;
2016-05-25 17:34:54 -07:00
$this -> log ( 'Model Name: ' . $asset_model_name );
$this -> log ( 'Model No: ' . $asset_modelno );
2016-05-17 19:25:17 -07:00
2016-05-17 19:47:38 -07:00
foreach ( $this -> asset_models as $tempmodel ) {
if ( $tempmodel -> name === $asset_model_name
&& $tempmodel -> modelno == $asset_modelno
&& $tempmodel -> category_id == $category -> id
&& $tempmodel -> manufacturer_id == $manufacturer -> id )
{
2016-05-25 17:34:54 -07:00
$this -> log ( 'A matching model ' . $asset_model_name . ' with model number ' . $asset_modelno . ' already exists' );
2016-05-17 19:47:38 -07:00
return $tempmodel ;
2016-05-17 19:25:17 -07:00
}
}
2016-05-17 19:47:38 -07:00
$asset_model = new AssetModel ();
$asset_model -> name = $asset_model_name ;
$asset_model -> manufacturer_id = $manufacturer -> id ;
2016-05-18 20:33:55 -07:00
$asset_model -> modelno = $asset_modelno ;
2016-05-17 19:47:38 -07:00
$asset_model -> category_id = $category -> id ;
$asset_model -> user_id = 1 ;
2016-05-25 17:34:54 -07:00
2016-05-17 19:25:17 -07:00
2016-05-17 19:47:38 -07:00
if ( ! $this -> option ( 'testrun' )) {
if ( $asset_model -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> asset_models -> add ( $asset_model );
$this -> log ( 'Asset Model ' . $asset_model_name . ' with model number ' . $asset_modelno . ' was created' );
2016-05-17 19:47:38 -07:00
return $asset_model ;
2016-05-17 19:25:17 -07:00
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Asset Model: ' . $asset_model -> getErrors ());
2016-05-17 19:47:38 -07:00
return $asset_model ;
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> asset_models -> add ( $asset_model );
2016-05-17 19:47:38 -07:00
return $asset_model ;
2016-05-17 19:25:17 -07:00
}
2016-05-17 19:47:38 -07:00
2016-05-17 19:25:17 -07:00
}
private $categories ;
/**
* Finds a category with the same name and item type in the database , otherwise creates it
* @ param $asset_category string
* @ param $item_type string
* @ return Category
*/
public function createOrFetchCategory ( $asset_category , $item_type )
{
2016-05-17 19:47:38 -07:00
if ( empty ( $asset_category ))
$asset_category = 'Unnamed Category' ;
2016-05-17 19:25:17 -07:00
foreach ( $this -> categories as $tempcategory ) {
2016-05-17 19:47:38 -07:00
if ( $tempcategory -> name === $asset_category && $tempcategory -> category_type === $item_type ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'Category ' . $asset_category . ' already exists' );
2016-05-17 19:25:17 -07:00
return $tempcategory ;
}
}
$category = new Category ();
2016-05-17 19:47:38 -07:00
$category -> name = $asset_category ;
2016-05-17 19:25:17 -07:00
$category -> category_type = $item_type ;
$category -> user_id = 1 ;
2016-05-25 17:34:54 -07:00
2016-05-17 19:25:17 -07:00
if ( ! $this -> option ( 'testrun' )) {
if ( $category -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> categories -> add ( $category );
$this -> log ( 'Category ' . $asset_category . ' was created' );
2016-05-17 19:25:17 -07:00
return $category ;
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Category: ' . $category -> getErrors ());
return $category ;
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> categories -> add ( $category );
2016-05-17 19:25:17 -07:00
return $category ;
}
}
2016-05-17 19:47:38 -07:00
private $companies ;
/**
* @ param $asset_company_name string
* @ return Company
*/
public function createOrFetchCompany ( $asset_company_name )
{
foreach ( $this -> companies as $tempcompany ) {
if ( $tempcompany -> name === $asset_company_name ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'A matching Company ' . $asset_company_name . ' already exists' );
2016-05-17 19:47:38 -07:00
return $tempcompany ;
}
}
$company = new Company ();
$company -> name = $asset_company_name ;
if ( ! $this -> option ( 'testrun' )) {
if ( $company -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> companies -> add ( $company );
$this -> log ( 'Company ' . $asset_company_name . ' was created' );
2016-05-17 19:47:38 -07:00
return $company ;
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Company: ' . $company -> getErrors ());
2016-05-17 19:47:38 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> companies -> add ( $company );
2016-05-17 19:47:38 -07:00
return $company ;
}
}
2016-05-24 15:14:01 -07:00
private $status_labels ;
/**
* @ param string $asset_statuslabel_name
* @ return Company
*/
public function createOrFetchStatusLabel ( $asset_statuslabel_name )
{
if ( empty ( $asset_statuslabel_name ))
return ;
foreach ( $this -> status_labels as $tempstatus ) {
if ( $tempstatus -> name === $asset_statuslabel_name ) {
$this -> comment ( 'A matching Status ' . $asset_statuslabel_name . ' already exists' );
return $tempstatus ;
}
}
2016-05-17 19:47:38 -07:00
2016-05-24 15:14:01 -07:00
$status = new Statuslabel ();
$status -> name = $asset_statuslabel_name ;
$this -> status_labels -> add ( $status );
if ( ! $this -> option ( 'testrun' )) {
if ( $status -> save ()) {
$this -> comment ( 'Status ' . $asset_statuslabel_name . ' was created' );
return $status ;
} else {
$this -> comment ( 'Something went wrong! Status ' . $asset_statuslabel_name . ' was NOT created' );
return $status ;
}
} else {
return $status ;
}
}
2016-05-17 19:25:17 -07:00
private $manufacturers ;
/**
* Finds a manufacturer with matching name , otherwise create it .
* @ param $row array
* @ return Manufacturer
* @ internal param $asset_mfgr string
*/
2016-05-17 19:47:38 -07:00
2016-05-17 19:25:17 -07:00
public function createOrFetchManufacturer ( array $row )
{
$asset_mfgr = $this -> array_smart_fetch ( $row , " manufacturer " );
if ( empty ( $asset_mfgr )) {
$asset_mfgr = 'Unknown' ;
}
2016-05-25 17:34:54 -07:00
$this -> log ( 'Manufacturer ID: ' . $asset_mfgr );
2016-05-17 19:25:17 -07:00
foreach ( $this -> manufacturers as $tempmanufacturer ) {
2016-05-17 19:47:38 -07:00
if ( $tempmanufacturer -> name === $asset_mfgr ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'Manufacturer ' . $asset_mfgr . ' already exists' );
2016-05-17 19:25:17 -07:00
return $tempmanufacturer ;
}
}
//Otherwise create a manufacturer.
$manufacturer = new Manufacturer ();
2016-05-17 19:47:38 -07:00
$manufacturer -> name = $asset_mfgr ;
2016-05-17 19:25:17 -07:00
$manufacturer -> user_id = 1 ;
if ( ! $this -> option ( 'testrun' )) {
if ( $manufacturer -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> manufacturers -> add ( $manufacturer );
$this -> log ( 'Manufacturer ' . $manufacturer -> name . ' was created' );
2016-05-17 19:25:17 -07:00
return $manufacturer ;
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Manufacturer: ' . $manufacturer -> getErrors ());
2016-05-17 19:25:17 -07:00
return $manufacturer ;
}
} else {
2016-05-25 17:34:54 -07:00
$this -> manufacturers -> add ( $manufacturer );
2016-05-17 19:25:17 -07:00
return $manufacturer ;
}
}
2016-05-17 19:47:38 -07:00
/**
* @ var
2016-05-17 19:25:17 -07:00
*/
2016-05-17 19:47:38 -07:00
private $locations ;
2016-05-17 19:25:17 -07:00
/**
2016-05-17 19:47:38 -07:00
* Checks the DB to see if a location with the same name exists , otherwise create it
* @ param $asset_location string
* @ return Location
2016-05-17 19:25:17 -07:00
*/
2016-05-17 19:47:38 -07:00
public function createOrFetchLocation ( $asset_location )
2016-05-17 19:25:17 -07:00
{
2016-05-17 19:47:38 -07:00
foreach ( $this -> locations as $templocation ) {
if ( $templocation -> name === $asset_location ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'Location ' . $asset_location . ' already exists' );
2016-05-17 19:47:38 -07:00
return $templocation ;
2016-05-17 19:25:17 -07:00
}
}
2016-05-17 19:47:38 -07:00
// No matching locations in the collection, create a new one.
$location = new Location ();
2016-05-17 19:25:17 -07:00
2016-05-17 19:47:38 -07:00
if ( ! empty ( $asset_location )) {
$location -> name = $asset_location ;
$location -> address = '' ;
$location -> city = '' ;
$location -> state = '' ;
$location -> country = '' ;
$location -> user_id = 1 ;
2016-05-17 19:25:17 -07:00
2016-05-17 19:47:38 -07:00
if ( ! $this -> option ( 'testrun' )) {
if ( $location -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> locations -> add ( $location );
$this -> log ( 'Location ' . $asset_location . ' was created' );
2016-05-17 19:47:38 -07:00
return $location ;
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Location: ' . $location -> getErrors ());
2016-05-17 19:47:38 -07:00
return $location ;
}
2016-05-17 19:25:17 -07:00
} else {
2016-05-25 17:34:54 -07:00
$this -> locations -> add ( $location );
2016-05-17 19:47:38 -07:00
return $location ;
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> log ( 'No location given, so none created.' );
2016-05-17 19:47:38 -07:00
return $location ;
2016-05-17 19:25:17 -07:00
}
2016-05-17 19:47:38 -07:00
2016-05-17 19:25:17 -07:00
}
private $suppliers ;
/**
* @ param $row array
* @ return Supplier
*/
public function createOrFetchSupplier ( array $row )
{
$supplier_name = $this -> array_smart_fetch ( $row , " supplier " );
if ( empty ( $supplier_name ))
$supplier_name = 'Unknown' ;
foreach ( $this -> suppliers as $tempsupplier ) {
2016-05-17 19:47:38 -07:00
if ( $tempsupplier -> name === $supplier_name ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'A matching Company ' . $supplier_name . ' already exists' );
2016-05-17 19:25:17 -07:00
return $tempsupplier ;
}
}
$supplier = new Supplier ();
2016-05-17 19:47:38 -07:00
$supplier -> name = $supplier_name ;
2016-05-17 19:25:17 -07:00
$supplier -> user_id = 1 ;
2016-05-25 18:19:12 -07:00
2016-05-17 19:25:17 -07:00
if ( ! $this -> option ( 'testrun' )) {
if ( $supplier -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> suppliers -> add ( $supplier );
$this -> log ( 'Supplier ' . $supplier_name . ' was created' );
2016-05-17 19:25:17 -07:00
return $supplier ;
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Supplier: ' . $supplier -> getErrors ());
return $supplier ;
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> suppliers -> add ( $supplier );
2016-05-17 19:25:17 -07:00
return $supplier ;
}
}
2016-05-17 19:47:38 -07:00
/**
* Finds the user matching given data , or creates a new one if there is no match
* @ param $row array
* @ return User Model w / matching name
* @ internal param string $user_username Username extracted from CSV
* @ internal param string $user_email Email extracted from CSV
* @ internal param string $first_name
* @ internal param string $last_name
*/
public function createOrFetchUser ( $row )
{
$user_name = $this -> array_smart_fetch ( $row , " name " );
$user_email = $this -> array_smart_fetch ( $row , " email " );
$user_username = $this -> array_smart_fetch ( $row , " username " );
// A number was given instead of a name
if ( is_numeric ( $user_name )) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'User ' . $user_name . ' is not a name - assume this user already exists' );
2016-05-17 19:47:38 -07:00
$user_username = '' ;
2016-05-18 21:33:18 -07:00
$first_name = '' ;
$last_name = '' ;
2016-05-17 19:47:38 -07:00
2016-05-18 21:33:18 -07:00
// No name was given
2016-05-17 19:47:38 -07:00
} elseif ( empty ( $user_name )) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'No user data provided - skipping user creation, just adding asset' );
2016-05-17 19:47:38 -07:00
$first_name = '' ;
$last_name = '' ;
2016-05-18 21:33:18 -07:00
//$user_username = '';
2016-05-17 19:47:38 -07:00
} else {
$user_email_array = User :: generateFormattedNameFromFullName ( $this -> option ( 'email_format' ), $user_name );
$first_name = $user_email_array [ 'first_name' ];
$last_name = $user_email_array [ 'last_name' ];
2016-05-18 21:33:18 -07:00
if ( $user_email == '' ) {
$user_email = $user_email_array [ 'username' ] . '@' . config ( 'app.domain' );
2016-05-17 19:47:38 -07:00
}
2016-05-18 21:33:18 -07:00
if ( $user_username == '' ) {
if ( $this -> option ( 'username_format' ) == 'email' ) {
2016-05-17 19:47:38 -07:00
$user_username = $user_email ;
} else {
$user_name_array = User :: generateFormattedNameFromFullName ( $this -> option ( 'username_format' ), $user_name );
$user_username = $user_name_array [ 'username' ];
}
}
}
2016-05-25 17:34:54 -07:00
$this -> log ( " --- User Data --- " );
$this -> log ( 'Full Name: ' . $user_name );
$this -> log ( 'First Name: ' . $first_name );
$this -> log ( 'Last Name: ' . $last_name );
$this -> log ( 'Username: ' . $user_username );
$this -> log ( 'Email: ' . $user_email );
$this -> log ( '--- End User Data ---' );
2016-05-17 19:47:38 -07:00
if ( $this -> option ( 'testrun' ))
return new User ;
2016-05-18 21:33:18 -07:00
2016-05-17 19:47:38 -07:00
if ( ! empty ( $user_username )) {
if ( $user = User :: MatchEmailOrUsername ( $user_username , $user_email )
2016-05-18 21:33:18 -07:00
-> whereNotNull ( 'username' ) -> first ()) {
2016-05-24 19:40:52 -07:00
2016-05-25 17:34:54 -07:00
$this -> log ( 'User ' . $user_username . ' already exists' );
2016-05-24 19:40:52 -07:00
} else if (( $first_name != '' ) && ( $last_name != '' ) && ( $user_username != '' )) {
2016-05-18 21:33:18 -07:00
$user = new \App\Models\User ;
$password = substr ( str_shuffle ( " 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ " ), 0 , 20 );
$user -> first_name = $first_name ;
$user -> last_name = $last_name ;
$user -> username = $user_username ;
$user -> email = $user_email ;
$user -> password = bcrypt ( $password );
$user -> activated = 1 ;
if ( $user -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'User ' . $first_name . ' created' );
2016-05-18 21:33:18 -07:00
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'User: ' . $user -> getErrors ());
2016-05-18 21:33:18 -07:00
}
2016-05-24 19:40:52 -07:00
} else {
$user = new User ;
2016-05-17 19:47:38 -07:00
}
} else {
$user = new User ;
}
2016-05-18 21:33:18 -07:00
return $user ;
2016-05-17 19:47:38 -07:00
}
2016-05-17 19:25:17 -07:00
private $assets ;
/**
* @ param array $row
* @ param array $item
*/
public function createAssetIfNotExists ( array $row , array $item )
{
2016-05-24 15:14:01 -07:00
2016-05-17 19:25:17 -07:00
$asset_serial = $this -> array_smart_fetch ( $row , " serial number " );
$asset_tag = $this -> array_smart_fetch ( $row , " asset tag " );
2016-05-18 20:33:55 -07:00
$asset_image = $this -> array_smart_fetch ( $row , " image " );
2016-05-17 19:25:17 -07:00
// Check for the asset model match and create it if it doesn't exist
$asset_model = $this -> createOrFetchAssetModel ( $row , $item [ " category " ], $item [ " manufacturer " ]);
$supplier = $this -> createOrFetchSupplier ( $row );
2016-05-25 17:34:54 -07:00
$this -> current_assetId = $asset_tag ;
$this -> log ( 'Serial No: ' . $asset_serial );
$this -> log ( 'Asset Tag: ' . $asset_tag );
$this -> log ( 'Notes: ' . $item [ " notes " ]);
2016-05-17 19:25:17 -07:00
foreach ( $this -> assets as $tempasset ) {
2016-05-17 19:47:38 -07:00
if ( $tempasset -> asset_tag === $asset_tag ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'A matching Asset ' . $asset_tag . ' already exists' );
2016-05-17 19:25:17 -07:00
$this -> comment ( 'A matching Asset ' . $asset_tag . ' already exists' );
return ;
}
}
2016-05-24 15:14:01 -07:00
if ( empty ( $item [ " status_label " ])) {
$this -> comment ( " No status field found, defaulting to id 1. " );
$status_id = 1 ;
} else {
$status_id = $item [ " status_label " ] -> id ;
}
2016-05-17 19:25:17 -07:00
$asset = new Asset ();
2016-05-18 20:33:55 -07:00
$asset -> name = $item [ " item_name " ];
2016-05-17 19:25:17 -07:00
if ( $item [ " purchase_date " ] != '' ) {
$asset -> purchase_date = $item [ " purchase_date " ];
} else {
$asset -> purchase_date = NULL ;
}
if ( ! empty ( $item_purchase_cost )) {
2016-05-18 20:33:55 -07:00
$asset -> purchase_cost = number_format ( $item [ " purchase_cost " ], 2 );
2016-05-25 17:34:54 -07:00
$this -> log ( " Asset cost parsed: " . $asset -> purchase_cost );
2016-05-17 19:25:17 -07:00
} else {
$asset -> purchase_cost = 0.00 ;
}
2016-05-18 20:33:55 -07:00
$asset -> serial = $asset_serial ;
$asset -> asset_tag = $asset_tag ;
2016-05-25 17:34:54 -07:00
if ( $asset_model )
$asset -> model_id = $asset_model -> id ;
if ( $item [ " user " ])
$asset -> assigned_to = $item [ " user " ] -> id ;
if ( $item [ " location " ])
$asset -> rtd_location_id = $item [ " location " ] -> id ;
2016-05-17 19:25:17 -07:00
$asset -> user_id = 1 ;
$asset -> status_id = $status_id ;
2016-05-25 17:34:54 -07:00
if ( $item [ " company " ])
$asset -> company_id = $item [ " company " ] -> id ;
2016-05-17 19:25:17 -07:00
$asset -> order_number = $item [ " order_number " ];
2016-05-25 17:34:54 -07:00
if ( $supplier )
$asset -> supplier_id = $supplier -> id ;
2016-05-18 20:33:55 -07:00
$asset -> notes = $item [ " notes " ];
$asset -> image = $asset_image ;
2016-05-18 20:37:59 -07:00
$this -> assets -> add ( $asset );
2016-05-17 19:25:17 -07:00
if ( ! $this -> option ( 'testrun' )) {
if ( $asset -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'Asset ' . $item [ " item_name " ] . ' with serial number ' . $asset_serial . ' was created' );
2016-05-17 19:25:17 -07:00
$this -> comment ( 'Asset ' . $item [ " item_name " ] . ' with serial number ' . $asset_serial . ' was created' );
} else {
2016-05-25 17:34:54 -07:00
$this -> error ( 'Asset: ' . $asset -> getErrors ());
2016-05-17 19:25:17 -07:00
}
} else {
return ;
}
}
private $accessories ;
/**
* Create an accessory if a duplicate does not exist
* @ param $item array
*/
public function createAccessoryIfNotExists ( array $item )
{
2016-05-25 17:34:54 -07:00
$this -> log ( " Creating Accessory " );
2016-05-17 19:25:17 -07:00
foreach ( $this -> accessories as $tempaccessory ) {
if ( $tempaccessory -> name === $item [ " item_name " ] ) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'A matching Accessory ' . $item [ " item_name " ] . ' already exists. ' );
2016-05-17 19:25:17 -07:00
// FUTURE: Adjust quantity on import maybe?
return ;
}
}
$accessory = new Accessory ();
2016-05-18 20:33:55 -07:00
$accessory -> name = $item [ " item_name " ];
2016-05-25 17:34:54 -07:00
2016-05-17 19:25:17 -07:00
if ( ! empty ( $item [ " purchase_date " ])) {
$accessory -> purchase_date = $item [ " purchase_date " ];
} else {
$accessory -> purchase_date = NULL ;
}
if ( ! empty ( $item [ " purchase_cost " ])) {
$accessory -> purchase_cost = number_format ( e ( $item [ " purchase_cost " ]), 2 );
} else {
$accessory -> purchase_cost = 0.00 ;
}
2016-05-25 18:19:12 -07:00
if ( $item [ " location " ])
$accessory -> location_id = $item [ " location " ] -> id ;
2016-05-17 19:25:17 -07:00
$accessory -> user_id = 1 ;
2016-05-25 18:19:12 -07:00
if ( $item [ " company " ])
$accessory -> company_id = $item [ " company " ] -> id ;
2016-05-17 19:25:17 -07:00
$accessory -> order_number = $item [ " order_number " ];
2016-05-25 18:19:12 -07:00
if ( $item [ " category " ])
$accessory -> category_id = $item [ " category " ] -> id ;
2016-05-17 19:25:17 -07:00
//TODO: Implement
// $accessory->notes = e($item_notes);
$accessory -> requestable = filter_var ( $item [ " requestable " ], FILTER_VALIDATE_BOOLEAN );
//Must have at least zero of the item if we import it.
if ( $item [ " quantity " ] > - 1 ) {
$accessory -> qty = $item [ " quantity " ];
} else {
$accessory -> qty = 1 ;
}
if ( ! $this -> option ( 'testrun' )) {
if ( $accessory -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> log ( 'Accessory ' . $item [ " item_name " ] . ' was created' );
2016-05-25 18:19:12 -07:00
$this -> comment ( 'Accessory ' . $item [ " item_name " ] . ' was created' );
2016-05-17 19:25:17 -07:00
} else {
2016-05-25 18:19:12 -07:00
$this -> error ( 'Accessory: ' . $accessory -> getErrors ());
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> log ( 'TEST RUN - Accessory ' . $item [ " item_name " ] . ' not created' );
2016-05-17 19:25:17 -07:00
}
}
private $consumables ;
/**
* Create a consumable if a duplicate does not exist
* @ param $item array
*/
public function createConsumableIfNotExists ( array $item )
{
2016-05-25 17:34:54 -07:00
$this -> log ( " Creating Consumable " );
2016-05-17 19:25:17 -07:00
foreach ( $this -> consumables as $tempconsumable ) {
if ( $tempconsumable -> name === $item [ " item_name " ]) {
2016-05-25 18:19:12 -07:00
$this -> log ( " A matching consumable " . $item [ " item_name " ] . " already exists " );
2016-05-17 19:25:17 -07:00
//TODO: Adjust quantity if different maybe?
return ;
}
}
$consumable = new Consumable ();
2016-05-18 20:33:55 -07:00
$consumable -> name = $item [ " item_name " ];
2016-05-17 19:25:17 -07:00
if ( ! empty ( $item [ " purchase_date " ])) {
$consumable -> purchase_date = $item [ " purchase_date " ];
} else {
$consumable -> purchase_date = NULL ;
}
if ( ! empty ( $item [ " purchase_cost " ])) {
$consumable -> purchase_cost = number_format ( e ( $item [ " purchase_cost " ]), 2 );
} else {
$consumable -> purchase_cost = 0.00 ;
}
$consumable -> location_id = $item [ " location " ] -> id ;
$consumable -> user_id = 1 ; // TODO: What user_id should we use for imports?
$consumable -> company_id = $item [ " company " ] -> id ;
$consumable -> order_number = $item [ " order_number " ];
$consumable -> category_id = $item [ " category " ] -> id ;
// TODO:Implement
//$consumable->notes= e($item_notes);
$consumable -> requestable = filter_var ( $item [ " requestable " ], FILTER_VALIDATE_BOOLEAN );
if ( $item [ " quantity " ] > - 1 ) {
$consumable -> qty = $item [ " quantity " ];
} else {
$consumable -> qty = 1 ;
}
if ( ! $this -> option ( " testrun " )) {
if ( $consumable -> save ()) {
2016-05-25 17:34:54 -07:00
$this -> log ( " Consumable " . $item [ " item_name " ] . ' was created' );
2016-05-25 18:19:12 -07:00
$this -> comment ( " Consumable " . $item [ " item_name " ] . ' was created' );
2016-05-17 19:25:17 -07:00
} else {
2016-05-25 18:19:12 -07:00
$this -> error ( 'Consumable: ' . $consumable -> getErrors ());
2016-05-17 19:25:17 -07:00
}
} else {
2016-05-25 17:34:54 -07:00
$this -> log ( 'TEST RUN - Consumable ' . $item [ 'item_name' ] . ' not created' );
2016-05-17 19:25:17 -07:00
}
}
/**
* Get the console command arguments .
*
* @ return array
*/
protected function getArguments ()
{
return array (
array ( 'filename' , InputArgument :: REQUIRED , 'File for the CSV import.' ),
);
}
/**
* Get the console command options .
*
* @ return array
*/
protected function getOptions ()
{
return array (
array ( 'email_format' , null , InputOption :: VALUE_REQUIRED , 'The format of the email addresses that should be generated. Options are firstname.lastname, firstname, filastname' , null ),
array ( 'username_format' , null , InputOption :: VALUE_REQUIRED , 'The format of the username that should be generated. Options are firstname.lastname, firstname, filastname, email' , null ),
array ( 'testrun' , null , InputOption :: VALUE_NONE , 'If set, will parse and output data without adding to database' , null ),
2016-05-25 18:19:12 -07:00
array ( 'logfile' , null , InputOption :: VALUE_REQUIRED , 'The path to log output to. storage/logs/importer.log by default' , storage_path ( 'logs/importer.log' ) ),
array ( 'item-type' , null , InputOption :: VALUE_REQUIRED , 'Item Type To import. Valid Options are Asset, Consumable, Or Accessory' , 'Asset' )
2016-05-17 19:25:17 -07:00
);
}
}