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);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!