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