我希望通过提供当前密码,新密码和新密码确认功能,使登录用户能够非常简单地更改密码。我已经实现了密码更新功能,但我正在努力使用:current_password验证(Wiki used for help)。
在我的控制器中,我使用了这个:
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实现上述目标的最佳方法是什么?
由于
答案 0 :(得分:0)
我已经找到了解决方案。如果有其他人遇到这个问题,这里是解决方案:
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