ApplicationController中的Authlogic,Namespace和私有方法

时间:2010-10-05 18:04:03

标签: ruby-on-rails namespaces ruby-on-rails-3 authlogic

我正在排除为什么我的ApplicationController的方法似乎无法在我的命名空间管理区域中工作,看起来当我在命名空间中时我无法访问我的ApplicationController的私有方法,这是对的吗?

如果是这样的话,在我的命名空间控制器中重用Authlogic的示例ApplicationController方法的最佳做法是什么?我可以轻松地将方法复制并粘贴到AdminController或其他东西,我也可以取消私有这些方法 - 但这似乎不是一个很好的方法。

以下是Authlogic(和我的)的示例ApplicationController:

class ApplicationController < ActionController::Base
  protect_from_forgery

  helper_method :current_user_session, :current_user

  private
    def current_user_session
      return @current_user_session if defined?(@current_user_session)
      @current_user_session = UserSession.find
    end

    def current_user
      return @current_user if defined?(@current_user)
      @current_user = current_user_session && current_user_session.user
    end  

    def require_user
      unless current_user
        store_location
        flash[:notice] = "You must be logged in to access this page"
        redirect_to new_user_session_url
        return false
      end
    end

    # and some more methods here...

end

这就是我在命名空间中继承它的方式:

class Admin::DashboardController < ApplicationController
  layout 'administration'

  require_user # fails

  def index
  end

end

感谢您的帮助,

·阿尔

2 个答案:

答案 0 :(得分:1)

你应该在Admin :: DashboardController中使用before_filter:

class Admin::DashboardController < ApplicationController
  layout 'administration'

  before_filter :require_user

  def index
  end
end

答案 1 :(得分:0)

我没有使用过authlogic,但也许你需要更改

require_user

before_filter :require_user