我正在使用最新的 Devise 和 ldap 插件运行 rails 3.1。我已经交换了使用电子邮件地址的默认行为,现在使用 Novell eDir 中的 uid 属性作为我的用户字段。
我可以登录,我会根据根路由等进行重定向。
我现在正在努力的是从我的 ldap 中获取电子邮件和一个名为 category 的自定义属性并插入到数据库中。我试图让 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
我究竟做错了什么?很想得到一些帮助!
最好的问候//罗杰