2011-11-14 30 views
2

我被困在使用get_ldap_param对eDir ldap服务器进行验证的情况。我可以进行身份​​验证,但是当我尝试读取属性时,我什么也得不到。请举例说明Rails/Devise/LDAP Devise :: LdapAdapter.get_ldap_param的用法

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 

在我ndstrace.log

92659520 LDAP: [2011/11/14 10:10:07.401] New cleartext connection 0xe4b26c0 from  192.168.21.40:58658, monitor = 0x4b37c940, index = 8 
1256683840 LDAP: [2011/11/14 10:10:07.401] DoBind on connection 0xe4b26c0 
1256683840 LDAP: [2011/11/14 10:10:07.401] Bind name:cn=admin,o=xxx, version:3, authentication:simple 
1256683840 LDAP: [2011/11/14 10:10:07.401] Sending operation result 0:"":"" to connection 0xe4b26c0 
1310226752 LDAP: [2011/11/14 10:10:07.402] DoSearch on connection 0xe4b26c0 
1310226752 LDAP: [2011/11/14 10:10:07.402] Search request: 
base: "cn=ntr,ou=Meta,o=xxx" 
scope:0 dereference:0 sizelimit:0 timelimit:0 attrsonly:0 
filter: "(objectclass=*)" 
no attributes 
1310226752 LDAP: [2011/11/14 10:10:07.402] Empty attribute list implies all user attributes 
1310226752 LDAP: [2011/11/14 10:10:07.403] Sending search result entry "cn=ntr,ou=Meta,o=xxx" to connection 0xe4b26c0 
1310226752 LDAP: [2011/11/14 10:10:07.403] Sending operation result 0:"":"" to connection 0xe4b26c0 
1261947200 LDAP: [2011/11/14 10:10:07.405] Monitor 0x4b37c940 found connection 0xe4b26c0 socket closed, err = -5871, 0 of 0 bytes read 
1261947200 LDAP: [2011/11/14 10:10:07.405] Monitor 0x4b37c940 initiating close for connection 0xe4b26c0 
1251420480 LDAP: [2011/11/14 10:10:07.405] Server closing connection 0xe4b26c0, socket error = -5871 
1251420480 LDAP: [2011/11/14 10:10:07.405] Connection 0xe4b26c0 closed 

登录后我得到的错误:

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"=>"nkuzPnh8MCK4rh/RXUErrAjVJB9ciy56hfavG60I8ck=", 
"user"=>{"uid"=>"ntr", 
"password"=>"[FILTERED]", 
"remember_me"=>"0"}, 
"commit"=>"Logga in"} 
Show session dump 

Show env dump 

Response 

Headers: 

None 

我一直在寻找高和低的某种教程这对但只发现了devise_ldap插件的基本实现。不使用get_ldap_param。

很想得到一些例子,技巧等

//罗杰

回答

1

的DSTRACE正显示出你所得到的所有属性返回:

Empty attribute list implies all user attributes

但它确实不再显示在dstrace中返回的数据。较早的eDirectory在一段时间内确实显示了结果,但现在已经很长一段时间了。

所以我建议eDir发回数据。现在谈谈你的应用如何解析该响应。

+0

除了get_ldap_param方法,我没有在我的应用程序中进行任何解析,并且我在电子邮件和类别的迁移中添加了列。我还在我的用户模型中添加了:email和:category到attr_accessible。 –

+0

正如你所说的geoffc ...问题是什么是ldap返回?我是否在问ldap错误的问题,因为它认为它应该会返回所有内容。我显然在我的对象中有一个邮件属性,但是我的LDAP服务器说查询是空的? –