snipe-it/app/Actions/CheckoutRequests/CreateCheckoutRequest.php
2024-10-22 20:48:27 -05:00

63 lines
1.7 KiB
PHP

<?php
namespace App\Actions\CheckoutRequests;
use App\Exceptions\AssetNotRequestable;
use App\Exceptions\ThereIsNoUser;
use App\Models\Actionlog;
use App\Models\Asset;
use App\Models\Company;
use App\Models\Setting;
use App\Models\User;
use App\Notifications\RequestAssetCancelation;
use App\Notifications\RequestAssetNotification;
use Illuminate\Auth\Access\AuthorizationException;
class CreateCheckoutRequest
{
/**
* @throws AssetNotRequestable
* @throws AuthorizationException
*/
public static function run(Asset $asset, User $user): string
{
if (is_null(Asset::RequestableAssets()->find($asset->id))) {
throw new AssetNotRequestable($asset);
}
if (!Company::isCurrentUserHasAccess($asset)) {
throw new AuthorizationException();
}
$data['item'] = $asset;
$data['target'] = $user;
$data['item_quantity'] = 1;
$settings = Setting::getSettings();
$logaction = Actionlog::create([
'target_id' => $data['asset_id'] = $asset->id,
'item_type' => $data['item_type'] = Asset::class,
'created_at' => $data['requested_date'] = date('Y-m-d H:i:s'),
'user_id' => $data['user_id'] = auth()->id(),
'target_type' => User::class,
'location_id' => $user->location_id ?? null,
]);
$logaction->logaction('requested');
$asset->request();
$asset->increment('requests_counter', 1);
try {
$settings->notify(new RequestAssetNotification($data));
} catch (\Exception $e) {
\Log::warning($e);
}
return true; // or $asset, or whatever
}
public function doSomethingElse()
{
}
}