在rails 的devise 组件中定制自己的controller

项目需求,需要在用户管理模块中增加 group 群组字段。

使用 devise gem。

具体的方法参加: https://github.com/plataformatec/devise


1:Encryptable:除了内置的Bcrypt(默认),增加支持认证机制

2:Lockable:锁定一定数量的失败尝试登录。通过电子邮件或之后才能解锁

3:validatable:有效性:提供的电子邮件及密码鉴定。它是可选的,可定制的,所以你可以定义自己的代码。

4:Timeoutable:在一特定时期(expires sessions没有活动。

5:Trackable(跟踪):追踪 登录的次数、时间戳记签字和IP地址

6:Rememberable(记忆):管理产生和清除表示来自用户保存的cookie的标记(token)

7:Registerable(注册):处理用户注册过程,也可以让他们编辑和摧毁他们的帐户。

8:recoverable(重设)重置用户密码并且发送重置指令。

9:Confirmable注册登录认证

10:Omniauthable: adds Omniauth (github.com/intridea/omniauth) support;

11:Database Authenticatable: encrypts and stores a password in the database to validate the authenticity of a user while signing in. The authentication can be done both through POST requests or HTTP Basic Authentication.

12:Token Authenticatable: signs in a user based on an authentication token (also known as “single access token”). The token can be given both through query string or HTTP Basic Authentication.


通过Divse 添加Users

其中User.rb可用属性:12个

    :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable  , :omniauthable ,

    :database_authenticatable, :registerable,  :recoverable, :rememberable, :trackable, :validatable,


使用:

1:Gemfile中加入: gem 'devise'

2:建立devise档案: rails g devise:install(自动在routes.rb中加入:devise_for:user)

3:预设定网站网址:在config/environmentents/development.rb与production.rb中加入

    config.action_mailer.default_url_options = { :host => 'localhost:3000' }

4:在app/views/layouts/application.html.erb layout中加入:(提示flash信息)

    

<%= notice %>

     

<%= alert %>

5:设定主页,在routes.rb中

    root :to => ""

6:产生User model以及Migration

    rails  g devise user

7:如果需要E-mail验证登录功能,修改user.rb migration将confirmable打开

8:产生view模板

    rails g devise:views

9:建立资料表

    rake db:migration

使用:

在需要登录的control中加上:before_filter:authenticate_user!

!!

定制登录信息:(注意修改:)

    devise默认是email和密码登录,那么,现在用用户名登录!配置如下:

1:添加username字段到User表单

    rails generate migration add_username_to_users username:string 

     rake db:migration

2:修改配置文件:是devise默认用username登录/config/initializers/devise.rb

    config.authentication_keys = [ :username ]

    config.sign_out_via = :get

3:修改注册页面,app\views\devise\registrations\new.html.erb(类似修改其他devise的视图)

        

Sign up

    <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>

      <%= devise_error_messages! %>

     

<%= f.label :username %>
//////

      <%= f.text_field :username %>

//////

     

<%= f.label :email %>

      <%= f.email_field :email %>

     

<%= f.label :password %>

      <%= f.password_field :password %>

     

<%= f.label :password_confirmation %>

      <%= f.password_field :password_confirmation %>

     

<%= f.submit "Sign up" %>

    <% end %>

    <%= render :partial => "devise/shared/links" %>

4:重启服务-效果成功



然后定制自己的user 和 controller


1. 增加一个 group 字段 

rails g migrate AddGroupFieldToUser 


2. 修改route.rb 

使得使用自己定义的controller(屏蔽原有的devise_for :users)

# devise_for :users
  devise_for :users, :controllers => {:registrations => "devise_customed/registrations"} 

3.定义自己的controller

class DeviseCustomed::RegistrationsController < Devise::RegistrationsController
  def new
    super
  end

  def create
    # add custom create logic here
    super do |resource|
      resource.group = params[:user][:group]
    end
  end

  def update
    super
  end
end 

4, 按照rails的约定,把这个文件保存为 app/controllers/devise_customed/registrations_controller.rb

你可能感兴趣的:(ruby,&,rails)