Have somebody tried to rewrite CanCan ActiverRecordAddtions for Mongoid http://github.com/ryanb/cancan/blob/master/lib/cancan/active_record_additions.rb

Regards, Alexey Zakharov

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

I've managed to get CanCan and Mongoid (version 2) to work together pretty well on a rails 3 app. Still get some errors here and there related to conditions in the permission definition (the Ability model).

I just put the contents of this gist into a file in config/initializers:

The condition hashes are almost the same as with ActiveRecord:

# can only manage own account
can :manage, User, :_id => current_user.id

I'm still working on how to use more advanced Mongoid::Criteria conditions, but you can always use a block to do more complex conditions:

# can only manage own account
can :eat, Cake do
  current_user.jobs.any?{ |job| job.title == 'Peasant'}
end
link|improve this answer
Thank you. Hope that you extensions will be added to future version of gem – Alexey Zakharov Sep 25 '10 at 18:53
You're welcome. Mongoid is awesome and so is CanCan. I'll try to put together a working patch for CanCan so that this behavior is included in the library without a need to add anything. By the way, I made some significant updates to the gist that allow for complex conditions hashes. I recommend using the latest gist version, because the version I had earlier caused some hard-to-detect but significant bugs. – bowsersenior Sep 29 '10 at 5:11
My extensions made it into Cancan. The latest version on github now supports Mongoid: github.com/ryanb/cancan/pull/172 and version 1.5 from rubygems will have Mongoid support as well. – bowsersenior Dec 23 '10 at 7:52
Looks like CanCan 1.5.0 is released and it is indeed added in it - fantastic :) – user341458 Jan 11 '11 at 17:23
Great, that's perfect :) However I got one question, cancan will generate the ability mode, but what about the role model ? Should that be done manually, or does cancan or devise takes care of it ? I am a bit lost here... thx. – Alex Jan 18 '11 at 17:05
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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