2012-05-22 29 views
5

私が書いているアプリでは、簡単な手作り認証(Railscast.comに記載)を使用しています。 Ryan BatesのNiftyGenerators gemのコードを使って、私は認証のためのいくつかの便利な方法を持つ認証モデルを持っています。このモジュールはapplication_controller.rbに含まれています。ログイン後に直前のURLにリダイレクトする - Rails

私が使用したい方法の1つはredirect_to_target_or_defaultです。私はこれが認証されたユーザーがいたページにリダイレクトする必要があることを知っていますが、このメソッドをどこに呼び出すべきかわかりません。誰かが私にこの方法の使い方についてのアイデアを与えることができたら、私はそれを高く評価します。

ControllerAuthenticaionモジュールのコード

module ControllerAuthentication 
    # Makes these methods helper methods in the controller that includes this module. 
    def self.included(controller) 
    controller.send :helper_method, 
     :current_admin, :logged_in?, 
     :redirect_to_target_or_default 
    end 

    def current_admin 
    @current_admin ||= Admin.find(session[:admin_id]) if session[:admin_id] 
    end 

    def logged_in? 
    current_admin 
    end 

    def login_required 
    unless logged_in? 
     store_target_location 
     redirect_to login_url, 
     :alert => "You must first log in before accessing this page." 
    end 
    end 
    def redirect_to_target_or_default(default, *args) 
    redirect_to(session[:return_to] || default, *args) 
    session[:return_to] = nil 
    end 
    def redirect_to_or_default(target, *args) 
    redirect_to(target || default, *args) 
    end 
    def store_target_location 
    session[:return_to] = request.url 
    end 
end 

答えて

3

あなたはライアンの宝石の中に発電機(複数可)を実行しましたか?

def create 
    @session = Session.new(params[:session]) 
    if @session.save 
    flash[:notice] = "Logged in successfully." 
    redirect_to_target_or_default(root_url) 
    else 
    render :action => 'new' 
    end 
end 

私はあなたがこのコードを読みながら、それを使用する方法のアイデアを得ることができると思う:それはそれでも、この方法であなたのためSessionController(link参照)を生成している必要があります。 :)

+0

私が探していたもの!ありがとう! – agentbanks217