如您所见,auth
在流明容器中绑定到Illuminate\Support\Manager\AuthManager
. 所以,是的,你必须创建自己的中间件。这是您的案例的示例。
制作自己的中间件app/Http/Middleware
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
class Authenticate
{
/**
* The Guard implementation.
*
* @var Guard
*/
protected $auth;
/**
* Create a new filter instance.
*
* @param Guard $auth
* @return void
*/
public function __construct(Guard $auth)
{
$this->auth = $auth;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($this->auth->guest()) {
if ($request->ajax()) {
return response('Unauthorized.', 401);
} else {
// Lumen has no Redirector::guest(), this line is put the intended URL to a session like Redirector::guest() does
app('session')->put('url.intended', app('url')->full());
// Set your login URL here
return redirect()->to('auth/login', 302);
}
}
return $next($request);
}
}
在此之后,将您的中间件绑定到容器中。您可以在bootstrap/app.php
. 在 .之前添加这两行return
。
/*
|--------------------------------------------------------------------------
| Load The Application Routes
|--------------------------------------------------------------------------
|
| Next we will include the routes file so that they can all be added to
| the application. This will provide all of the URLs the application
| can respond to, as well as the controllers that may handle them.
|
*/
$app->group(['namespace' => 'App\Http\Controllers'], function ($app) {
require __DIR__.'/../app/Http/routes.php';
});
$app->bind('App\Http\Middleware\Authenticate', 'App\Http\Middleware\Authenticate');
$app->alias('App\Http\Middleware\Authenticate', 'middleware.auth');
现在,不要auth
在中间件中使用,而是使用middleware.auth
:
$app->group(['middleware' => 'middleware.auth'], function ($app) {
$app->get('/', ['as' => 'api', 'uses' => 'ApiController@index']);
});