Module: ActiveLdap::Connection
- Defined in:
- lib/active_ldap/connection.rb
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
- #connected? ⇒ Boolean
- #connection ⇒ Object
- #connection=(adapter) ⇒ Object
- #remove_connection ⇒ Object
- #retrieve_connection ⇒ Object
- #schema ⇒ Object
- #setup_connection(config = nil) ⇒ Object
Class Method Details
.included(base) ⇒ Object
3 4 5 |
# File 'lib/active_ldap/connection.rb', line 3 def self.included(base) base.extend(ClassMethods) end |
Instance Method Details
#connected? ⇒ Boolean
236 237 238 |
# File 'lib/active_ldap/connection.rb', line 236 def connected? connection != self.class.connection end |
#connection ⇒ Object
221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/active_ldap/connection.rb', line 221 def connection conn = @connection return conn if conn have_dn = !@dn.nil? if !have_dn and attribute_name_resolvable_without_connection? begin have_dn = !get_attribute_before_type_cast(dn_attribute)[1].nil? rescue DistinguishedNameInvalid end end conn = self.class.active_connections[dn] || retrieve_connection if have_dn conn || self.class.connection end |
#connection=(adapter) ⇒ Object
240 241 242 243 244 245 246 247 248 249 |
# File 'lib/active_ldap/connection.rb', line 240 def connection=(adapter) if adapter.nil? or adapter.is_a?(Adapter::Base) @connection = adapter elsif adapter.is_a?(Hash) config = adapter @connection = self.class.instantiate_adapter(config) else setup_connection(adapter) end end |
#remove_connection ⇒ Object
216 217 218 219 |
# File 'lib/active_ldap/connection.rb', line 216 def remove_connection self.class.remove_connection(dn) @connection = nil end |
#retrieve_connection ⇒ Object
251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/active_ldap/connection.rb', line 251 def retrieve_connection conn = self.class.active_connections[dn] return conn if conn config = self.class.configuration(dn) return nil unless config conn = self.class.instantiate_adapter(config) @connection = self.class.active_connections[dn] = conn conn end |
#schema ⇒ Object
263 264 265 |
# File 'lib/active_ldap/connection.rb', line 263 def schema connection.schema end |
#setup_connection(config = nil) ⇒ Object
207 208 209 210 211 212 213 214 |
# File 'lib/active_ldap/connection.rb', line 207 def setup_connection(config=nil) config = self.class.ensure_configuration(config) config = self.class.configuration.merge(config) config = self.class.merge_configuration(config, self) remove_connection self.class.define_configuration(dn, config) end |