在使用SMS的rails上有ruby的任何帐户恢复宝石吗?

时间:2013-08-27 22:17:58

标签: ruby ruby-on-rails-3 passwords sms

我想知道是否有任何帐户恢复gem for ruby​​ on rails密码允许应用程序在用户忘记密码的情况下将用户发送到他的短信引脚以重置密码?谷歌搜索,但没有看到任何东西,想我会问这里,以防我的谷歌搜索字符串写得不好。

ruby on rails account recovery via sms

2 个答案:

答案 0 :(得分:2)

我不知道任何宝石,但这听起来像是一件非常难以实施的东西。正如vgoff所说,有很多短信服务可供您使用。

有些事情(尚未测试过):

class SMSReset < ActiveRecord::Base
  TOKEN_LENGTH = 4
  EXPIRY_TIME = 15.minutes

  belongs_to :user

  before_create :generate_token, :set_expiry

  def dispatch_sms!
    MySMSProvider.send_sms(to: user.mobile_number, body: "Your SMS token is: #{token}")
  end

  def has_not_expired?
    expires_at > Time.now
  end

  private

  def generate_token
    self[:token] = SecureRandom.hex[0..TOKEN_LENGTH - 1].downcase
  end

  def set_expiry
    self[:expires_at] = EXPIRY_TIME.from_now
  end
end


class PasswordResetController < ApplicationController
  def new
  end

  def create
    @user = User.where(email: params[:email]).first

    if @user
      sms_reset = @user.create_sms_reset!
      sms_reset.dispatch_sms!
      flash.now[:success] = "Please enter the code that was sent to your phone in the field below"
    else
      flash.now[:error] = "No user was found by that email address"
      render :new
    end
  end

  def validate_token
    sms_reset = SMSReset.where(user_id: params[:user_id], token: params[:token])

    if sms_reset.present? && sms_reset.has_not_expired?
      @user = sms_reset.user
      render :password_reset_form
    else
      flash.now[:error] = "Sorry, that code wasn't recognized"
      render :new
    end
  end
end

你会想要处理错误,并且还有改进的余地,但希望这个要点是有道理的。

答案 1 :(得分:0)

并非我直接了解,但https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=sms为短信互动提供了一些宝石。

这是我看的第一个地方之一,以及直接在github.com上搜索。 RubyForge是寻找宝石的另一个很好的信息来源。

https://rubyforge.org/search/?type_of_search=soft&words=sms&Search=Search

相关问题