devise 实现用户名登录

在Job Listing比赛中自定义过devise界面的栈友想必都看过这篇文章,其中有一项是给注册用户提供了用户名选项,但是好像仅仅是有一个用户名而已,还不能够实现利用用户名直接登录,这里就讲讲如何实现在登录界面中实现用户名登录。

步骤一 确保你已经实现了上文链接中提到的增加username功能。

修改application_controller.rb,添加username, email, password, password confirmation 以及 remember meconfigure_permitted_parameters

class ApplicationController < ActionController::Base
  protect_from_forgery with: :exception
  before_action :configure_permitted_parameters, if: :devise_controller?

  protected

  def configure_permitted_parameters
  added_attrs = [:username, :email, :password, :password_confirmation, :remember_me]
  devise_parameter_sanitizer.permit :sign_up, keys: added_attrs
  devise_parameter_sanitizer.permit :account_update, keys: added_attrs
  end
end

步骤二 在models/user.rb中添加参数

def login=(login)
  @login = login
end

def login
  @login || self.username || self.email
end

步骤三 修改config/initializers/devise.rb

增加(这里只需要使用⌘ + f查找对应的设置,删除注释符号#即可。)

- config.authentication_keys = [ :email ]
+ config.authentication_keys = [ :login ]

步骤四 在user.rb重写devise中的find_for_database_authentication

因为我们要改变登录的方式,就需要重写find_for_database_authentication方法。 在find_for_database_authentication栈的工作流程是这样的:find_for_database_authentication调用find_for_authenticationfind_for_authentication接着会调用find_first_by_auth_conditions;重写find_for_database_authentication允许我们去编辑数据库验证。
app/models/user.rb中添加

def self.find_for_database_authentication(warden_conditions)
  conditions = warden_conditions.dup
  if login = conditions.delete(:login)
    where(conditions.to_hash).where(["username = :value OR lower(email) = lower(:value)", { :value => login.downcase }]).first
  elsif conditions.has_key?(:username) || conditions.has_key?(:email)
    where(conditions.to_hash).first
  elsif conditions[:email].downcase! if conditions[:email]
    where(conditions.to_hash).first
  end
end

用户名验证非常容易与邮箱相互冲突,请看栗子:

用户2的用户名使用了用户1的注册邮箱,如果用上面的指令:

where(conditions.to_hash).where(["username = :value OR lower(email) = lower(:value)", { :value => login.downcase }]).first

用户1就永远无法登陆了,因为指令调用会一直返回到#2;
为了解决这个问题,我们需要在app/models/user.rb中添加

+ validates_format_of :username, with: /^[a-zA-Z0-9_\.]*$/, :multiline => true

步骤五 生成并修改devise界面

rails g devise:views

config/initializers/devise.rb中修改

config.scoped_views = true

修改界面

sessions/new.html.erb :
- <%= f.input :email, required: false, autofocus: true %>
+ <%= f.input :login, label: false, required: false, autofocus: true, placeholder: "用户名/邮箱" %>

sessions/new.html.erb中使用:login而不是:username

registrations/new.html.erb:
+ <%= f.input :username, label: false, required: true, autofocus: true, placeholder: "用户名" %>
registrations/edit.html.erb:
+ <%= f.input :username, required: true, autofocus: true %>

步骤六 利用用户名恢复密码和账户确认

修改config/initializers/devise.rb

config.reset_password_keys = [ :username ]
config.confirmation_keys = [ :username ]

(使用⌘ + f查找对应的设置,删除注释符号#即可)

find_first_by_auth_conditions替换find_for_database_authentication

把user.rb中的

def self.find_for_database_authentication(warden_conditions)
  conditions = warden_conditions.dup
  if login = conditions.delete(:login)
    where(conditions.to_hash).where(["username = :value OR lower(email) = lower(:value)", { :value => login.downcase }]).first
  elsif conditions.has_key?(:username) || conditions.has_key?(:email)
    where(conditions.to_hash).first
  elsif conditions[:email].downcase! if conditions[:email]
    where(conditions.to_hash).first
  end
end

替换成

def self.find_first_by_auth_conditions(warden_conditions)
  conditions = warden_conditions.dup
  if login = conditions.delete(:login)
    where(conditions).where(["lower(username) = :value OR lower(email) = :value", { :value => login.downcase }]).first
  else
    if conditions[:username].nil?
      where(conditions).first
    else
      where(username: conditions[:username]).first
    end
  end
end
更新相应的view

passwords/new.html.erb:

-  <%= f.input :email, required: true, autofocus: true %> 
+  <%= f.input :username, label: "用户名", required: true, autofocus: true %> 

confirmations/new.html.erb:

-  <%= f.input :email, required: true, autofocus: true %> 
+  <%= f.input :username, label: "用户名", required: true, autofocus: true %>

大功告成,新建一个账户,使用用户名登录试试看😄。

觉得不错?投我一票😍

参考:
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容

  • 基本使用在Gemfile里面添加gem 'devise'运行bundle install然后安装devise相关组...
    youngiyang_打码少年阅读 6,209评论 2 11
  • Awesome Ruby Toolbox Awesome A collection of awesome Ruby...
    debbbbie阅读 2,769评论 0 3
  • twitter clone rails new fluttercd workspacecd fluttergit ...
    栋栋晓阅读 514评论 0 0
  • 1.caching with instance variables2.dynamic find_by method...
    Jayzen阅读 1,357评论 0 1
  • 这几天,大家得感谢两个人。一个是发明了空调的美国人威利斯·开利;另一个是干掉九个太阳的后羿。要不是他俩,估计我们早...
    金倩阅读 423评论 0 0