Canable: The Flesh Eating Permission System

Send to friend

A while back I wrote about how to add simple permissions to your apps. Since then, I have worked on a few applications (Harmony among them) where I have taken that concept and expanded it. Yesterday, I decided that I had repeated myself enough times (3) and that I should abstract the shared functionality of those apps into a gem. Thus, Canable, the flesh eating permission system, was born.
Can
Canable does not actually implement any permissions for you (or actually eat flesh). Instead, it provides you with all the helpers and then (gasp) you have to do the work. The idea centers around running all permissions through current_user. Anytime you check if a user can do something you use a can method:
user.can_create?(article)
user.can_update?(article)

Able
Instead of having a big case statement in those can methods for each different type of object, I use the strategy pattern to just ask the object if the user has permission to do the action. This is done by having a matching “able” method to the “can” method, thus canable.
class Item
def updatable_by?(user)
creator == user
end
end

The above code, for example, makes it so that only the creator of an item can update it. Obviously, you can get more in depth from there. By default, I add the following can and able methods:
:view => :viewable
:create => :creatable
:update => :updatable
:destroy => :destroyable

Custom Actions
If you need permissions for actions other than the defaults, you can add your own quite easily:
Canable.add(:publish, :publishable)
The readme over on Github has far more details, but I figured I would at least cover it here a bit. It might seem a bit weird at first, but once you start rolling with it, it makes for a pretty easy to implement and understand permission system.
The really funny part is that it is only like 80 lines of code, as most of the methods are dynamically generated. I am perfectly fine if I am the only one who uses this and finds it helpful, but you never know, so feel free to install it as a gem or fork it on github.
Note: No permissions were harmed in the making of this gem.

Comments

Canable

Wow - I like it. Thanks so much for sharing! I'm really looking forward to seeing Harmony too.

-brightspark