Module: ActiveLdap::Operations::Delete
- Defined in:
- lib/active_ldap/operations.rb
Instance Method Summary collapse
- #delete_all(options_or_filter = nil, deprecated_options = nil) ⇒ Object
- #delete_entry(dn, options = {}) ⇒ Object
- #destroy_all(options_or_filter = nil, deprecated_options = nil) ⇒ Object
Instance Method Details
#delete_all(options_or_filter = nil, deprecated_options = nil) ⇒ Object
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 |
# File 'lib/active_ldap/operations.rb', line 510 def delete_all(=nil, =nil) if .nil? if .is_a?(String) = {:filter => } else = ( || {}).dup end else = .merge(:filter => ) end targets = search().collect do |dn, attributes| dn end.sort_by do |dn| dn.upcase.reverse end.reverse delete_entry(targets, ) end |
#delete_entry(dn, options = {}) ⇒ Object
529 530 531 532 533 534 535 536 537 |
# File 'lib/active_ldap/operations.rb', line 529 def delete_entry(dn, ={}) [:connection] ||= connection begin [:connection].delete(dn, ) rescue Error format = _("Failed to delete LDAP entry: <%s>: %s") raise DeleteError.new(format % [dn.inspect, $!.]) end end |
#destroy_all(options_or_filter = nil, deprecated_options = nil) ⇒ Object
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 |
# File 'lib/active_ldap/operations.rb', line 492 def destroy_all(=nil, =nil) if .nil? if .is_a?(String) = {:filter => } else = ( || {}).dup end else = .merge(:filter => ) end find(:all, ).sort_by do |target| target.dn end.each do |target| target.destroy end end |