I am new to Rails and wanted to ask some of the veterans here what
they recommend for Role based permissions. I am working on an
application that has users and those users can have multiple roles.
Based on a users role various things are available/unavailable for
them to do. This access would be controlled at the controller, view
and model level at various points in the application. I would have a
screen in the admin section where I can view a persons roles, add or
remove roles, etc. Nothing real complicated.
It depends on a number of factors. If this is a "real thing" for
work, or that you intend to put out for public use, definitely just go
with CanCan. (Or possibly one of the alternatives. CanCan does seem
to be the most popular though.)
On the other claw, if you're just playing, do it with CanCan (or,
again, some alternative) the *first* time. That way, you get the idea
how that sort of thing generally works. *After* that, though, it can
be quite a good learning experience to try to duplicate the
functionality yourself. Meanwhile, having learned CanCan can't hurt
either. You could separate the authorization checks into some
wrapper class that would, under the hood, initially call CanCan, but
then you can remove CanCan (kick the CanCan?), and see what you have
to do to make the app work again. I suggest having particularly good
test coverage in that piece, so you know you've got it working right.
I’m fairly new to the Rails community and recently faced a similar situation. First from what you describe, CanCan will most certainly provide the functionality you desire.
Secondly, there is a nice screencast at Railscasts.com that provides a good introduction, however some of processes in the screencast have been updated/modified in more recent versions of the gem, so be sure to go by the github documentation vs. the example in the screencast.
Thirdly, I would describe the learning curve for the CanCan gem as moderate. I have a fairly complex use case and my CanCan Abilities class has gotten a little large. However, I’ve been amazed that each time I initially thought CanCan was in error, when I worked it through, CanCan was accurate. Also, I was worried about a performance hit, but so far have not seen anything that indicates CanCan will not scale.
CanCan is Rails specific - the docs on GitHub clearly state it is for Ruby on Rails. From my limited experience, CanCan requires Gems that are Rails specific and relies on many aspects of Rail’s MVC structure. I estimate it would be a big job to rework CanCan to be not dependent on Rails plug-ins and work with whatever MVC structure (if any) you have in your app. It would most likely be easier to roll your own.
Yes, CanCan is very “controller” centric. Sounds like the declarative_autorization gem allows one to follow the “skinny controllers, fat models” design mantra. I’ll have to check it out.