我有一個具有超過50列的用戶表的全功能身份驗證系統。這很簡單,但它使用salt進行散列加密,使用電子郵件而不是用戶名,並且具有兩個不同類型的用戶以及管理員。將設計認證合併到已經存在的用戶結構中嗎?
我期待將Devise身份驗證合併到我的應用程序中,以增強電子郵件驗證,忘記密碼,記住我的令牌等額外部件......我只是想看看是否有人有任何建議或問題,將Devise合併到已經存在的用戶結構中時遇到過。在我的用戶模型的基本字段有:
t.string :first_name, :null => false
t.string :last_name, :null => false
t.string :email, :null => false
t.string :hashed_password
t.string :salt
t.boolean :is_userA, :default => false
t.boolean :is_userB, :default => false
t.boolean :is_admin, :default => false
t.boolean :active, :default => true
t.timestamps
以供參考,在這裏是從遷移的設計領域:
t.database_authenticatable :null => false
t.confirmable
t.recoverable
t.rememberable
t.trackable
add_index "users", ["confirmation_token"], :name => "index_users_on_confirmation_token", :unique => true
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
,最終變成架構中的這些實際的領域:
t.string "email", :default => "", :null => false
t.string "encrypted_password", :limit => 128, :default => "", :null => false
t.string "password_salt", :default => "", :null => false
t.string "confirmation_token"
t.datetime "confirmed_at"
t.datetime "confirmation_sent_at"
t.string "reset_password_token"
t.string "remember_token"
t.datetime "remember_created_at"
t.integer "sign_in_count", :default => 0
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
你們推薦什麼?我只是從我的遷移中刪除電子郵件,hashed_password和鹽,並將其放入5 Devise遷移字段,一切都會好的,或者我需要做其他事情嗎?
編輯:
我已經開始這種嘗試自己和已經碰到一些問題。我加了色器件移植領域我上面把現有的用戶模型顯示,現在當我跑我的種子文件,它給了我這個PostgreSQL的錯誤:
ERROR: duplicate key value violates unique constraint "index_users_on_email"
我的種子文件:
initial_usersA = User.create!(
[
{
:first_name => "John",
:last_name => "Doe",
:email => "[email protected]",
:is_userA => true,
:is_userB => false,
:is_admin => true,
:password => "password",
:password_confirmation => "password"
},
{
:first_name => "Jane",
:last_name => "Smith",
:email => "[email protected]",
:is_userA => true,
:is_userB => false,
:is_admin => true,
:password => "password",
:password_confirmation => "password"
}
用戶模型:
devise :registerable, :authenticatable, :recoverable,
:rememberable, :trackable, :validatable
attr_accessor :password_confirmation, :email, :password
堆棧跟蹤顯示電子郵件顯然沒有被送入由於某種原因變量的休息......雖然一切在種子文件中的ACTUA顯示出來l查詢,電子郵件是「由於某種原因,即使它是明確defined.auth
此頁面有一個wiki-how-to可以幫助。 https://github.com/plataformatec/devise/wiki/How-To:-change-an-already-existing-table-to-add-devise-required-columns – GeorgeW 2012-03-04 03:08:45