vote up 1 vote down star
1

I need a very granular authorization system that works seamlessly with Authlogic.

I've tried these gems/plugins so far:

I've also looked at, but not tried implementing:

I've searched around for a good tutorial detailing how to set up any of these with Authlogic in a way that makes sense (only the Lockdown doc seems to outline how to set this up with Authlogic), but have come up with next to nothing. The only one of these that made the remotest sense to me was the documentation for Lockdown, but I don't think that package will work for me (from what I understand of it).

What I'd really love is a good tutorial specifically about setting one of these authorization solutions up with Authlogic, or else a simple example application where I can see how the code comes together and works. Can anyone point me to any good step-by-step (and why) resources, or else provide a simple application with one of these authorization solutions set up on top of Authlogic?

flag

Could you elaborate what exactly didn't make sense while trying to install ACL9 with authlogic? – Javier Jun 11 at 21:30
Well, for one, I got it setup such that if I tried to access a restricted page, I got a Rails Exceptions ACL9::AccessDenied... but no where in the docs (that I could find) does it tell me how to customize how to handle this exception (specially formatted page? redirect to login page? etc.) – neezer Jun 12 at 18:25

3 Answers

vote up 3 vote down check

I think you have a typo in your first sentence. You must mean "authorization that works seamlessly with Authlogic." AuthLogic already is an authentication solution.

I think you might be struggling to find a tutorial that's specific to AuthLogic because there's no reason authorization and authentication need to be tightly coupled to one another.

Authentication answers the question: "Who is the person accessing this page?" Authorization answers the question: "What permissions does the person accessing this page have?

So the only thing your authorization needs from Authlogic is the current_user() method from your controller. For example, take the tutorial for Acl9 (http://github.com/be9/acl9/tree/master). I believe all you'll need to customize is the :subject_method part (Acl9 calls your active user the 'subject', so :subject_method needs to be set to the name of the method that returns the current user, which is :current_user if you followed the basic AuthLogic docs).

link|flag
Yes, I did make a typo. My bad. Corrected. – neezer Jun 12 at 18:22
vote up 0 vote down

Hey, if you're still looking for solutions, Andy Stone posted a page on getting Lockdown and Authlogic to work together. I just implemented the two for an app, and it's working fine.

http://stonean.com/page/lockdown-with-authlogic

link|flag
vote up 1 vote down

Yay! As of Nov. 16, 2009, Ryan Bates has finally answered my call with a Railscast devoted to this subject!

#188 - Declarative Authorization (with Authlogic)

Thanks, Mr. Bates!

link|flag

Your Answer

Get an OpenID
or

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