dongzhilian0188 2017-06-27 06:18
浏览 73
已采纳

setPasswordAttribute用户模型螺丝内置auth,如何纠正?

I created CRUD for managing users in my app. Now, my issue is that I am using User::create(request()->all()), and I had implemented a setPasswordAttribute method within my model which automatically bcrypted the password, and it worked well...however...

I just discovered that this screws with some of Laravels built-in traits which the auth uses such as ResetsPasswords. So me implementing that setPasswordAttribute method actually caused the auth scaffolding to start double-bcrypting the password, causing it to fail when the user tried logging in after resetting their password.

For the sake of clean code, I'm wondering the best way I can correct this. I know I can just use save instead of create, but I'd like to keep my controllers small and tidy as possible.

What is the best way to handle this? I was thinking of simply bcrypting the value of the actual request input, but that seems hacky.

  • 写回答

1条回答 默认 最新

  • douman6245 2017-06-27 06:50
    关注

    You could use another name for this field in your html form, for example plain_password, and then use a mutator with this name that mutates the password field.
    This way, you don't have to write extra code and the Laravel code itself wont use this mutator.

    public function setPlainPassword($value) {
         $this->attributes['password'] = bcrypt($value);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了