Jer*_*nch 8 forms ruby-on-rails change-password devise
我想做两件事:
1)更改默认的"编辑用户表单" - 随设备提供 - 删除"密码"并允许更新其他字段而无需输入密码,即删除密码的默认验证.
2)创建一个单独的表单来更改密码
我有一切工作,只有一个问题,在单独的表格更新密码,我已经包括一个当前密码的字段.使用表单时,没有对当前密码进行验证,所以我改变了
@user.update_attributes(params[:user])
Run Code Online (Sandbox Code Playgroud)
至
@user.update_with_password(params[:user])
Run Code Online (Sandbox Code Playgroud)
这有效,但它提出了另一个问题.返回主表单中除了密码之外的所有其他详细信息,表单现在要求"当前密码".如果没有验证主表单上调用的当前密码,我怎样才能实现这一目的?
这是我的注册控制器:
def update
@user = User.find(current_user.id)
if @user.update_attributes(params[:user])
set_flash_message :notice, :updated
# Sign in the user bypassing validation in case his password changed
sign_in @user, :bypass => true
redirect_to after_update_path_for(@user)
else
clean_up_passwords(resource)
respond_with_navigational(resource) do
if params[:change_password] # or flash[:change_password]
render :change_password
else
render :edit
end
end
end
end
Run Code Online (Sandbox Code Playgroud)
谢谢!
我找到了解决问题的方法(虽然非常混乱):
def update
@user = User.find(current_user.id)
if params[:user][:password].blank?
if @user.update_attributes(params[:user])
set_flash_message :notice, :updated
# Sign in the user bypassing validation in case his password changed
sign_in @user, :bypass => true
redirect_to after_update_path_for(@user)
else
respond_with_navigational(resource) do
render :edit
end
end
else
if @user.update_with_password(params[:user])
set_flash_message :notice, :updated
# Sign in the user bypassing validation in case his password changed
sign_in @user, :bypass => true
redirect_to after_update_path_for(@user)
else
clean_up_passwords(resource)
respond_with_navigational(resource) do
render :change_password
end
end
end
Run Code Online (Sandbox Code Playgroud)
你能提出更好的解决方案吗?
你有兴趣查看Devise wiki吗?这两种情况都有例子
你应该看看@user.update_with_password(params[:user])
vs@user.update_attributes(params[:user])
接受的答案并没有完全解决这个问题.我认为,对于用户配置文件属性(如电子邮件,名字等)与密码的单独表单.以下是您需要做的事情:
首先,利用Devise :: RegistrationsController进行个人资料更新.
password
和password_confirmation
字段.如果它们没有出现,那么Devise会忽略这些.二,创建自己的控制器来管理密码的更新和自己的助手,要求current_password
,password
以及password_confirmation
对更新.
class PasswordsController < ApplicationController
before_filter :authenticate_user!
def edit
@user = current_user
end
def update
@user = User.find(current_user.id)
if @user.update_password_with_password(user_params)
# Sign in the user by passing validation in case their password changed
sign_in @user, :bypass => true
redirect_to edit_password_path, flash: { success: "Successfully updated password" }
else
render "edit"
end
end
private
def user_params
params.require(:user).permit(:current_password, :password, :password_confirmation)
end
end
Run Code Online (Sandbox Code Playgroud)
这是帮手,update_password_with_password
需要新的密码字段.
class User < ActiveRecord::Base
def update_password_with_password(params, *options)
current_password = params.delete(:current_password)
result = if valid_password?(current_password)
update_attributes(params, *options)
else
self.assign_attributes(params, *options)
self.valid?
self.errors.add(:current_password, current_password.blank? ? :blank : :invalid)
false
end
clean_up_passwords
result
end
end
Run Code Online (Sandbox Code Playgroud)