I have been programming with both Sinatra and Padrino for quite some time now. However, I am still not able to find the right authentication and authorization solution for Padrino. Let me explain my expectation and what I have already tried out.

With Sinatra, I successfully use the sinatra-authentication gem along with the role_model gem. I generally use the Mongoid ORM for talking to MongoDB. These two gems together let me take care of authetication, protecting routes, checking for roles of the logged in user for applying access control.

sinatra-authentication doesn't work with Padrino - it is very specific to Sinatra. I tried it out multiple times. I have already tried out both omniauth and warden with the corresponding Padrino modules but for one reason or another I am not able to get them to work as simply as the wonderful sinatra-autentication gem.

So - before I can attempt implementing a solution of my own (or porting sinatra-authentication to Padrino) - can anyone suggest any other authentication and authorization solutions? At the moment I don't need anythign fancy - simple database-based authentication will just work perfectly.

link|improve this question
feedback

3 Answers

I suggest to use the builtin authentication solution, just take a look on padrino-admin, you can use Padrino::Authentication without admin inside any app you need.

It's pretty simple, role/path based.

http://www.padrinorb.com/api/Padrino/Admin/AccessControl/Base.html#allowed%3F-instance_method

link|improve this answer
1  
Using padrino-admin forces you to work with the account model generated by admin (or workaround it); which may not be optimal for the OP. More importantly, there are open security issues (github.com/padrino/padrino-framework/issues/384) anyone who deploys padrino-admin in production should be aware of. – pithyless Oct 28 '11 at 14:30
feedback

A standalone authentication solution for Padrino has been discussed, but has not been resolved yet. In the mean time, one popular suggestion is to use padrino-warden.

Disclaimer: I'm in a similar situation as OP and have no experience in running personal-warden in production, yet.

link|improve this answer
feedback

Ryan Bates has a great Rails screencast on how to do this (not free: http://railscasts.com/episodes/250-authentication-from-scratch-revised).

It shouldn't be too hard to adapt the Rails Magic away and do the same thing for Sinatra or Padrino.

Now, this might not be a good fit if you need tons of features like forgotten passwords, etc. But once again, those shouldn't be too hard to adapt.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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