1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00
activerecord-hackery--ransack/lib/ransack/context.rb

159 lines
4.6 KiB
Ruby
Raw Normal View History

2011-04-11 12:04:31 -04:00
require 'ransack/visitor'
2011-03-30 20:31:39 -04:00
module Ransack
class Context
attr_reader :search, :object, :klass, :base, :engine, :arel_visitor
attr_accessor :auth_object, :search_key
2011-03-30 20:31:39 -04:00
class << self
2011-09-03 15:37:02 -04:00
def for(object, options = {})
context = Class === object ?
for_class(object, options) :
for_object(object, options)
context or raise ArgumentError,
"Don't know what context to use for #{object}"
2011-03-30 20:31:39 -04:00
end
2011-09-03 15:37:02 -04:00
def for_class(klass, options = {})
2011-03-30 20:31:39 -04:00
if klass < ActiveRecord::Base
2011-09-03 15:37:02 -04:00
Adapters::ActiveRecord::Context.new(klass, options)
2011-03-30 20:31:39 -04:00
end
end
2011-09-03 15:37:02 -04:00
def for_object(object, options = {})
2011-03-30 20:31:39 -04:00
case object
when ActiveRecord::Relation
2011-09-03 15:37:02 -04:00
Adapters::ActiveRecord::Context.new(object.klass, options)
2011-03-30 20:31:39 -04:00
end
end
end
2011-09-03 15:37:02 -04:00
def initialize(object, options = {})
@object = relation_for(object)
2011-03-30 20:31:39 -04:00
@klass = @object.klass
@join_dependency = join_dependency(@object)
2011-09-03 15:37:02 -04:00
@join_type = options[:join_type] || Arel::OuterJoin
@search_key = options[:search_key] || Ransack.options[:search_key]
if ::ActiveRecord::VERSION::STRING >= "4.1"
@base = @join_dependency.join_root
@engine = @base.base_klass.arel_engine
else
@base = @join_dependency.join_base
@engine = @base.arel_engine
end
@default_table = Arel::Table.new(
@base.table_name, :as => @base.aliased_table_name, :engine => @engine
)
@bind_pairs = Hash.new do |hash, key|
parent, attr_name = get_parent_and_attribute_name(key.to_s)
if parent && attr_name
hash[key] = [parent, attr_name]
2011-03-30 20:31:39 -04:00
end
end
end
def klassify(obj)
if Class === obj && ::ActiveRecord::Base > obj
obj
elsif obj.respond_to? :klass
obj.klass
2013-08-06 13:00:52 -04:00
elsif obj.respond_to? :active_record # Rails 3
obj.active_record
elsif obj.respond_to? :base_klass # Rails 4
obj.base_klass
else
raise ArgumentError, "Don't know how to klassify #{obj.inspect}"
end
end
2011-03-30 20:31:39 -04:00
# Convert a string representing a chain of associations and an attribute
# into the attribute itself
def contextualize(str)
parent, attr_name = @bind_pairs[str]
table_for(parent)[attr_name]
end
def bind(object, str)
object.parent, object.attr_name = @bind_pairs[str]
2011-03-30 20:31:39 -04:00
end
def traverse(str, base = @base)
str ||= ''
if (segments = str.split(/_/)).size > 0
remainder = []
2011-03-30 20:31:39 -04:00
found_assoc = nil
while !found_assoc && segments.size > 0 do
# Strip the _of_Model_type text from the association name, but hold
# onto it in klass, for use as the next base
assoc, klass = unpolymorphize_association(segments.join('_'))
if found_assoc = get_association(assoc, base)
base = traverse(remainder.join('_'), klass || found_assoc.klass)
2011-03-30 20:31:39 -04:00
end
remainder.unshift segments.pop
2011-03-30 20:31:39 -04:00
end
raise UntraversableAssociationError,
"No association matches #{str}" unless found_assoc
2011-03-30 20:31:39 -04:00
end
klassify(base)
end
def association_path(str, base = @base)
base = klassify(base)
str ||= ''
path = []
segments = str.split(/_/)
association_parts = []
if (segments = str.split(/_/)).size > 0
while segments.size > 0 && !base.columns_hash[segments.join('_')] &&
association_parts << segments.shift do
assoc, klass = unpolymorphize_association(association_parts
.join('_'))
if found_assoc = get_association(assoc, base)
2011-03-30 20:31:39 -04:00
path += association_parts
association_parts = []
base = klassify(klass || found_assoc)
2011-03-30 20:31:39 -04:00
end
end
end
path.join('_')
end
def unpolymorphize_association(str)
if (match = str.match(/_of_([^_]+?)_type$/))
[match.pre_match, Kernel.const_get(match.captures.first)]
else
[str, nil]
end
end
def ransackable_attribute?(str, klass)
2013-12-06 19:51:55 -05:00
klass.ransackable_attributes(auth_object).include?(str) ||
klass.ransortable_attributes(auth_object).include?(str)
end
def ransackable_association?(str, klass)
klass.ransackable_associations(auth_object).include? str
end
def searchable_attributes(str = '')
traverse(str).ransackable_attributes(auth_object)
2011-03-30 20:31:39 -04:00
end
def sortable_attributes(str = '')
traverse(str).ransortable_attributes(auth_object)
end
def searchable_associations(str = '')
traverse(str).ransackable_associations(auth_object)
end
2011-03-30 20:31:39 -04:00
end
end