我试图使用Laravel auth开箱即用。身份验证不是问题,但我想检查用户是否已确认其电子邮件地址。
我如何让Laravel
检查表值confirmed
是否具有值1.
在config / auth.php中我设置了'driver' => 'database'
所以如果我理解了正确的文档,我就可以进行手动身份验证,我想我可以检查用户是否已经确认了他的帐户。
Laravel在哪里检查匹配的用户名和密码?
答案 0 :(得分:4)
如果您使用的是开箱即用的Laravel Auth,那么您需要查看为您设置的AuthController。
您会看到它使用特征AuthenticatesAndRegistersUsers向控制器添加行为。
在这个特性中,你会找到方法postLogin
。
您需要将自己的postLogin
添加到AuthController
,以覆盖此方法。您可以复制并粘贴初学者的方法。
现在去看看Laravel docs on authentication。向下滚动到它所说的“使用条件验证用户身份。”
if (Auth::attempt(['email' => $email, 'password' => $password, 'active' => 1]))
{
// The user is active, not suspended, and exists.
}
更改attempt()
方法中的postLogin
代码以包含条件,如示例所示。在您的情况下,您可能希望传递'confirmed' => 1
而不是活动的条件,具体取决于您在用户表中调用该字段的内容。
那应该让你去!
答案 1 :(得分:0)
创建中间件类:
<?php namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
class UserIsConfirmed {
/**
* Create the middleware.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
*/
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->user()->isConfirmed())
{
// User is confirmed
}
else
{
// User is not confirmed
}
return $next($request);
}
}
我不知道在用户是否被确认的情况下你想做什么,所以我将把实现留给你。