ユーザーがログインする必要があるアクションでbefore_filterを機能させようとしていますが、そうではないため、何かが間違っている必要があります。
ログイン/ログアウト、およびユーザーがログインしているかどうかの確認(signed_in?)には、「session_helper.rb」というヘルパーファイルを使用します。アクション内またはビューで使用すると正常に機能しますが、before_filerで使用している間は機能しません。ユーザーをログアウトして「/projects/ new」にアクセスしようとすると、それは可能ですが、そうではないはずです。
私は何が間違っているのですか?
プロジェクトコントローラー:
class ProjectsController < ApplicationController
before_filter :signed_in?, :except => [:index] // <-- doesn't prevent e.g. the action "new" to be executed
def new
@project = Project.new
@users = (current_user.blank? ? User.all : User.find(:all, :conditions => ["id != ?", current_user.id]))
end
def index
@projects = Project.all
if signed_in? // <-- works as it should
@users_projects = Project.where(:user_id => current_user.id)
end
end
... other actions ...
end
session_helper.rb
module SessionsHelper
def sign_in(user)
cookies.permanent[:remember_token] = user.remember_token
self.current_user = user
end
def signed_in?
!current_user.nil?
end
def current_user=(user)
@current_user = user
end
def current_user
@current_user ||= User.find_by_remember_token(cookies[:remember_token])
end
def sign_out
self.current_user = nil
cookies.delete(:remember_token)
end
end