最新のDeviseとldapプラグインでrails 3.1を実行しています。私は電子メールアドレスを使用するデフォルトの動作を交換して、今ユーザフィールドとしてNovell eDirのuid属性を使用しています。Devise/LDAP - 追加のLDAP属性をdbに保存します
私がログインすることができ、私は今、電子メール、私のLDAPからカテゴリと命名し、データベースに挿入されたカスタム属性を取得することであるとstruggelingていますどのようなルートルートなど
をもとにリダイレクトされます。私はbefore_saveの作業をしようとしています。
class User < ActiveRecord::Base
before_save :get_ldap_email
before_save :get_ldap_category
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :ldap_authenticatable, :rememberable, :trackable
# Setup accessible (or protected) attributes for your model
attr_accessible :uid, :category, :email, :password, :password_confirmation, :remember_me
def get_ldap_email
self.email = Devise::LdapAdapter.get_ldap_param(self.uid, "mail")
end
def get_ldap_category
self.category = Devise::LdapAdapter.get_ldap_param(self.uid, "category")
end
end
私はおそらくダムですが、これはうまく動作しません。私はログイン時に私の見解から次の結果を得ます:
NoMethodError in Devise::SessionsController#create
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.each
Rails.root: /home/ntr/Dropbox/source/devise
Application Trace | Framework Trace | Full Trace
Request
Parameters:
{"utf8"=>"✓",
"authenticity_token"=>"jljpH9bUXrPeBVy4jKnJoAfeuO/EiF0YxRqxm07VF5w=",
"user"=>{"uid"=>"ntr",
"password"=>"[FILTERED]",
"remember_me"=>"0"},
"commit"=>"Logga in"}
Show session dump
Show env dump
Response
Headers:
None
私は間違っていますか?これで何か助けてもらいたいですね!
敬具 //ロジャー
何がうまくいかなかったのを見つけましたか? – Ninad
私はいいえ、私は恐れると言う必要があります。しかし、私はこの問題に遭遇している唯一の人ではないようです。 –