Class: Searchkick::Results

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Enumerable
Defined in:
lib/searchkick/results.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, response, options = {}) ⇒ Results

Returns a new instance of Results.



10
11
12
13
14
# File 'lib/searchkick/results.rb', line 10

def initialize(klass, response, options = {})
  @klass = klass
  @response = response
  @options = options
end

Instance Attribute Details

#klassObject (readonly)

Returns the value of attribute klass.



6
7
8
# File 'lib/searchkick/results.rb', line 6

def klass
  @klass
end

#optionsObject (readonly)

Returns the value of attribute options.



6
7
8
# File 'lib/searchkick/results.rb', line 6

def options
  @options
end

#responseObject (readonly)

Returns the value of attribute response.



6
7
8
# File 'lib/searchkick/results.rb', line 6

def response
  @response
end

Instance Method Details

#current_pageObject



84
85
86
# File 'lib/searchkick/results.rb', line 84

def current_page
  options[:page]
end

#each_with_hit(&block) ⇒ Object



57
58
59
# File 'lib/searchkick/results.rb', line 57

def each_with_hit(&block)
  results.zip(hits).each(&block)
end

#facetsObject



71
72
73
# File 'lib/searchkick/results.rb', line 71

def facets
  response["facets"]
end

#first_page?Boolean

Returns:

  • (Boolean)


111
112
113
# File 'lib/searchkick/results.rb', line 111

def first_page?
  previous_page.nil?
end

#last_page?Boolean

Returns:

  • (Boolean)


115
116
117
# File 'lib/searchkick/results.rb', line 115

def last_page?
  next_page.nil?
end

#model_nameObject



75
76
77
# File 'lib/searchkick/results.rb', line 75

def model_name
  klass.model_name
end

#next_pageObject



107
108
109
# File 'lib/searchkick/results.rb', line 107

def next_page
  current_page < total_pages ? (current_page + 1) : nil
end

#offset_valueObject Also known as: offset



98
99
100
# File 'lib/searchkick/results.rb', line 98

def offset_value
  (current_page - 1) * per_page
end

#per_pageObject Also known as: limit_value



88
89
90
# File 'lib/searchkick/results.rb', line 88

def per_page
  options[:per_page]
end

#previous_pageObject



103
104
105
# File 'lib/searchkick/results.rb', line 103

def previous_page
  current_page > 1 ? (current_page - 1) : nil
end

#resultsObject



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/searchkick/results.rb', line 16

def results
  @results ||= begin
    if options[:load]
      # results can have different types
      results = {}

      hits.group_by{|hit, i| hit["_type"] }.each do |type, grouped_hits|
        records = type.camelize.constantize
        if options[:includes]
          records = records.includes(options[:includes])
        end
        results[type] =
          if records.respond_to?(:primary_key)
            records.where(records.primary_key => grouped_hits.map{|hit| hit["_id"] }).to_a
          else
            records.queryable.for_ids(grouped_hits.map{|hit| hit["_id"] }).to_a
          end
      end

      # sort
      hits.map do |hit|
        results[hit["_type"]].find{|r| r.id.to_s == hit["_id"].to_s }
      end.compact
    else
      hits.map do |hit|
        result = hit.except("_source").merge(hit["_source"])
        result["id"] = result["_id"]
        Hashie::Mash.new(result)
      end
    end
  end
end

#suggestionsObject



49
50
51
52
53
54
55
# File 'lib/searchkick/results.rb', line 49

def suggestions
  if response["suggest"]
    response["suggest"].values.flat_map{|v| v.first["options"] }.sort_by{|o| -o["score"] }.map{|o| o["text"] }.uniq
  else
    raise "Pass `suggest: true` to the search method for suggestions"
  end
end

#total_countObject Also known as: total_entries



79
80
81
# File 'lib/searchkick/results.rb', line 79

def total_count
  response["hits"]["total"]
end

#total_pagesObject Also known as: num_pages



93
94
95
# File 'lib/searchkick/results.rb', line 93

def total_pages
  (total_count / per_page.to_f).ceil
end

#with_detailsObject



61
62
63
64
65
66
67
68
69
# File 'lib/searchkick/results.rb', line 61

def with_details
  each_with_hit.map do |model, hit|
    details = {}
    if hit["highlight"]
      details[:highlight] = Hash[ hit["highlight"].map{|k, v| [k.sub(/\.analyzed\z/, "").to_sym, v.first] } ]
    end
    [model, details]
  end
end