snipe-it/database/factories/ActionLogFactory.php

148 lines
5.1 KiB
PHP
Raw Normal View History

<?php
use App\Models\Actionlog;
use App\Models\Asset;
2017-10-07 04:25:35 -07:00
use App\Models\Company;
use App\Models\Location;
use App\Models\User;
2017-10-07 04:25:35 -07:00
$factory->define(Actionlog::class, function (Faker\Generator $faker) {
return [
2017-10-07 04:25:35 -07:00
'note' => 'Sample checkout from DB seeder!',
];
});
2017-10-18 04:04:05 -07:00
$factory->defineAs(App\Models\Actionlog::class, 'asset-upload', function ($faker) {
$asset = factory(App\Models\Asset::class)->create();
2017-10-18 04:04:05 -07:00
return [
'item_type' => get_class($asset),
'item_id' => 1,
'user_id' => 1,
'filename' => $faker->word,
'action_type' => 'uploaded',
2017-10-18 04:04:05 -07:00
];
});
2017-10-07 04:25:35 -07:00
$factory->defineAs(Actionlog::class, 'asset-checkout-user', function (Faker\Generator $faker) {
$target = User::inRandomOrder()->first();
2017-10-07 06:16:06 -07:00
$item = Asset::inRandomOrder()->RTD()->first();
$user_id = rand(1, 2); // keep it simple - make it one of the two superadmins
2017-10-07 04:25:35 -07:00
$asset = App\Models\Asset::where('id', $item->id)
->update(
[
'assigned_to' => $target->id,
2017-10-28 05:46:43 -07:00
'assigned_type' => App\Models\User::class,
'assigned_to' => $target->location_id,
2017-10-07 04:25:35 -07:00
]
);
return [
'created_at' => $faker->dateTimeBetween('-1 years', 'now', date_default_timezone_get()),
2017-10-07 04:25:35 -07:00
'user_id' => $user_id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => App\Models\Asset::class,
'target_id' => $target->id,
'target_type' => get_class($target),
];
});
$factory->defineAs(Actionlog::class, 'asset-checkout-location', function (Faker\Generator $faker) {
$target = Location::inRandomOrder()->first();
2017-10-07 06:16:06 -07:00
$item = Asset::inRandomOrder()->RTD()->first();
$user_id = rand(1, 2); // keep it simple - make it one of the two superadmins
2017-10-07 04:25:35 -07:00
$asset = App\Models\Asset::where('id', $item->id)
->update(
[
'assigned_to' => $target->id,
2017-10-28 05:46:43 -07:00
'assigned_type' => App\Models\Location::class,
'assigned_to' => $target->id,
2017-10-07 04:25:35 -07:00
]
);
return [
'created_at' => $faker->dateTimeBetween('-1 years', 'now', date_default_timezone_get()),
2017-10-07 04:25:35 -07:00
'user_id' => $user_id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => App\Models\Asset::class,
'target_id' => $target->id,
'target_type' => get_class($target),
];
});
2017-10-07 04:25:35 -07:00
// This doesn't work - we need to assign a seat
$factory->defineAs(Actionlog::class, 'license-checkout-asset', function (Faker\Generator $faker) {
2017-10-07 06:16:06 -07:00
$target = Asset::inRandomOrder()->RTD()->first();
2017-10-07 04:25:35 -07:00
$item = License::inRandomOrder()->first();
$user_id = rand(1, 2); // keep it simple - make it one of the two superadmins
return [
2017-10-07 04:25:35 -07:00
'user_id' => $user_id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => get_class($item),
'target_id' => $target->id,
'target_type' => get_class($target),
'created_at' => $faker->dateTime(),
'note' => $faker->sentence,
];
});
$factory->defineAs(Actionlog::class, 'accessory-checkout', function (Faker\Generator $faker) {
2017-10-07 06:16:06 -07:00
$target = Asset::inRandomOrder()->RTD()->first();
2017-10-07 04:25:35 -07:00
$item = Accessory::inRandomOrder()->first();
$user_id = rand(1, 2); // keep it simple - make it one of the two superadmins
return [
2017-10-07 04:25:35 -07:00
'user_id' => $user_id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => get_class($item),
'target_id' => $target->id,
'target_type' => get_class($target),
'created_at' => $faker->dateTime(),
'note' => $faker->sentence,
];
});
$factory->defineAs(Actionlog::class, 'consumable-checkout', function (Faker\Generator $faker) {
$company = factory(App\Models\Company::class)->create();
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
$item = factory(App\Models\Consumable::class)->create(['company_id' => $company->id]);
return [
'user_id' => $user->id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => get_class($item),
'target_id' => $target->id,
'target_type' => get_class($target),
'created_at' => $faker->dateTime(),
'note' => $faker->sentence,
'company_id' => $company->id,
];
});
$factory->defineAs(Actionlog::class, 'component-checkout', function (Faker\Generator $faker) {
$company = factory(App\Models\Company::class)->create();
$user = factory(App\Models\User::class)->create(['company_id' => $company->id]);
$target = factory(App\Models\User::class)->create(['company_id' => $company->id]);
$item = factory(App\Models\Component::class)->create(['company_id' => $company->id]);
return [
'user_id' => $user->id,
'action_type' => 'checkout',
'item_id' => $item->id,
'item_type' => get_class($item),
'target_id' => $target->id,
'target_type' => get_class($target),
'created_at' => $faker->dateTime(),
'note' => $faker->sentence,
'company_id' => $company->id,
];
});