snipe-it/app/Http/Controllers/Api/CheckoutRequest.php

45 lines
1.9 KiB
PHP
Raw Normal View History

2024-10-17 10:45:49 -07:00
<?php
namespace App\Http\Controllers\Api;
use App\Actions\CheckoutRequests\CancelCheckoutRequestAction;
use App\Actions\CheckoutRequests\CreateCheckoutRequestAction;
2024-10-22 13:09:35 -07:00
use App\Exceptions\AssetNotRequestable;
2024-10-17 10:45:49 -07:00
use App\Helpers\Helper;
use App\Http\Controllers\Controller;
2024-10-22 13:09:35 -07:00
use App\Models\Asset;
use Illuminate\Auth\Access\AuthorizationException;
2024-10-17 10:45:49 -07:00
use Illuminate\Http\JsonResponse;
use Exception;
2024-10-17 10:45:49 -07:00
class CheckoutRequest extends Controller
{
2024-10-22 15:25:58 -07:00
public function store(Asset $asset): JsonResponse
2024-10-17 10:45:49 -07:00
{
2024-10-22 13:09:35 -07:00
try {
CreateCheckoutRequestAction::run($asset, auth()->user());
2024-10-22 13:09:35 -07:00
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/hardware/message.requests.success')));
} catch (AssetNotRequestable $e) {
return response()->json(Helper::formatStandardApiResponse('error', 'Asset is not requestable'));
} catch (AuthorizationException $e) {
return response()->json(Helper::formatStandardApiResponse('error', null, trans('general.insufficient_permissions')));
} catch (Exception $e) {
2024-10-22 13:09:35 -07:00
report($e);
return response()->json(Helper::formatStandardApiResponse('error', null, trans('general.something_went_wrong')));
2024-10-22 13:09:35 -07:00
}
2024-10-17 10:45:49 -07:00
}
2024-10-22 20:33:29 -07:00
public function destroy(Asset $asset): JsonResponse
{
2024-10-22 23:41:27 -07:00
try {
CancelCheckoutRequestAction::run($asset, auth()->user());
2024-10-22 23:41:27 -07:00
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/hardware/message.requests.canceled')));
} catch (AuthorizationException $e) {
return response()->json(Helper::formatStandardApiResponse('error', null, trans('general.insufficient_permissions')));
} catch (Exception $e) {
2024-10-22 23:41:27 -07:00
report($e);
return response()->json(Helper::formatStandardApiResponse('error', null, trans('general.something_went_wrong')));
2024-10-22 23:41:27 -07:00
}
2024-10-22 20:33:29 -07:00
}
2024-10-17 10:45:49 -07:00
}