46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
use Illuminate\Auth\AuthenticationException;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Routing\Exceptions\InvalidSignatureException;
|
|
|
|
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->prepend(\App\Http\Middleware\AuthenticateWithCookie::class);
|
|
$middleware->prepend(\App\Http\Middleware\SetLocale::class);
|
|
$middleware->alias([
|
|
'verified' => \App\Http\Middleware\EnsureEmailIsVerified::class,
|
|
'not_suspended' => \App\Http\Middleware\EnsureAccountIsNotSuspended::class,
|
|
]);
|
|
})
|
|
->withExceptions(function (Exceptions $exceptions): void {
|
|
$exceptions->render(function (AuthenticationException $exception, Request $request) {
|
|
if (! $request->expectsJson()) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'message' => __('api.auth.unauthenticated'),
|
|
], 401);
|
|
});
|
|
|
|
$exceptions->render(function (InvalidSignatureException $exception, Request $request) {
|
|
if (! $request->expectsJson()) {
|
|
return null;
|
|
}
|
|
|
|
return response()->json([
|
|
'message' => __('api.auth.invalid_verification_link'),
|
|
], 403);
|
|
});
|
|
})->create();
|