1

在我的应用程序中,我同时使用了DeviseReform Gems。

我想让登录用户通过提供他们的当前密码、新密码和新密码确认来非常简单地更改他们的密码。我已经实现了密码更新功能,但我正在努力解决 :current_password 验证(用于帮助的 Wiki)。

在我的控制器中,我正在使用这个:

def update_password_self
  if @user.validate( params[:user] )
    @user.save
    # Sign in the user by passing validation in case their password changed
    sign_in @user.model, :bypass => true
    respond_with(@user, :location => user_self_platform_profile_path( id: @user.id, anchor: "#user_self_settings"))
  else
    render "edit_password_self"
  end
end

在我的 UserForm Form 类中,我有以下内容:

property    :current_password,
            validates: {
              presence:                     true,
              validate_this_password:       true
            }

验证此密码是一个自定义验证器,如下所示:

class ValidateThisPasswordValidator < ActiveModel::EachValidator
 def validate_each(record, attribute, value)
  unless current_user.valid_password?(value)
    record.errors[attribute] << (options[:message] || "password not right.")
  end
 end
end

current_user 对象不可用于表单对象,因此返回错误。使用这两个 GEMS 实现上述目标的最佳方法是什么?

谢谢

4

1 回答 1

1

我已经想出了解决方案。万一其他人遇到这个问题,这里是解决方案:

class ValidateThisPasswordValidator < ActiveModel::EachValidator
 def validate_each(record, attribute, value)
  unless User.find(record.id).valid_password?(value)
    record.errors[attribute] << (options[:message] || "password not right.")
  end
 end
end
于 2015-04-11T13:24:56.997 回答