在哪里devise“aut​​henticate_user!”方法的实现?

在哪里deviseauthenticate_user!实现authenticate_user! 方法?

我一直在找,迄今为止还没有find。

它在lib/devise/controllers/helpers.rb 1中,并且是dynamic生成的(用户只是其中一个可能的后缀):

 def self.define_helpers(mapping) #:nodoc: mapping = mapping.name class_eval <<-METHODS, __FILE__, __LINE__ + 1 def authenticate_#{mapping}!(opts={}) opts[:scope] = :#{mapping} warden.authenticate!(opts) if !devise_controller? || opts.delete(:force) end def #{mapping}_signed_in? !!current_#{mapping} end def current_#{mapping} @current_#{mapping} ||= warden.authenticate(:scope => :#{mapping}) end def #{mapping}_session current_#{mapping} && warden.session(:#{mapping}) end METHODS ActiveSupport.on_load(:action_controller) do helper_method "current_#{mapping}", "#{mapping}_signed_in?", "#{mapping}_session" end end 

当你添加到轨道,你通常会添加config/routes.rb

 devise_for :user 

这在Devise Mapper类中定义。

其中调用Devise.add_mapping为每个资源传递给devise_for

Devise模块的add_mapping方法在这里被定义,随后调用define_helpers ,它定义了在其他答案中讨论过的authenticate

这是宣布使用一些metaprogramming在这里 – https://github.com/plataformatec/devise/blob/master/lib/devise/controllers/helpers.rb#L46-49

 class_eval <<-METHODS, __FILE__, __LINE__ + 1 def authenticate_#{mapping}!(opts={}) opts[:scope] = :#{mapping} warden.authenticate!(opts) if !devise_controller? || opts.delete(:force) end ... end 
Interesting Posts