mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
147 lines
3.9 KiB
PHP
147 lines
3.9 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Factories;
|
||
|
|
||
|
use App\Models\Import;
|
||
|
use Illuminate\Support\Str;
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
use Tests\Support\Importing;
|
||
|
|
||
|
/**
|
||
|
* @extends Factory<Import>
|
||
|
*/
|
||
|
class ImportFactory extends Factory
|
||
|
{
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected $model = Import::class;
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function definition()
|
||
|
{
|
||
|
return [
|
||
|
'name' => $this->faker->company,
|
||
|
'file_path' => Str::random().'.csv',
|
||
|
'filesize' => $this->faker->randomDigitNotNull(),
|
||
|
'field_map' => null,
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create an accessory import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function accessory()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\AccessoriesImportFileBuilder::new();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Accessories";
|
||
|
$attributes['import_type'] = 'Accessories';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create an asset import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function asset()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\AssetsImportFileBuilder::new();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Assets";
|
||
|
$attributes['import_type'] = 'asset';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create a component import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function component()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\ComponentsImportFileBuilder::times();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Components";
|
||
|
$attributes['import_type'] = 'component';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create a consumable import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function consumable()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\ConsumablesImportFileBuilder::new();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Consumables";
|
||
|
$attributes['import_type'] = 'consumable';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create a license import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function license()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\LicensesImportFileBuilder::new();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Licenses";
|
||
|
$attributes['import_type'] = 'license';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create a users import type.
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public function users()
|
||
|
{
|
||
|
return $this->state(function (array $attributes) {
|
||
|
$fileBuilder = Importing\UsersImportFileBuilder::new();
|
||
|
|
||
|
$attributes['name'] = "{$attributes['name']} Employees";
|
||
|
$attributes['import_type'] = 'user';
|
||
|
$attributes['header_row'] = $fileBuilder->toCsv()[0];
|
||
|
$attributes['first_row'] = $fileBuilder->firstRow();
|
||
|
|
||
|
return $attributes;
|
||
|
});
|
||
|
}
|
||
|
}
|