2025-05-23 15:35:59 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
|
|
|
|
|
|
return Application::configure(basePath: dirname(__DIR__))
|
|
|
|
->withRouting(
|
2025-05-28 09:24:03 +08:00
|
|
|
api: __DIR__.'/../routes/api.php',
|
2025-05-23 15:35:59 +08:00
|
|
|
web: __DIR__.'/../routes/web.php',
|
|
|
|
commands: __DIR__.'/../routes/console.php',
|
|
|
|
health: '/up',
|
|
|
|
)
|
|
|
|
->withMiddleware(function (Middleware $middleware) {
|
|
|
|
$middleware->alias([
|
2025-09-02 11:10:44 +08:00
|
|
|
'api_token' => \App\Http\Middleware\ApiTokenMiddleware::class,
|
2025-05-23 15:35:59 +08:00
|
|
|
'role' => \Spatie\Permission\Middleware\RoleMiddleware::class,
|
|
|
|
'permission' => \Spatie\Permission\Middleware\PermissionMiddleware::class,
|
|
|
|
'role_or_permission' => \Spatie\Permission\Middleware\RoleOrPermissionMiddleware::class
|
|
|
|
]);
|
|
|
|
})
|
|
|
|
->withExceptions(function (Exceptions $exceptions) {
|
2025-05-28 09:24:03 +08:00
|
|
|
$exceptions->render(function (\Illuminate\Auth\AuthenticationException $e, $request) {
|
|
|
|
if ($request->expectsJson()) {
|
|
|
|
return \App\Http\Responses\ApiResponse::unauthorized();
|
|
|
|
}
|
|
|
|
// 其他非 JSON 請求的處理方式(可選)
|
|
|
|
return redirect()->guest(route('login'));
|
|
|
|
});
|
2025-05-23 15:35:59 +08:00
|
|
|
})->create();
|