has_and_belongs_to_many_association.rb 5.7 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2 3
module ActiveRecord
  module Associations
    class HasAndBelongsToManyAssociation < AssociationCollection #:nodoc:
4 5
      def initialize(owner, association_name, association_class_name, association_class_primary_key_name, options)
        super
6

7
        @association_foreign_key = options[:association_foreign_key] || Inflector.underscore(Inflector.demodulize(association_class_name)) + "_id"
8 9
        @association_table_name = options[:table_name] || @association_class.table_name
        @join_table = options[:join_table]
10
        @order = options[:order] || "t.#{@association_class.primary_key}"
D
Initial  
David Heinemeier Hansson 已提交
11

12
        construct_sql
D
Initial  
David Heinemeier Hansson 已提交
13 14
      end
 
15 16 17 18 19 20 21
      def build(attributes = {})
        load_target
        record = @association_class.new(attributes)
        @target << record
        record
      end

D
Initial  
David Heinemeier Hansson 已提交
22 23
      # Removes all records from this association.  Returns +self+ so method calls may be chained.
      def clear
24
        return self if size == 0 # forces load_target if hasn't happened already
D
Initial  
David Heinemeier Hansson 已提交
25 26 27 28 29

        if sql = @options[:delete_sql]
          each { |record| @owner.connection.execute(sql) }
        elsif @options[:conditions] 
          sql = 
30
            "DELETE FROM #{@join_table} WHERE #{@association_class_primary_key_name} = #{@owner.quoted_id} " +
D
Initial  
David Heinemeier Hansson 已提交
31 32 33
            "AND #{@association_foreign_key} IN (#{collect { |record| record.id }.join(", ")})"
          @owner.connection.execute(sql)
        else
34
          sql = "DELETE FROM #{@join_table} WHERE #{@association_class_primary_key_name} = #{@owner.quoted_id}"
D
Initial  
David Heinemeier Hansson 已提交
35 36 37
          @owner.connection.execute(sql)
        end

38
        @target = []
D
Initial  
David Heinemeier Hansson 已提交
39 40 41
        self
      end

42
      def find_first
43
        load_target.first
44 45 46 47 48 49 50 51 52 53
      end

      def find(*args)
        # Return an Array if multiple ids are given.
        expects_array = args.first.kind_of?(Array)

        ids = args.flatten.compact.uniq

        # If no block is given, raise RecordNotFound.
        if ids.empty?
54
          raise RecordNotFound, "Couldn't find #{@association_class.name} without an ID"
55 56 57 58 59

        # If using a custom finder_sql, scan the entire collection.
        elsif @options[:finder_sql]
          if ids.size == 1
            id = ids.first
60
            record = load_target.detect { |record| id == record.id }
61 62
            expects_array? ? [record] : record
          else
63
            load_target.select { |record| ids.include?(record.id) }
64 65 66
          end

        # Otherwise, construct a query.
D
Initial  
David Heinemeier Hansson 已提交
67
        else
68
          ids_list = ids.map { |id| @owner.send(:quote, id) }.join(',')
69
          records = find_target(@finder_sql.sub(/ORDER BY/, "AND j.#{@association_foreign_key} IN (#{ids_list}) ORDER BY"))
70 71 72 73 74 75
          if records.size == ids.size
            if ids.size == 1 and !expects_array
              records.first
            else
              records
            end
D
Initial  
David Heinemeier Hansson 已提交
76
          else
77
            raise RecordNotFound, "Couldn't find #{@association_class.name} with ID in (#{ids_list})"
D
Initial  
David Heinemeier Hansson 已提交
78 79 80 81 82 83
          end
        end
      end

      def push_with_attributes(record, join_attributes = {})
        raise_on_type_mismatch(record)
84 85
        join_attributes.each { |key, value| record[key.to_s] = value }
        insert_record(record) unless @owner.new_record?
86
        @target << record
D
Initial  
David Heinemeier Hansson 已提交
87 88 89 90 91 92 93 94 95 96
        self
      end
      
      alias :concat_with_attributes :push_with_attributes

      def size
        @options[:uniq] ? count_records : super
      end
      
      protected
97
        def find_target(sql = @finder_sql)
D
Initial  
David Heinemeier Hansson 已提交
98 99 100
          records = @association_class.find_by_sql(sql)
          @options[:uniq] ? uniq(records) : records
        end
101

D
Initial  
David Heinemeier Hansson 已提交
102
        def count_records
103
          load_target.size
D
Initial  
David Heinemeier Hansson 已提交
104 105 106
        end

        def insert_record(record)
107
          return false unless record.save
108

D
Initial  
David Heinemeier Hansson 已提交
109 110 111
          if @options[:insert_sql]
            @owner.connection.execute(interpolate_sql(@options[:insert_sql], record))
          else
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
            columns = @owner.connection.columns(@join_table, "#{@join_table} Columns")

            attributes = columns.inject({}) do |attributes, column|
              case column.name
                when @association_class_primary_key_name
                  attributes[column.name] = @owner.quoted_id
                when @association_foreign_key
                  attributes[column.name] = record.quoted_id
                else
                  value = record[column.name]
                  attributes[column.name] = value unless value.nil?
              end
              attributes
            end

            sql =
              "INSERT INTO #{@join_table} (#{@owner.send(:quoted_column_names, attributes).join(', ')}) " +
              "VALUES (#{attributes.values.collect { |value| @owner.send(:quote, value) }.join(', ')})"

D
Initial  
David Heinemeier Hansson 已提交
131 132
            @owner.connection.execute(sql)
          end
133 134
          
          return true
D
Initial  
David Heinemeier Hansson 已提交
135
        end
136
        
D
Initial  
David Heinemeier Hansson 已提交
137 138 139 140 141
        def delete_records(records)
          if sql = @options[:delete_sql]
            records.each { |record| @owner.connection.execute(sql) }
          else
            ids = quoted_record_ids(records)
142
            sql = "DELETE FROM #{@join_table} WHERE #{@association_class_primary_key_name} = #{@owner.quoted_id} AND #{@association_foreign_key} IN (#{ids})"
D
Initial  
David Heinemeier Hansson 已提交
143 144 145
            @owner.connection.execute(sql)
          end
        end
146 147 148 149

        def construct_sql
          interpolate_sql_options!(@options, :finder_sql, :delete_sql)
          @finder_sql = @options[:finder_sql] ||
150
                "SELECT t.*, j.* FROM #{@join_table} j, #{@association_table_name} t " +
151 152 153 154 155 156
                "WHERE t.#{@association_class.primary_key} = j.#{@association_foreign_key} AND " +
                "j.#{@association_class_primary_key_name} = #{@owner.quoted_id} " +
                (@options[:conditions] ? " AND " + interpolate_sql(@options[:conditions]) : "") + " " +
                "ORDER BY #{@order}"
        end
    end
D
Initial  
David Heinemeier Hansson 已提交
157
  end
158
end