Hash :: check()有效,但Auth :: attempt失败(自定义用户模型)

时间:2014-12-19 19:16:47

标签: session authentication laravel login login-attempts

我正在学习Laravel 4,但现在我无法登录用户进入我的应用程序。 我阅读了多个教程来创建一个登录区域,但我无法创建会话。

解: laravel 4 custom named password column

您必须小心使用"密码"索引,无论你的表如何命名密码字段,它必须是"密码"在Auth ::尝试功能

用户数据库表:

  • idusuario,int(11)
  • login,varchar(45)
  • nombre,varchar(45)
  • contrasena,varchar(255)
  • status,bool
  • remember_token,varchar(100)
  • idperfil,int(11)

这是我的身份验证功能:

Route::post('login', function()
{
    if(Auth::attempt([ 'login' => Input::get('login'), 'contrasena' => Input::get('password') ]))
        return Redirect::intended('home');
    return Redirect::to('login')->with('response','Ingreso invalido');
}

我的自定义用户模型:

use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;

class Usuario extends Eloquent implements UserInterface, RemindableInterface {

    protected $table = 'usuario';
    protected $hidden = array('contrasena');
    protected $fillable = array('login', 'nombre', 'status', 'idperfil');
    protected $guarded = array('idusuario', 'contrasena');
    public $primaryKey = 'idusuario';
    public $timestamps = false;

    public function getAuthIdentifier()
    {
        return $this->login;
    }

    public function getAuthPassword()
    {
        return $this->contrasena;
    }

    public function getRememberToken()
    {
        return $this->remember_token;
    }

    public function setRememberToken($value)
    {
        $this->remember_token = $value;
    }

    public function getRememberTokenName()
    {
        return 'remember_token';
    }

    public function getReminderEmail()
    {
        return false;
    }

我的观点:

{{ Form::open(array('url' => 'login', 'role' => 'form')) }}
    <div class="response">{{ $response or '' }}</div>
    <div class="form-group">
        <label for="login">Usuario</label>
        <input type="text" class="form-control" id="login" name="login" placeholder="Ingrese su login">
    </div>
    <div class="form-group">
        <label for="password">Contraseña</label>
        <input type="password" class="form-control" id="password" name="password" placeholder="*********">
    </div>
    <button type="submit" class="btn btn-primary">Iniciar Sesión</button>
</form>

我一直在测试

dd(Auth::attempt([ 'login' => Input::get('login'), 'contrasena' => Input::get('password') ]));

但是我无法修复它,但是当我测试哈希检查以验证密码时,它返回true! 得到它的一些想法? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

对不起,我没看过第二个。 Jarek Tkaczyk在this post中回答的问题。 如果遇到同样的问题,请务必查看索引名称。