Sha256: 2ac5968da316f2f261d51b9a0a45fe7810769859fe0d61972f32eace003a75aa

Contents?: true

Size: 864 Bytes

Versions: 1

Compression:

Stored size: 864 Bytes

Contents

require 'active_record'
require 'active_support/ordered_hash'

class Joiner::Joins
  attr_reader :model

  def initialize(model)
    @model       = model
    @joins_cache = Set.new
  end

  def add_join_to(path)
    return if path.empty?

    joins_cache.add path_as_hash(path)
  end

  def alias_for(path)
    return model.table_name if path.empty?

    add_join_to path
    join_values.join_association_for(path).tables.first.name
  end

  def join_values
    Joiner::JoinDependency.new model, table, joins_cache.to_a, alias_tracker
  end

  private

  attr_reader :joins_cache

  def alias_tracker
    ActiveRecord::Associations::AliasTracker.create(
      model.connection, table.name, []
    )
  end

  def path_as_hash(path)
    path[0..-2].reverse.inject(path.last) { |key, item| {item => key} }
  end

  def table
    @table ||= model.arel_table
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
joiner-0.4.0 lib/joiner/joins.rb