设计,如何覆盖send_confirmation_instructions(Devise, how

2019-08-01 08:00发布

我试图重写方法“send_confirmation_instructions”,如下所示:

http://trackingrails.com/posts/devise-send-confirmation-mail-manually-or-delay-them

有:

def send_confirmation_instructions
    generate_confirmation_token! if self.confirmation_token.nil?
    ::Devise.mailer.delay.confirmation_instructions(self)
end

这似乎不再与色器件的最新版本。 该色器件文档演示如何重写一个控制器,但不是模型。 如何覆盖有一项模型有什么建议? 谢谢

Answer 1:

当您设置设计,你告诉它它的工作哪个模型上(如用户); 许多/它的大多数方法则适用于类。 所以这就是你要的东西覆盖。

下面是从设计代码的注释lib/devise/models/authenticatable.rb描述几乎正是你想做的事,如果我正确地读什么。

  # This is an internal method called every time Devise needs
  # to send a notification/mail. This can be overriden if you
  # need to customize the e-mail delivery logic. For instance,
  # if you are using a queue to deliver e-mails (delayed job,
  # sidekiq, resque, etc), you must add the delivery to the queue
  # just after the transaction was committed. To achieve this,
  # you can override send_devise_notification to store the
  # deliveries until the after_commit callback is triggered:
  #
  #     class User
  #       devise :database_authenticatable, :confirmable
  #
  #       after_commit :send_pending_notifications
  #
  #       protected
  #
  #       def send_devise_notification(notification)
  #         pending_notifications << notification
  #       end
  #
  #       def send_pending_notifications
  #         pending_notifications.each do |n|
  #           devise_mailer.send(n, self).deliver
  #         end
  #       end
  #
  #       def pending_notifications
  #         @pending_notifications ||= []
  #       end
  #     end
  #
  def send_devise_notification(notification)
    devise_mailer.send(notification, self).deliver
  end


Answer 2:

为什么不使用色器件,异步 ?

Usage

Devise >= 2.1.1

Include Devise::Async::Model to your Devise model

class User < ActiveRecord::Base
  devise :database_authenticatable, :confirmable # etc ...

  include Devise::Async::Model # should be below call to `devise`
end

Devise < 2.1.1

Set Devise::Async::Proxy as Devise's mailer in config/initializers/devise.rb:

# Configure the class responsible to send e-mails.
config.mailer = "Devise::Async::Proxy"

All

Set your queuing backend by creating config/initializers/devise_async.rb:

# Supported options: :resque, :sidekiq, :delayed_job
Devise::Async.backend = :resque


文章来源: Devise, how to override send_confirmation_instructions