Module: ActiveLdap::Operations::Update
- Defined in:
- lib/active_ldap/operations.rb
Instance Method Summary collapse
- #add_entry(dn, attributes, options = {}) ⇒ Object
- #modify_entry(dn, attributes, options = {}) ⇒ Object
- #modify_rdn_entry(dn, new_rdn, delete_old_rdn, new_superior, options = {}) ⇒ Object
- #update_all(attributes, filter = nil, options = {}) ⇒ Object
Instance Method Details
#add_entry(dn, attributes, options = {}) ⇒ Object
578 579 580 581 582 583 584 |
# File 'lib/active_ldap/operations.rb', line 578 def add_entry(dn, attributes, ={}) unnormalized_attributes = attributes.collect do |key, value| [:add, key, unnormalize_attribute(key, value)] end [:connection] ||= connection [:connection].add(dn, unnormalized_attributes, ) end |
#modify_entry(dn, attributes, options = {}) ⇒ Object
586 587 588 589 590 591 592 593 |
# File 'lib/active_ldap/operations.rb', line 586 def modify_entry(dn, attributes, ={}) return if attributes.empty? unnormalized_attributes = attributes.collect do |type, key, value| [type, key, unnormalize_attribute(key, value)] end [:connection] ||= connection [:connection].modify(dn, unnormalized_attributes, ) end |
#modify_rdn_entry(dn, new_rdn, delete_old_rdn, new_superior, options = {}) ⇒ Object
595 596 597 598 599 |
# File 'lib/active_ldap/operations.rb', line 595 def modify_rdn_entry(dn, new_rdn, delete_old_rdn, new_superior, ={}) [:connection] ||= connection [:connection].modify_rdn(dn, new_rdn, delete_old_rdn, new_superior, ) end |
#update_all(attributes, filter = nil, options = {}) ⇒ Object
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'lib/active_ldap/operations.rb', line 601 def update_all(attributes, filter=nil, ={}) = .dup if filter if filter.is_a?(String) and /[=\(\)&\|]/ !~ filter = .merge(:value => filter) else = .merge(:filter => filter) end end targets = search().collect do |dn, attrs| dn end unnormalized_attributes = attributes.collect do |name, value| normalized_name, normalized_value = normalize_attribute(name, value) [:replace, normalized_name, unnormalize_attribute(normalized_name, normalized_value)] end [:connection] ||= connection conn = [:connection] targets.each do |dn| conn.modify(dn, unnormalized_attributes, ) end end |