mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
27 lines
619 B
PHP
27 lines
619 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Http\Request;
|
|
|
|
class Authenticate
|
|
{
|
|
public function __construct(protected Guard $auth)
|
|
{
|
|
}
|
|
|
|
public function handle(Request $request, Closure $next) // @phpcs:ignore
|
|
{
|
|
if ($this->auth->guest()) {
|
|
if ($request->ajax() || $request->wantsJson() || $request->route()->getName() === 'play') {
|
|
return response('Unauthorized.', 401);
|
|
} else {
|
|
return redirect()->guest('/');
|
|
}
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|