i have rails app that contains following models - User, Blog, Post, BlogMembership.

class BlogMembership < ActiveRecord::Base
  belongs_to :user
  belongs_to :blog

  # Membership types:
  SUBSCRIBER = 0
  AUTHOR = 1
  MODERATOR = 2
end

class Blog < ActiveRecord::Base
  has_many :posts
  has_many :memberships, :class_name => "BlogMembership"

  # Blog memberships
  def subscribers
    self.memberships.where(:membership_type => [BlogMembership::SUBSCRIBER, BlogMembership::AUTHOR, BlogMembership::MODERATOR]).collect(&:user)
  end

  def authors
    self.memberships.where(:membership_type => [BlogMembership::AUTHOR, BlogMembership::MODERATOR]).collect(&:user)
  end

  def moderators
    self.memberships.where(:membership_type =>  BlogMembership::MODERATOR).collect(&:user)
  end
end

In Ability class (because i use cancan for access restriction) i try to limit access of users and moderators to the blogs, but with following rule

if user.is? :moderator
  can :manage, Post do |post|
    post.blog.moderators.include? user
  end
end

all users can send Posts to the any blog.

Could you tell me please - how to properly configure rule in Ability class for following relations scheme?

link|improve this question

57% accept rate
In controller, how are you checking if user has permission or not to send posts? – DNNX Nov 30 '10 at 13:58
feedback

1 Answer

And if you try this syntax?

can :manage, Post do |action, post|
    post.blog.moderators.include? user
end
link|improve this answer
not working :(( – Alexey Poimtsev Nov 30 '10 at 4:51
Can you post ability.rb ? – David Sulc Nov 30 '10 at 14:10
pastie.org/1337785 – Alexey Poimtsev Dec 1 '10 at 9:02
And you're certain post.blog.moderators doesn't include the user you're testing with (i.e. check the output in the console)? – David Sulc Dec 1 '10 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.