Cancanは、ユーザーがログインしているときは正常に機能しています。ただし、ユーザーが「ゲスト」の場合は、写真の親投稿に制限employees_only
フラグが設定されている写真ではなく、一部の写真を表示できるようにしたいと思います。
問題はemployee_only
、配列内の投稿に関連する写真がある場合@photos
、CancanがスローすることCanCan::AccessDenied in PhotosController#index
です。しかしload_and_authorize_resource :photo, :through => :event
、コントローラーでそれらの無許可のレコードをから排除するべきではありません@photos
か?
ability.rb
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user (not logged in)
if user.role? :admin
can :manage, :all
elsif user.role? :moderator
can :read, :all
can :manage, Post
can :manage, Event
elsif user.role? :employee
can :read, :all
can :create, Post
can :update, Post, :user_id => user.id
can :destroy, Post, :user_id => user.id
can :update, User, :id => user.id
can :create, Photo
can :update, Photo, :id => user.id
can :destroy, Photo, :id => user.id
else
can :read, :all
cannot :read, Post, :employee_only => true
cannot :read, Photo, :post => { :employee_only => true } ## <- problem?
end
end
end
event.rb:
class Event < ActiveRecord::Base
Event has_many :posts
Event has_many :photos, :through => :posts
post.rb
class Post < ActiveRecord::Base
belongs_to :user
belongs_to :event
has_many :photos, :dependent => :destroy
photos_controller:
class PhotosController < ApplicationController
load_and_authorize_resource :event ## <- problem?
load_and_authorize_resource :photo, :through => :event ## <- problem?
def index
# @event = Event.find(params[:event_id])
# @photos = @event.photos.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @events }
end
end
...
user.rb#この問題のトラブルシューティングにこれが必要かどうかはわかりませんが、JIC:
class User < ActiveRecord::Base
attr_protected :roles_mask
has_many :posts
has_many :photos, :through => :posts
...