What's the best way to enable users to log in with their email address OR their username? I am using warden + devise for authentication. I think it probably won't be too hard to do it but i guess i need some advice here on where to put all the stuff that is needed. Perhaps devise already provides this feature? Like in the config/initializers/devise.rb you would write:

config.authentication_keys = [ :email, :username ]

To require both username AND email for signing in. But i really want to have only one field for both username and email and require only one of them. I'll just visualize that with some ASCII art, it should look something like this in the view:

Username or Email:
[____________________]

Password:
[____________________]

[Sign In]
link|improve this question

3  
Wouldn't the title be 'RoR Devise: Sign in with username OR email'? – Moox Jun 8 '10 at 12:23
are the usernames guaranteed to be unique? – scunliffe Jun 8 '10 at 12:24
@Moox: you are right, sorry for the typo @scunliffe: yes, the usernames are unique – padde Jun 8 '10 at 13:29
feedback

7 Answers

up vote 19 down vote accepted

Well, after a lot of searching i have found a solution for the problem. I'm not quite satisfied with it (i'd rather have a way to specify this in the initializer), but it works for now. in the user model i added the following method:

def self.find_for_authentication(conditions={})
  unless conditions[:email] =~ /^([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})$/i # email regex
    conditions[:username] = conditions.delete("email")
  end
  super
end

this overrides the devise method find_for_authentication which normally just finds the first record based on the given conditions. this modified version checks, whether the user really typed an email address into the email field. if not, it falls back to checking for the username. This short Blog Entry covers exactly this topic and helped me a lot.

edit: the above code works, but i think it is prettier to do this (only rails):

def self.find_for_database_authentication(conditions={})
  self.where("username = ?", conditions[:email]).limit(1).first ||
  self.where("email = ?", conditions[:email]).limit(1).first
end

i am using MetaWhere for my find conditions though, where i would write:

def self.find_for_database_authentication(conditions={})
  self.where(:username.eq % conditions[:email]).limit(1).first ||
  self.where(:email.eq % conditions[:email]).limit(1).first
end
link|improve this answer
The blog entry linked in this post is now dead – Gareth May 15 at 10:44
feedback
def self.find_for_authentication(conditions)
  conditions = ["username = ? or email = ?", conditions[authentication_keys.first], conditions[authentication_keys.first]]
  # raise StandardError, conditions.inspect
  super
end

Use their example!

link|improve this answer
using their example, shouldn't it be def self.find_for_database_authentication(conditions) ? – padde Jul 21 '10 at 1:18
btw, with their example, using rails 3.0.0.beta4 i got a NoMethodError in Devise/sessionsController#create undefined method assert_valid_keys' for ["username = ? or email = ?", "xxx", "xxx"]:Array`, that's why i used my own solution – padde Jul 21 '10 at 1:23
feedback

From their Wiki — How To: Allow users to sign in using their username or email address.

link|improve this answer
Appears to be a dead link. – JC Grubbs Feb 24 at 17:12
Fixed the dead link. Thanks. – Chetan Feb 28 at 20:01
feedback

Make sure you already added username field and add username to attr_accessible. Create a login virtual attribute in Users

1) Add login as an attr_accessor

# Virtual attribute for authenticating by either username or email
# This is in addition to a real persisted field like 'username'
attr_accessor :login

2) Add login to attr_accessible

attr_accessible :login

Tell Devise to use :login in the authentication_keys

Modify config/initializers/devise.rb to have:

config.authentication_keys = [ :login ]

Overwrite Devise’s find_for_database_authentication method in Users

# Overrides the devise method find_for_authentication
# Allow users to Sign In using their username or email address
def self.find_for_authentication(conditions)
  login = conditions.delete(:login)
  where(conditions).where(["username = :value OR email = :value", { :value => login }]).first
end

Update your views Make sure you have the Devise views in your project so that you can customize them

remove <%= f.label :email %>
remove <%= f.email_field :email %>
add <%= f.label :login %>   
add <%= f.text_field :login %>
link|improve this answer
feedback

https://gist.github.com/867932 : One solution for everything. Sign in, forgot password, confirmation, unlock instructions.

link|improve this answer
feedback

If you are using MongoDB (with MongoId), you need to query differently:

  def self.find_for_database_authentication(conditions={})
    self.any_of({name: conditions[:email]},{email: conditions[:email]}).limit(1).first
  end

just so it will be somewhere online.

link|improve this answer
feedback

Platforma Tec (devise author) has posted a solution to their github wiki which uses an underlying Warden authentication strategy rather than plugging into the Controller:

https://github.com/plataformatec/devise/wiki/How-To:-Allow-users-to-sign-in-using-their-username-or-email-address

(An earlier answer had a broken link, which I believe was intended to link to this resource.)

link|improve this answer
Appears to be a dead link. – JC Grubbs Feb 24 at 17:12
Oh, the irony! Thanks, I've updated the link appropriately. – Mike Jarema Feb 28 at 3:03
feedback

Your Answer

 
or
required, but never shown

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