vote up 8 vote down star
2

I'm looking for a pre-built solution I can use in my RoR application. I'm ideally looking for something similar to the ASP.NET Forms authentication that provides email validation, sign-up controls, and allows users to reset their passwords. Oh yeah, and easily allows me to pull the user that is currently logged into the application.

I've started to look into the already written pieces, but I've found it to be really confusing. I've looked at LoginGenerator, RestfulAuthentication, SaltedLoginGenerator, but there doesn't seem to be one place that has great tutorials or provide a comparison of them. If there's a site I just haven't discovered yet, or if there is a de-facto standard that most people use, I'd appreciate the helping hand.

flag

7 Answers

vote up 15 vote down check

I would really recommend Restful Authentication. I think it's pretty much the de-facto standard.

link|flag
I would second this. I recently had to implement a pretty complex multi-site authentication system, which I based on top of the RestfulAuth design, providing the same API to the rest of the application as RA would, Definatly a nice clear easy to work with API with easy to read code :-) – Laurie Young Sep 20 '08 at 16:03
vote up 7 vote down

AuthLogic appears to be the new kid on the block and seems to be the next evolution of restful_authentication, easier to use, etc

http://github.com/binarylogic/authlogic/tree/master

link|flag
I would really consider using authlogic as well. its a lot cleaner than restful_auth. Authlogic learned from all the previous solutions and repackaged them in a cleaner, more customizable solution – taelor May 17 at 21:57
I took your advice and went with Authlogic, and I am really pleased. Might take a little bit longer to setup, what it is very clean and easy to understand. There is no scary piles of generated code. – Guy C Jul 17 at 15:23
Yeah, it def takes longer to setup. I wish he had removed a little of the abstraction there and had it ship with things everyone needs like forgotten password, and email confirmations included. But overall, it's still pretty good. – Brian Armstrong Jul 17 at 21:46
I was able to combine it with OpenID and RPXNow too, which turned out awesome, example here: buyersvote.com/user_session/new – Brian Armstrong Jul 17 at 21:47
vote up 3 vote down

There's also RestfulOpenIDAuthentication if you want OpenID support in addition to password support.

link|flag
vote up 3 vote down

Just a note, LoginGenerator and SaltedLoginGenerator have been superseded by Restful Authentication and are unsupported on newer Rails releases -- dont waste any time on them, though they were great at the time.

link|flag
vote up 3 vote down

I'd also like to point out an excellent tutorial/discussion on extending the core functionality of Restful Authentication, in case you're looking for something a bit more robust.

link|flag
Please don't think me terribly rude, but I think that forum entry is an example of the worst part of Restful Authentication. There are a multitude of missing features and here is a super long (and contradictory) set of steps for adding those features in one at a time. Whatever the opposite of DRY is, I'm pretty sure that's it. Only you're not repeating yourself, you're repeating hundreds of other developers to include stuff that should have been included or optional for RA from the start. – John Munsch Dec 6 at 5:49
vote up 2 vote down

restful_authentication is a powerful tool which is very flexible and provides most of what you are looking for out of the box. However, a couple of caveats:

  1. Don't think in terms of 'controls'. In Rails the Model, View and Controller are much more independent than in 'Webforms-style' ASP.NET. Work out what you want from each layer independently, write tests/specs to match and make sure each layer is doing what you expect.
  2. Even if you are using a plugin there is no substitute for reading (at least some) of the code generated. If you have a big-picture idea of what is going on under the hood, you will find debugging and customising much easier.
link|flag
vote up 2 vote down

The plugin restful_authentication and other plugins that extend it, answer your needs perfectly. A quick search on github.com will reveal a lot of tutorials, examples, and extensitons. Just go here:
- http://github.com/search?q=restful_authentication

There are several projects that use restful_authentication just to provide examples of a bare-bones Rails app with just the authentication parts.

  1. http://github.com/fudgestudios/bort -- A base rails app featuring: RESTful Authentication
  2. http://github.com/mrflip/restful_authentication_example -- Another project with a great examlpe of how to use restful_authentication
  3. http://github.com/activefx/restful_authentication_tutorial -- Same as above, with some other plugins bundled.
  4. http://railscasts.com/episodes/67-restful-authentication -- a great screencast explaining restful_authentication

This information should be enough to get you started finding heads and tails ... good luck.

link|flag

Your Answer

Get an OpenID
or

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