2024-10-17 10:45:49 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
2024-12-03 15:51:12 -08:00
|
|
|
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;
|
2024-12-03 15:51:12 -08:00
|
|
|
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 {
|
2024-12-03 15:51:12 -08:00
|
|
|
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')));
|
2024-12-03 15:51:12 -08:00
|
|
|
} catch (Exception $e) {
|
2024-10-22 13:09:35 -07:00
|
|
|
report($e);
|
2024-12-03 15:51:12 -08:00
|
|
|
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 {
|
2024-12-03 15:51:12 -08:00
|
|
|
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')));
|
2024-12-03 15:51:12 -08:00
|
|
|
} 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);
|
2024-12-03 15:51:12 -08:00
|
|
|
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
|
|
|
}
|