- Added localization support for API responses in English and Spanish. - Introduced a middleware to set the API locale based on the Accept-Language header. - Updated various exception messages and validation responses to use localized strings. - Created new language files for English and Spanish translations. - Refactored existing code to replace hardcoded messages with localized strings. - Added tests to verify localization functionality and response correctness.
93 lines
3.3 KiB
PHP
93 lines
3.3 KiB
PHP
<?php
|
|
|
|
use App\Domains\Ticket\Exceptions\TicketNotAvailableException;
|
|
use App\Http\Middleware\SetApiLocale;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
use Illuminate\Auth\AuthenticationException;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
return Application::configure(basePath: dirname(__DIR__))
|
|
->withRouting(
|
|
web: __DIR__.'/../routes/web.php',
|
|
api: __DIR__.'/../routes/api.php',
|
|
commands: __DIR__.'/../routes/console.php',
|
|
health: '/up',
|
|
)
|
|
->withMiddleware(function (Middleware $middleware): void {
|
|
$middleware->encryptCookies(except: [
|
|
'guest_token',
|
|
]);
|
|
$middleware->prepend(SetApiLocale::class);
|
|
})
|
|
->withExceptions(function (Exceptions $exceptions): void {
|
|
$exceptions->shouldRenderJsonWhen(
|
|
fn (Request $request) => $request->is('api/*'),
|
|
);
|
|
$exceptions->render(function (AuthenticationException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'auth.unauthenticated',
|
|
'message' => __('api.auth.unauthenticated'),
|
|
], 401);
|
|
});
|
|
$exceptions->render(function (AuthorizationException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'errors.forbidden',
|
|
'message' => __('api.errors.forbidden'),
|
|
], 403);
|
|
});
|
|
$exceptions->render(function (ModelNotFoundException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'errors.not_found',
|
|
'message' => __('api.errors.not_found'),
|
|
], 404);
|
|
});
|
|
$exceptions->render(function (TicketNotAvailableException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'ticket.not_available',
|
|
'message' => __('api.ticket.not_available'),
|
|
], 404);
|
|
});
|
|
$exceptions->render(function (NotFoundHttpException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'errors.not_found',
|
|
'message' => __('api.errors.not_found'),
|
|
], 404);
|
|
});
|
|
$exceptions->render(function (MethodNotAllowedHttpException $exception, Request $request) {
|
|
if (! $request->is('api/*')) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'code' => 'errors.method_not_allowed',
|
|
'message' => __('api.errors.method_not_allowed'),
|
|
], 405, $exception->getHeaders());
|
|
});
|
|
})->create();
|