我不确定这个问题是一般的 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)
此外,加载插件时需要此模块。