没有电子邮件重置设计密码 - Rails

时间:2013-05-12 20:16:16

标签: ruby-on-rails devise

所以我有一个应用程序,用户使用手机号码登录并通过短信/短信获取通知。这是一款移动应用。我通过发送电子邮件至“33333333@vtext.com”等通过应用程序编码器发送文本。

但是,我已经碰到了如何覆盖密码重置说明。我希望通过文本发送消息(我没有他们的电子邮件地址),但是如何覆盖设计来执行此操作?我可以让用户输入他们的号码,然后进行查找(我将联系路径存储为用户的字段,我在后端生成字符串,他们不必这样做)。

想法?

感谢一帮!

1 个答案:

答案 0 :(得分:1)

您可以通过更改

来完成此操作

passwords_controller

  def create
    assign_resource
    if @resource
      @resource.send_reset_password_instructions_email_sms
      errors = @resource.errors
      errors.empty? ? head(:no_content) : render_create_error(errors)
    else
      head(:not_found)
    end
  end

  private

  def assign_resource
    @email = resource_params[:email]
    phone_number = resource_params[:phone_number]
    if @email
      @resource = find_resource(:email, @email)
    elsif phone_number
      @resource = find_resource(:phone_number, phone_number)
    end
  end

  def find_resource(field, value)
    # overrides devise. To allow reset with other fields
    resource_class.where(field => value).first
  end

  def resource_params
    params.permit(:email, :phone_number)
  end

然后在用户模型中包含这个新关注点

module Concerns
  module RecoverableCustomized
    extend ActiveSupport::Concern

    def send_reset_password_instructions_email_sms
      raw_token = set_reset_password_token
      send_reset_password_instructions_by_email(raw_token) if email
      send_reset_password_instructions_by_sms(raw_token) if phone_number
    end

    private

    def send_reset_password_instructions_by_email(raw_token)
      send_reset_password_instructions_notification(raw_token)
    end

    def send_reset_password_instructions_by_sms(raw_token)
      TexterResetPasswordJob.perform_later(id, raw_token)
    end
  end
end

它基本上使用设计方法sent_reset_password_instructions使用的私有方法添加自己的短信逻辑。