所以我知道如果他们通过 Facebook 进行身份验证,大约有 50 万个问题是关于绕过编辑用户的设计密码要求。我保证我已经阅读了至少 75% 的内容,但仍然无法弄清楚这一点。
基本上,我在这里按照 Carl Edward 和 Laurie Laine 的 SO 回答 为 Devise 创建了一个注册控制器,如果用户正在编辑他们的帐户并且用户从 Facebook 登录,这将允许我绕过密码验证。使用以下代码,它最终不会引发错误,但我更新的属性都没有保存。
class RegistrationsController < Devise::RegistrationsController
def update_resource(resource, params)
if current_user.provider == "facebook"
params.delete("current_password")
resource.update_without_password(params)
else
resource.update_with_password(params)
end
end
def update
account_update_params = devise_parameter_sanitizer.sanitize(:account_update)
# required for settings form to submit when password is left blank
if account_update_params[:password].blank?
account_update_params.delete("password")
account_update_params.delete("password_confirmation")
end
@user = User.find(current_user.id)
if @user.update_attributes(account_update_params)
@user.update(account_update_params)
set_flash_message :notice, :updated
update_resource(@user,account_update_params)
# Sign in the user bypassing validation in case their password changed
sign_in @user, :bypass => true
redirect_to after_update_path_for(@user)
else
render "edit"
end
end
end
我真的不知道我做错了什么,但是每次我尝试将我的用户个人资料更新为由 Facebook 验证的登录用户时,我的个人资料或当我在控制台中查询数据库时都没有任何变化。