Sha256: a4795db458df02a4ff5682b1a2dba5aeb2f14a10518cb11536f4db539564ae79
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
class ThinkingSphinx::Masks::ScopesMask def initialize(search) @search = search end def can_handle?(method) public_methods(false).include?(method) || can_apply_scope?(method) end def facets(query = nil, options = {}) search = ThinkingSphinx.facets query, options ThinkingSphinx::Search::Merger.new(search).merge!( @search.query, @search.options ) end def search(query = nil, options = {}) query, options = nil, query if query.is_a?(Hash) ThinkingSphinx::Search::Merger.new(@search).merge! query, options end private def apply_scope(scope, *args) search *sphinx_scopes[scope].call(*args) end def can_apply_scope?(scope) @search.options[:classes].present? && @search.options[:classes].length == 1 && @search.options[:classes].first.respond_to?(:sphinx_scopes) && sphinx_scopes[scope].present? end def method_missing(method, *args, &block) apply_scope method, *args end def sphinx_scopes @search.options[:classes].first.sphinx_scopes end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-3.0.4 | lib/thinking_sphinx/masks/scopes_mask.rb |