我有一个关于在Laravel中使用Sentry更新用户信息的问题。
我在控制器中得到了这个:
public function update()
{
try{
$user = $this->sentry->getUser();
$user->username = $this->input->get('username');
$user->first_name = $this->input->get('first_name');
$user->last_name = $this->input->get('last_name');
$user->email = $this->input->get('email');
$user->description = $this->input->get('description');
if (!$this->hash->check($this->input->get('password'), $user->password))
{
$user->password = $user->password;
} else {
$user->password = $this->input->get('password');
}
if($user->save())
{
return $this->redirect->to('admin');
} else {
return $this->redirect->to('admin/'.$user->username.'/');
}
}
catch (Exception $e)
{
return $this->redirect->to('user/'.$user->username.'/profile/edit')->withErrors(array('login'=> $e->getMessage()));
}
}
,它将在提交表单时处理。但是,如果我没有在输入字段中填写密码,而是更新用户信息的其他内容并提交表单。它还采用'空'密码字段,并使其完全不同,因为我不能再使用原始密码登录了。
我知道hash->check
部分有问题,但是什么?我不知道。我很感激你的帮助。
编辑:我试着检查,密码字段是否已填写,如果未填写,保持密码不变,如果已填写,检查是否与当前密码不同,如果不同,更改它,否则保持
change
if (!$this->hash->check($this->input->get('password'), $user->password))
{
$user->password = $user->password;
} else {
$user->password = $this->input->get('password');
}
if ($this->input->get('password'))
{
$user->password = $this->input->get('password');
}