I'm implementing an AuthorizationService, basically it extends Zend_Acl and override authenticate() method to work with my own adapter.

Let's say I've User, Article, ArticleComment, ArticleVote, CommentVote.

My rules are simple:

  • An Member can edit its own Article
  • An Member can cast a vote on any Article
  • A Guest can't cast a vote on Comment
  • A Guest can't cast more than 10 votes per day.

However, I'm not sure on how to implement this, for the last rules, it's easy, it should be an Assertion, however, what about the Member who can edit their own Article?

Should I create a dynamic Acl, and create a resource like 'Article-545' and a Role 'User-5656' and then create an Acl rules, or have a more generic 'Article' resource, and a generic role 'User', and use an Assertion to authorize User 545 to edit Article 5656?

How do you do, any advices?

link|improve this question

50% accept rate
Did you ever come to any conclusions on this question? I'd be keen to see them if so. – boatingcow Jan 13 at 12:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.