mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
4971c54b05
Some checks are pending
Crowdin Action / upload-sources-to-crowdin (push) Waiting to run
Docker images (Alpine) / docker (push) Waiting to run
Docker images / docker (push) Waiting to run
Tests in MySQL / PHP ${{ matrix.php-version }} (8.1) (push) Waiting to run
Tests in MySQL / PHP ${{ matrix.php-version }} (8.2) (push) Waiting to run
Tests in MySQL / PHP ${{ matrix.php-version }} (8.3) (push) Waiting to run
Tests in SQLite / PHP ${{ matrix.php-version }} (8.1.1) (push) Waiting to run
Signed-off-by: snipe <snipe@snipe.net>
86 lines
2.5 KiB
PHP
86 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Accessory;
|
|
use App\Models\Location;
|
|
use App\Models\Supplier;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class AccessorySeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Accessory::truncate();
|
|
DB::table('accessories_checkout')->truncate();
|
|
|
|
if (! Location::count()) {
|
|
$this->call(LocationSeeder::class);
|
|
}
|
|
|
|
$locationIds = Location::all()->pluck('id');
|
|
|
|
if (! Supplier::count()) {
|
|
$this->call(SupplierSeeder::class);
|
|
}
|
|
|
|
$supplierIds = Supplier::all()->pluck('id');
|
|
|
|
$admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create();
|
|
|
|
Accessory::factory()->appleUsbKeyboard()->create([
|
|
'location_id' => $locationIds->random(),
|
|
'supplier_id' => $supplierIds->random(),
|
|
'user_id' => $admin->id,
|
|
]);
|
|
|
|
Accessory::factory()->appleBtKeyboard()->create([
|
|
'location_id' => $locationIds->random(),
|
|
'supplier_id' => $supplierIds->random(),
|
|
'user_id' => $admin->id,
|
|
]);
|
|
|
|
Accessory::factory()->appleMouse()->create([
|
|
'location_id' => $locationIds->random(),
|
|
'supplier_id' => $supplierIds->random(),
|
|
'user_id' => $admin->id,
|
|
]);
|
|
|
|
Accessory::factory()->microsoftMouse()->create([
|
|
'location_id' => $locationIds->random(),
|
|
'supplier_id' => $supplierIds->random(),
|
|
'user_id' => $admin->id,
|
|
]);
|
|
|
|
|
|
$src = public_path('/img/demo/accessories/');
|
|
$dst = 'accessories'.'/';
|
|
$del_files = Storage::files($dst);
|
|
|
|
foreach ($del_files as $del_file) { // iterate files
|
|
$file_to_delete = str_replace($src, '', $del_file);
|
|
Log::debug('Deleting: '.$file_to_delete);
|
|
try {
|
|
Storage::disk('public')->delete($dst.$del_file);
|
|
} catch (\Exception $e) {
|
|
Log::debug($e);
|
|
}
|
|
}
|
|
|
|
$add_files = glob($src.'/*.*');
|
|
foreach ($add_files as $add_file) {
|
|
$file_to_copy = str_replace($src, '', $add_file);
|
|
Log::debug('Copying: '.$file_to_copy);
|
|
try {
|
|
Storage::disk('public')->put($dst.$file_to_copy, file_get_contents($src.$file_to_copy));
|
|
} catch (\Exception $e) {
|
|
Log::debug($e);
|
|
}
|
|
}
|
|
}
|
|
}
|