Class: ActiveLdap::Adapter::Jndi
- Inherits:
-
Base
- Object
- Base
- ActiveLdap::Adapter::Jndi
show all
- Defined in:
- lib/active_ldap/adapter/jndi.rb
Constant Summary
collapse
- METHOD =
{
:ssl => :ssl,
:tls => :start_tls,
:plain => nil,
}
Constants inherited
from Base
Base::VALID_ADAPTER_CONFIGURATION_KEYS
Instance Attribute Summary
Attributes inherited from Base
#runtime
Instance Method Summary
collapse
-
#add(dn, entries, options = {}) ⇒ Object
-
#bind_as_anonymous(options = {}) ⇒ Object
-
#connect(options = {}) ⇒ Object
-
#connecting? ⇒ Boolean
-
#delete(targets, options = {}) ⇒ Object
-
#modify(dn, entries, options = {}) ⇒ Object
-
#modify_rdn(dn, new_rdn, delete_old_rdn, new_superior, options = {}) ⇒ Object
-
#search(options = {}, &block) ⇒ Object
-
#unbind(options = {}) ⇒ Object
Methods inherited from Base
#bind, #bound?, #disconnect!, #entry_attribute, #initialize, jndi_connection, ldap_connection, #log_info, #naming_contexts, net_ldap_connection, #rebind, #reset_runtime, #schema
included
Instance Method Details
#add(dn, entries, options = {}) ⇒ Object
64
65
66
67
68
69
|
# File 'lib/active_ldap/adapter/jndi.rb', line 64
def add(dn, entries, options={})
super do |_dn, _entries|
info = {:dn => _dn, :attributes => _entries}
execute(:add, info, _dn, parse_entries(_entries))
end
end
|
#bind_as_anonymous(options = {}) ⇒ Object
41
42
43
44
45
46
|
# File 'lib/active_ldap/adapter/jndi.rb', line 41
def bind_as_anonymous(options={})
super do
execute(:bind_as_anonymous, :name => "bind: anonymous")
true
end
end
|
#connect(options = {}) ⇒ Object
21
22
23
24
25
26
27
28
29
|
# File 'lib/active_ldap/adapter/jndi.rb', line 21
def connect(options={})
super do |host, port, method|
uri = construct_uri(host, port, method == :ssl)
with_start_tls = method == :start_tls
info = {:uri => uri, :with_start_tls => with_start_tls}
[log("connect", info) {JndiConnection.new(host, port, method, @timeout)},
uri, with_start_tls]
end
end
|
#connecting? ⇒ Boolean
31
32
33
|
# File 'lib/active_ldap/adapter/jndi.rb', line 31
def connecting?
super and @connection.bound?
end
|
#delete(targets, options = {}) ⇒ Object
58
59
60
61
62
|
# File 'lib/active_ldap/adapter/jndi.rb', line 58
def delete(targets, options={})
super do |target|
execute(:delete, {:dn => target}, target)
end
end
|
#modify(dn, entries, options = {}) ⇒ Object
71
72
73
74
75
76
|
# File 'lib/active_ldap/adapter/jndi.rb', line 71
def modify(dn, entries, options={})
super do |_dn, _entries|
info = {:dn => _dn, :attributes => _entries}
execute(:modify, info, _dn, parse_entries(_entries))
end
end
|
#modify_rdn(dn, new_rdn, delete_old_rdn, new_superior, options = {}) ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# File 'lib/active_ldap/adapter/jndi.rb', line 78
def modify_rdn(dn, new_rdn, delete_old_rdn, new_superior, options={})
super do |_dn, _new_rdn, _delete_old_rdn, _new_superior|
info = {
:name => "modify: RDN",
:dn => _dn,
:new_rdn => _new_rdn,
:new_superior => _new_superior,
:delete_old_rdn => _delete_old_rdn
}
_new_rdn = "#{_new_rdn},#{_new_superior}" if _new_superior
execute(:modify_rdn, info, _dn, _new_rdn, _delete_old_rdn)
end
end
|
#search(options = {}, &block) ⇒ Object
48
49
50
51
52
53
54
55
56
|
# File 'lib/active_ldap/adapter/jndi.rb', line 48
def search(options={}, &block)
super(options) do |base, scope, filter, attrs, limit|
info = {
:base => base, :scope => scope_name(scope), :filter => filter,
:attributes => attrs, :limit => limit,
}
execute(:search, info, base, scope, filter, attrs, limit, &block)
end
end
|
#unbind(options = {}) ⇒ Object
35
36
37
38
39
|
# File 'lib/active_ldap/adapter/jndi.rb', line 35
def unbind(options={})
super do
execute(:unbind)
end
end
|