Sha256: b1b1833316cb444b4eda193950888dcd65622bb912b5e54b201ef7654c9bd863

Contents?: true

Size: 1.92 KB

Versions: 15

Compression:

Stored size: 1.92 KB

Contents

require 'active_ldap/association/collection'

module ActiveLdap
  module Association
    class BelongsToMany < Collection
      private
      def insert_entry(entry)
        _foreign_class = foreign_class
        entry = _foreign_class.find(entry) unless entry.is_a?(_foreign_class)
        old_value = entry[@options[:many], true]
        primary_key_name = @options[:primary_key_name]
        if primary_key_name == "dn"
          old_value = dn_values_to_string_values(old_value)
        end
        current_value = @owner[primary_key_name, true]
        current_value = dn_values_to_string_values(current_value)
        new_value = old_value + current_value
        new_value = new_value.uniq.sort
        if old_value != new_value
          entry[@options[:many]] = new_value
          entry.save
        end
      end

      def delete_entries(entries)
          _foreign_class = foreign_class
        entries.each do |entry|
          entry = _foreign_class.find(entry) unless entry.is_a?(_foreign_class)
          old_value = entry[@options[:many], true]
          primary_key_name = @options[:primary_key_name]
          if primary_key_name == "dn"
            old_value = dn_values_to_string_values(old_value)
          end
          current_value = @owner[primary_key_name, true]
          current_value = dn_values_to_string_values(current_value)
          new_value = old_value - current_value
          new_value = new_value.uniq.sort
          if old_value != new_value
            entry[@options[:many]] = new_value
            entry.save
          end
        end
      end

      def find_target
        values = @owner[@options[:primary_key_name], true].compact
        return [] if values.empty?

        key = @options[:many]
        components = values.collect do |value|
          [key, value]
        end
        options = find_options(:filter => [:or, *components])
        foreign_class.find(:all, options)
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
activeldap-3.2.3 lib/active_ldap/association/belongs_to_many.rb
powerhome-activeldap-3.2.3 lib/active_ldap/association/belongs_to_many.rb
activeldap-4.0.2 lib/active_ldap/association/belongs_to_many.rb
activeldap-4.0.1 lib/active_ldap/association/belongs_to_many.rb
activeldap-4.0.0 lib/active_ldap/association/belongs_to_many.rb
activeldap-3.2.2 lib/active_ldap/association/belongs_to_many.rb
activeldap-3.2.1 lib/active_ldap/association/belongs_to_many.rb
activeldap-3.2.0 lib/active_ldap/association/belongs_to_many.rb
activeldap-3.1.1 lib/active_ldap/association/belongs_to_many.rb
activeldap-3.1.0 lib/active_ldap/association/belongs_to_many.rb
activeldap-1.2.4 lib/active_ldap/association/belongs_to_many.rb
activeldap-1.2.3 lib/active_ldap/association/belongs_to_many.rb
activeldap3-1.2.3 lib/active_ldap/association/belongs_to_many.rb
activeldap-1.2.2 lib/active_ldap/association/belongs_to_many.rb
activeldap-1.2.1 lib/active_ldap/association/belongs_to_many.rb