3

我不确定这个问题是一般的 Rails 问题还是 Redmine 特有的问题。

有一个类 User,它有一个类方法 try_to_login。我编写了一个包含 method_alias_chain 的模块来包装该方法并提供附加功能。如果我进入控制台并调用 try_to_login,这可以正常工作。我的包装器将被执行,一切都很好。但是,当我在服务器上运行它时,只会调用 vanilla 方法。包装纸永远不会被触及。我在 vanilla 方法中添加了一个记录器命令,以确保它确实被调用了。

这是代码的简化版本:

require_dependency 'principal'
require_dependency 'user'
require 'login_attempt_count'

module UserLoginAttemptLimiterPatch

  def self.included(base)
    base.extend ClassMethods
    base.class_eval do
      class << self
        alias_method_chain :try_to_login, :attempt_limit
      end
    end
  end

  module ClassMethods
    def try_to_login_with_attempt_limit(login, password)

      user = try_to_login_without_attempt_limit login, password      

      #stuff here gets called via console but not via browser

      user
    end


    def authentication_failed(login)     
      #important code here
    end     

  end
end

User.send(:include, UserLoginAttemptLimiterPatch)

此外,加载插件时需要此模块。

4

1 回答 1

3

您如何要求该模块?如果您在开发模式下运行,用户类可能会在第一次请求后重新加载,这将清除您的补丁和 alias_method_chain。

您可以通过在 Dispatcher 中执行补丁(在每次代码重新加载时运行)来解决它:

require 'dispatcher'

Dispatcher.to_prepare do
  Issue.send(:include, MyMooPatch)
end

参考:http ://theadmin.org/articles/2009/04/13/how-to-modify-core-redmine-classes-from-a-plugin/

于 2010-02-17T03:48:01.277 回答