Sha256: 1e83e888143b421bf8c5ba3b5cdabe404fcf5eef43d296ea926cb719b69efdd9

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

require 'active_record'
require 'active_support/ordered_hash'

class Joiner::Joins
  ACTIVE_RECORD_VERSION = Gem::Version.new(ActiveRecord::VERSION::STRING)

  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
    association_for(path).tables.first.name
  end

  def join_values
    Joiner::JoinDependency.new(
      model, table, joins_cache.to_a, Arel::Nodes::OuterJoin
    )
  end

  private

  attr_reader :joins_cache

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

  def association_for(path)
    join_values.join_association_for path, alias_tracker
  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.5.0 lib/joiner/joins.rb