はじめに
自作のRailsアプリケーションでdeviseを使用したので備忘録として残しておきます。
deviseとは
railsのgemの一つでログイン認証機能を簡単に実装することができる。
インストール
Gemfile
に以下のように記述してください
gem 'devise'
ターミナルで以下コマンドを実行します。
$ bundle install
$ rails g devise:install
以上でインストールは終わりです
ビューファイルの作成
以下のコマンドでdeviseの認証周りが実装されたビューファイルが作成されます。
$ rails g devise:views
見た目はかなり簡素になっているのでビューファイルを編集する必要があります。
Userモデルの作り方
deviseをインストールをすると認証が使えるモデルを作成することができます。
rails g model user
ではなく以下のコマンドを使います。
$ rails g devise user
このコマンドを実行すればログイン認証ができるファイルが自動で作成されます。
同時にroutes.rb
にdevise_for :users
が追記されサインアップやログイン、ログアウトのルーティングが自動で作成されます。
マイグレーションファイルは以下になっています。
最初はnameカラムがないので入れておきましょう。
class DeviseCreateUsers < ActiveRecord::Migration[6.0]
def change
create_table :users do |t|
## Database authenticatable
t.string :email, null: false, default: ""
t.string :encrypted_password, null: false, default: ""
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
## Rememberable
t.datetime :remember_created_at
## Trackable
t.integer :sign_in_count, default: 0, null: false
t.datetime :current_sign_in_at
t.datetime :last_sign_in_at
t.inet :current_sign_in_ip
t.inet :last_sign_in_ip
## Confirmable
t.string :confirmation_token
t.datetime :confirmed_at
t.datetime :confirmation_sent_at
t.string :unconfirmed_email # Only if using reconfirmable
## Lockable
t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
t.string :unlock_token # Only if unlock strategy is :email or :both
t.datetime :locked_at
t.string :name #ここにnameを追加
t.timestamps null: false
end
add_index :users, :email, unique: true
add_index :users, :reset_password_token, unique: true
# add_index :users, :confirmation_token, unique: true
# add_index :users, :unlock_token, unique: true
end
end
またマイグレーションファイルを追記した場合はuser
カラムを受け入れてくれるようにapplication_controller.rb
に以下の記述をしておきましょう
# 以下を追加
before_action :configure_permitted_parameters, if: :devise_controller?
def configure_permitted_parameters
# サインアップ時にusernameのストロングパラメータを追加
devise_parameter_sanitizer.permit(:sign_up, keys: [:username, :image])
# アカウント編集の時にnameとprofileのストロングパラメータを追加
devise_parameter_sanitizer.permit(:account_update, keys: [:username,:image,:profile])
end