Enables stateful API via Sanctum so the Vue SPA can call /api/* routes using cookie auth, without requiring an X-Api-Key header. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
625 B
PHP
30 lines
625 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
final class VerifyApiKey
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Closure(Request): (Response) $next
|
|
*/
|
|
public function handle(Request $request, Closure $next): Response
|
|
{
|
|
if (Auth::guard('sanctum')->check()) {
|
|
return $next($request);
|
|
}
|
|
|
|
if ($request->header('X-Api-Key') !== config('app.api_secret_key')) {
|
|
abort(403);
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|