我想检查用户是否已登录。因此,我有一个类巫婆返回true或false。现在我想要一个中间件来检查用户是否已登录。
$app->get('/login', '\Controller\AccountController:loginGet')->add(Auth::class)->setName('login');
$app->post('/login', '\Controller\AccountController:loginPost')->add(Auth::class);
Auth Class
class Auth {
protected $ci;
private $account;
//Constructor
public function __construct(ContainerInterface $ci) {
$this->ci = $ci;
$this->account = new \Account($this->ci);
}
public function __invoke($request, \Slim\Http\Response $response, $next) {
if($this->account->login_check()) {
$response = $next($request, $response);
return $response;
} else {
//Redirect to Homepage
}
}
}
因此,当用户登录时,页面将正确呈现。但是当用户未自动生成时,我想重定向到主页。但是如何?!
$response->withRedirect($router->pathFor('home');
这不起作用!
答案 0 :(得分:9)
您需要return
回复。不要忘记request
和response
对象是不可变的。
return $response = $response->withRedirect(...);
我有一个类似的auth中间件,我就是这样做的,它还增加了一个403(未经授权的)标题。
$uri = $request->getUri()->withPath($this->router->pathFor('home'));
return $response = $response->withRedirect($uri, 403);
答案 1 :(得分:1)
根据tflight的答案,您需要执行以下操作以使一切按预期工作。我尝试将此作为修订提交,因为tflight的答案中提供的代码不能在开箱即用的框架上运行,但它被拒绝了,所以在单独的答案中提供它:
您需要在中间件中添加以下内容:
protected $router;
public function __construct($router)
{
$this->router = $router;
}
此外,在声明中间件时,您需要添加以下构造函数:
$app->getContainer()->get('router')
类似于:
$app->add(new YourMiddleware($app->getContainer()->get('router')));
如果没有这些更改,解决方案将无效,您将收到$ this->路由器不存在的错误。
根据这些更改,您可以使用tflight提供的代码
$uri = $request->getUri()->withPath($this->router->pathFor('home'));
return $response = $response->withRedirect($uri, 403);
答案 2 :(得分:0)
制作基本的$container
并将Class Middleware
{
protected $container;
public function __construct($container)
{
$this->container = $container;
}
public function __get($property)
{
if (isset($this->container->{$property})) {
return $this->container->{$property};
}
// error
}
}
注入其中,以便您的所有中间件都可以对其进行扩展。
Auth
请确保您的class Auth extends Middleware
{
public function __invoke($request, $response, $next)
{
if (!$this->account->login_check()) {
return $response->withRedirect($this->router->pathFor('home'));
}
return $next($request, $response);
}
}
中间件与基本中间件位于同一文件夹中,或者可以使用命名空间。
{{1}}
答案 3 :(得分:-3)
使用:
http_response_code(303);
header('Location: ' . $url);
exit;