views:

5227

answers:

12

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.

+16  A: 

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

John Topley
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
+3  A: 

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

James A. Rosen
+3  A: 

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.

pantulis
+3  A: 

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.

Bryan M.
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
+2  A: 

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.
domgblackwell
+2  A: 

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.

Evgeny
+23  A: 

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

Brian Armstrong
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
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
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
I was able to combine it with OpenID and RPXNow too, which turned out awesome, example here: http://buyersvote.com/user_session/new
Brian Armstrong
I am a RoR newbie and I just set this up. Very handy and comes with a tutorial which is always nice.
GreenRails
The example project makes it super easy to get up and running. Just git clone the repository, copy in a database.yml file and you've got a fully authenticated site ready.
Casey Watson
+2  A: 

AuthLogic seems to be what you want for this. It's very configurable, and although it doesn't generate the code for you, it's quite easy to use. For email validation and password recovery you probably want to use the :perishable_token column. AuthLogic takes care of it, you only need to reset it when it's used. For information on how to set up a basic app, you can take a look at Ryan Bates' Railscast on AuthLogic, and the "official" example app. Ben Johnson, the creator of AuthLogic has also written a blog post on how to RESTfully reset passwords.

Unfortunately I can't post more than one link, but the links to the railscast, the password reset blog post and the example app are all in the README (see the AuthLogic repo for the README)

Update: Now I can post more links, so I linked some more. Thank you marinatime for adding the link in the meanwhile

dvyjones
Railscast link - http://railscasts.com/episodes/160-authlogic
martinatime
+2  A: 

I'm really liking thoughtbot's clearance. Very simple and has a few good hooks and is testable.

sam
A: 

Another vote for Clearance - perhaps not as customisable or as 'in' as authlogic, but in terms of just being able to drop it in place and go, it's definitely worth having a look at.

Dave Smylie
+4  A: 

For a really simple solution go with Clearance(http://github.com/thoughtbot/clearance).

If you are looking for more options Devise(http://github.com/plataformatec/devise) is a great solution. It uses Warden which is a rack based authentication system.

Nick Hammond
I can vouch for Devise. I set it up in my app, and can says that it's easy to use, at least for me as a relative newbie. I blogged about my experience with it here: http://therealmattslay.blogspot.com/2010/06/devise-authentication-for-rails.html
MattSlay