elasticsearch-model 6.1.1 → 7.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/Gemfile +18 -1
  4. data/LICENSE.txt +199 -10
  5. data/README.md +44 -45
  6. data/Rakefile +24 -10
  7. data/elasticsearch-model.gemspec +54 -39
  8. data/examples/activerecord_article.rb +17 -0
  9. data/examples/activerecord_associations.rb +33 -0
  10. data/examples/activerecord_custom_analyzer.rb +17 -0
  11. data/examples/activerecord_mapping_completion.rb +17 -0
  12. data/examples/activerecord_mapping_edge_ngram.rb +17 -0
  13. data/examples/couchbase_article.rb +17 -0
  14. data/examples/datamapper_article.rb +17 -0
  15. data/examples/mongoid_article.rb +17 -0
  16. data/examples/ohm_article.rb +17 -0
  17. data/examples/riak_article.rb +17 -0
  18. data/gemfiles/3.0.gemfile +18 -1
  19. data/gemfiles/4.0.gemfile +18 -1
  20. data/gemfiles/5.0.gemfile +18 -1
  21. data/gemfiles/6.0.gemfile +21 -3
  22. data/lib/elasticsearch/model.rb +25 -60
  23. data/lib/elasticsearch/model/adapter.rb +17 -0
  24. data/lib/elasticsearch/model/adapters/active_record.rb +17 -0
  25. data/lib/elasticsearch/model/adapters/default.rb +17 -0
  26. data/lib/elasticsearch/model/adapters/mongoid.rb +17 -0
  27. data/lib/elasticsearch/model/adapters/multiple.rb +29 -4
  28. data/lib/elasticsearch/model/callbacks.rb +17 -0
  29. data/lib/elasticsearch/model/client.rb +17 -0
  30. data/lib/elasticsearch/model/ext/active_record.rb +17 -0
  31. data/lib/elasticsearch/model/hash_wrapper.rb +17 -0
  32. data/lib/elasticsearch/model/importing.rb +60 -16
  33. data/lib/elasticsearch/model/indexing.rb +69 -43
  34. data/lib/elasticsearch/model/multimodel.rb +17 -0
  35. data/lib/elasticsearch/model/naming.rb +19 -19
  36. data/lib/elasticsearch/model/proxy.rb +58 -21
  37. data/lib/elasticsearch/model/response.rb +17 -0
  38. data/lib/elasticsearch/model/response/aggregations.rb +17 -0
  39. data/lib/elasticsearch/model/response/base.rb +22 -1
  40. data/lib/elasticsearch/model/response/pagination.rb +17 -0
  41. data/lib/elasticsearch/model/response/pagination/kaminari.rb +17 -0
  42. data/lib/elasticsearch/model/response/pagination/will_paginate.rb +17 -0
  43. data/lib/elasticsearch/model/response/records.rb +17 -1
  44. data/lib/elasticsearch/model/response/result.rb +17 -0
  45. data/lib/elasticsearch/model/response/results.rb +17 -0
  46. data/lib/elasticsearch/model/response/suggestions.rb +17 -0
  47. data/lib/elasticsearch/model/searching.rb +17 -0
  48. data/lib/elasticsearch/model/serializing.rb +17 -0
  49. data/lib/elasticsearch/model/version.rb +18 -1
  50. data/spec/elasticsearch/model/adapter_spec.rb +17 -0
  51. data/spec/elasticsearch/model/adapters/active_record/associations_spec.rb +17 -0
  52. data/spec/elasticsearch/model/adapters/active_record/basic_spec.rb +281 -226
  53. data/spec/elasticsearch/model/adapters/active_record/dynamic_index_name_spec.rb +17 -0
  54. data/spec/elasticsearch/model/adapters/active_record/import_spec.rb +18 -12
  55. data/spec/elasticsearch/model/adapters/active_record/multi_model_spec.rb +17 -0
  56. data/spec/elasticsearch/model/adapters/active_record/namespaced_model_spec.rb +18 -1
  57. data/spec/elasticsearch/model/adapters/active_record/pagination_spec.rb +17 -0
  58. data/spec/elasticsearch/model/adapters/active_record/parent_child_spec.rb +18 -1
  59. data/spec/elasticsearch/model/adapters/active_record/serialization_spec.rb +17 -0
  60. data/spec/elasticsearch/model/adapters/active_record_spec.rb +17 -0
  61. data/spec/elasticsearch/model/adapters/default_spec.rb +17 -0
  62. data/spec/elasticsearch/model/adapters/mongoid/basic_spec.rb +17 -0
  63. data/spec/elasticsearch/model/adapters/mongoid/multi_model_spec.rb +28 -11
  64. data/spec/elasticsearch/model/adapters/mongoid_spec.rb +17 -0
  65. data/spec/elasticsearch/model/adapters/multiple_spec.rb +17 -0
  66. data/spec/elasticsearch/model/callbacks_spec.rb +17 -0
  67. data/spec/elasticsearch/model/client_spec.rb +17 -0
  68. data/spec/elasticsearch/model/hash_wrapper_spec.rb +17 -0
  69. data/spec/elasticsearch/model/importing_spec.rb +29 -0
  70. data/spec/elasticsearch/model/indexing_spec.rb +111 -15
  71. data/spec/elasticsearch/model/module_spec.rb +18 -25
  72. data/spec/elasticsearch/model/multimodel_spec.rb +17 -0
  73. data/spec/elasticsearch/model/naming_spec.rb +22 -5
  74. data/spec/elasticsearch/model/proxy_spec.rb +17 -0
  75. data/spec/elasticsearch/model/response/aggregations_spec.rb +17 -0
  76. data/spec/elasticsearch/model/response/base_spec.rb +17 -0
  77. data/spec/elasticsearch/model/response/pagination/kaminari_spec.rb +85 -23
  78. data/spec/elasticsearch/model/response/pagination/will_paginate_spec.rb +17 -0
  79. data/spec/elasticsearch/model/response/records_spec.rb +17 -0
  80. data/spec/elasticsearch/model/response/response_spec.rb +17 -0
  81. data/spec/elasticsearch/model/response/result_spec.rb +17 -0
  82. data/spec/elasticsearch/model/response/results_spec.rb +17 -0
  83. data/spec/elasticsearch/model/searching_search_request_spec.rb +17 -0
  84. data/spec/elasticsearch/model/searching_spec.rb +17 -0
  85. data/spec/elasticsearch/model/serializing_spec.rb +17 -0
  86. data/spec/spec_helper.rb +37 -5
  87. data/spec/support/app.rb +27 -2
  88. data/spec/support/app/answer.rb +17 -0
  89. data/spec/support/app/article.rb +17 -0
  90. data/spec/support/app/article_for_pagination.rb +17 -0
  91. data/spec/support/app/article_no_type.rb +37 -0
  92. data/spec/support/app/article_with_custom_serialization.rb +17 -0
  93. data/spec/support/app/article_with_dynamic_index_name.rb +17 -0
  94. data/spec/support/app/author.rb +17 -0
  95. data/spec/support/app/authorship.rb +17 -0
  96. data/spec/support/app/category.rb +17 -0
  97. data/spec/support/app/comment.rb +17 -0
  98. data/spec/support/app/episode.rb +17 -0
  99. data/spec/support/app/image.rb +17 -0
  100. data/spec/support/app/import_article.rb +17 -0
  101. data/spec/support/app/mongoid_article.rb +17 -0
  102. data/spec/support/app/namespaced_book.rb +17 -0
  103. data/spec/support/app/parent_and_child_searchable.rb +21 -4
  104. data/spec/support/app/post.rb +17 -0
  105. data/spec/support/app/question.rb +17 -0
  106. data/spec/support/app/searchable.rb +17 -0
  107. data/spec/support/app/series.rb +17 -0
  108. metadata +46 -46
  109. data/spec/elasticsearch/model/naming_inheritance_spec.rb +0 -184
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
 
@@ -13,7 +30,7 @@ module Elasticsearch
13
30
  #
14
31
  module Indexing
15
32
 
16
- # Wraps the [index settings](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/setup-configuration.html#configuration-index-settings)
33
+ # Wraps the [index settings](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html)
17
34
  #
18
35
  class Settings
19
36
  attr_accessor :settings
@@ -31,7 +48,7 @@ module Elasticsearch
31
48
  end
32
49
  end
33
50
 
34
- # Wraps the [index mappings](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping.html)
51
+ # Wraps the [index mappings](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html)
35
52
  #
36
53
  class Mappings
37
54
  attr_accessor :options, :type
@@ -39,9 +56,7 @@ module Elasticsearch
39
56
  # @private
40
57
  TYPES_WITH_EMBEDDED_PROPERTIES = %w(object nested)
41
58
 
42
- def initialize(type, options={})
43
- raise ArgumentError, "`type` is missing" if type.nil?
44
-
59
+ def initialize(type = nil, options={})
45
60
  @type = type
46
61
  @options = options
47
62
  @mapping = {}
@@ -72,7 +87,11 @@ module Elasticsearch
72
87
  end
73
88
 
74
89
  def to_hash
75
- { @type.to_sym => @options.merge( properties: @mapping ) }
90
+ if @type
91
+ { @type.to_sym => @options.merge( properties: @mapping ) }
92
+ else
93
+ @options.merge( properties: @mapping )
94
+ end
76
95
  end
77
96
 
78
97
  def as_json(options={})
@@ -229,10 +248,12 @@ module Elasticsearch
229
248
  delete_index!(options.merge index: target_index) if options[:force]
230
249
 
231
250
  unless index_exists?(index: target_index)
232
- self.client.indices.create index: target_index,
233
- body: {
234
- settings: settings,
235
- mappings: mappings }
251
+ options.delete(:force)
252
+ self.client.indices.create({ index: target_index,
253
+ body: {
254
+ settings: settings,
255
+ mappings: mappings }
256
+ }.merge(options))
236
257
  end
237
258
  end
238
259
 
@@ -287,7 +308,7 @@ module Elasticsearch
287
308
  #
288
309
  # Article.__elasticsearch__.refresh_index! index: 'my-index'
289
310
  #
290
- # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-refresh.html
311
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-refresh.html
291
312
  #
292
313
  def refresh_index!(options={})
293
314
  target_index = options.delete(:index) || self.index_name
@@ -317,13 +338,17 @@ module Elasticsearch
317
338
  #
318
339
  # @see #update_document
319
340
  #
320
- base.before_save do |i|
321
- if i.class.instance_methods.include?(:changes_to_save) # Rails 5.1
322
- i.instance_variable_set(:@__changed_model_attributes,
323
- Hash[ i.changes_to_save.map { |key, value| [key, value.last] } ])
324
- elsif i.class.instance_methods.include?(:changes)
325
- i.instance_variable_set(:@__changed_model_attributes,
326
- Hash[ i.changes.map { |key, value| [key, value.last] } ])
341
+ base.before_save do |obj|
342
+ if obj.respond_to?(:changes_to_save) # Rails 5.1
343
+ changes_to_save = obj.changes_to_save
344
+ elsif obj.respond_to?(:changes)
345
+ changes_to_save = obj.changes
346
+ end
347
+
348
+ if changes_to_save
349
+ attrs = obj.instance_variable_get(:@__changed_model_attributes) || {}
350
+ latest_changes = changes_to_save.inject({}) { |latest_changes, (k,v)| latest_changes.merge!(k => v.last) }
351
+ obj.instance_variable_set(:@__changed_model_attributes, attrs.merge(latest_changes))
327
352
  end
328
353
  end if base.respond_to?(:before_save)
329
354
  end
@@ -343,14 +368,13 @@ module Elasticsearch
343
368
  # @see http://rubydoc.info/gems/elasticsearch-api/Elasticsearch/API/Actions:index
344
369
  #
345
370
  def index_document(options={})
346
- document = self.as_indexed_json
347
-
348
- client.index(
349
- { index: index_name,
350
- type: document_type,
351
- id: self.id,
352
- body: document }.merge(options)
353
- )
371
+ document = as_indexed_json
372
+ request = { index: index_name,
373
+ id: id,
374
+ body: document }
375
+ request.merge!(type: document_type) if document_type
376
+
377
+ client.index(request.merge!(options))
354
378
  end
355
379
 
356
380
  # Deletes the model instance from the index
@@ -367,11 +391,11 @@ module Elasticsearch
367
391
  # @see http://rubydoc.info/gems/elasticsearch-api/Elasticsearch/API/Actions:delete
368
392
  #
369
393
  def delete_document(options={})
370
- client.delete(
371
- { index: index_name,
372
- type: document_type,
373
- id: self.id }.merge(options)
374
- )
394
+ request = { index: index_name,
395
+ id: self.id }
396
+ request.merge!(type: document_type) if document_type
397
+
398
+ client.delete(request.merge!(options))
375
399
  end
376
400
 
377
401
  # Tries to gather the changed attributes of a model instance
@@ -406,12 +430,14 @@ module Elasticsearch
406
430
  attributes_in_database
407
431
  end
408
432
 
409
- client.update(
410
- { index: index_name,
411
- type: document_type,
412
- id: self.id,
413
- body: { doc: attributes } }.merge(options)
414
- ) unless attributes.empty?
433
+ unless attributes.empty?
434
+ request = { index: index_name,
435
+ id: self.id,
436
+ body: { doc: attributes } }
437
+ request.merge!(type: document_type) if document_type
438
+
439
+ client.update(request.merge!(options))
440
+ end
415
441
  else
416
442
  index_document(options)
417
443
  end
@@ -432,12 +458,12 @@ module Elasticsearch
432
458
  # @return [Hash] The response from Elasticsearch
433
459
  #
434
460
  def update_document_attributes(attributes, options={})
435
- client.update(
436
- { index: index_name,
437
- type: document_type,
438
- id: self.id,
439
- body: { doc: attributes } }.merge(options)
440
- )
461
+ request = { index: index_name,
462
+ id: self.id,
463
+ body: { doc: attributes } }
464
+ request.merge!(type: document_type) if document_type
465
+
466
+ client.update(request.merge!(options))
441
467
  end
442
468
  end
443
469
 
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
 
@@ -75,31 +92,14 @@ module Elasticsearch
75
92
  private
76
93
 
77
94
  def implicit(prop)
78
- value = nil
79
-
80
- if Elasticsearch::Model.settings[:inheritance_enabled]
81
- self.ancestors.each do |klass|
82
- # When Naming is included in Proxy::ClassMethods the actual model
83
- # is among its ancestors. We don't want to call the actual model
84
- # since it will result in the same call to the same instance of
85
- # Proxy::ClassMethods. To prevent this we also skip the ancestor
86
- # that is the target.
87
- next if klass == self || self.respond_to?(:target) && klass == self.target
88
- break if value = klass.respond_to?(prop) && klass.send(prop)
89
- end
90
- end
91
-
92
- value || self.send("default_#{prop}")
95
+ self.send("default_#{prop}")
93
96
  end
94
97
 
95
98
  def default_index_name
96
99
  self.model_name.collection.gsub(/\//, '-')
97
100
  end
98
101
 
99
- def default_document_type
100
- DEFAULT_DOC_TYPE
101
- end
102
-
102
+ def default_document_type; end
103
103
  end
104
104
 
105
105
  module InstanceMethods
@@ -1,16 +1,33 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
 
4
21
  # This module provides a proxy interfacing between the including class and
5
- # {Elasticsearch::Model}, preventing the pollution of the including class namespace.
22
+ # `Elasticsearch::Model`, preventing the pollution of the including class namespace.
6
23
  #
7
24
  # The only "gateway" between the model and Elasticsearch::Model is the
8
- # `__elasticsearch__` class and instance method.
25
+ # `#__elasticsearch__` class and instance method.
9
26
  #
10
27
  # The including class must be compatible with
11
28
  # [ActiveModel](https://github.com/rails/rails/tree/master/activemodel).
12
29
  #
13
- # @example Include the {Elasticsearch::Model} module into an `Article` model
30
+ # @example Include the `Elasticsearch::Model` module into an `Article` model
14
31
  #
15
32
  # class Article < ActiveRecord::Base
16
33
  # include Elasticsearch::Model
@@ -36,21 +53,19 @@ module Elasticsearch
36
53
  # module and the functionality is accessible via the proxy.
37
54
  #
38
55
  def self.included(base)
56
+
39
57
  base.class_eval do
40
- # {ClassMethodsProxy} instance, accessed as `MyModel.__elasticsearch__`
41
- #
58
+
59
+ # `ClassMethodsProxy` instance, accessed as `MyModel.__elasticsearch__`
42
60
  def self.__elasticsearch__ &block
43
61
  @__elasticsearch__ ||= ClassMethodsProxy.new(self)
44
62
  @__elasticsearch__.instance_eval(&block) if block_given?
45
63
  @__elasticsearch__
46
64
  end
47
65
 
48
- # {InstanceMethodsProxy}, accessed as `@mymodel.__elasticsearch__`
49
- #
50
- def __elasticsearch__ &block
51
- @__elasticsearch__ ||= InstanceMethodsProxy.new(self)
52
- @__elasticsearch__.instance_eval(&block) if block_given?
53
- @__elasticsearch__
66
+ # Mix the importing module into the `ClassMethodsProxy`
67
+ self.__elasticsearch__.class_eval do
68
+ include Adapter.from_class(base).importing_mixin
54
69
  end
55
70
 
56
71
  # Register a callback for storing changed attributes for models which implement
@@ -58,18 +73,28 @@ module Elasticsearch
58
73
  #
59
74
  # @see http://api.rubyonrails.org/classes/ActiveModel/Dirty.html
60
75
  #
61
- before_save do |i|
62
- if i.class.instance_methods.include?(:changes_to_save) # Rails 5.1
63
- a = i.__elasticsearch__.instance_variable_get(:@__changed_model_attributes) || {}
64
- i.__elasticsearch__.instance_variable_set(:@__changed_model_attributes,
65
- a.merge(Hash[ i.changes_to_save.map { |key, value| [key, value.last] } ]))
66
- elsif i.class.instance_methods.include?(:changes)
67
- a = i.__elasticsearch__.instance_variable_get(:@__changed_model_attributes) || {}
68
- i.__elasticsearch__.instance_variable_set(:@__changed_model_attributes,
69
- a.merge(Hash[ i.changes.map { |key, value| [key, value.last] } ]))
76
+ before_save do |obj|
77
+ if obj.respond_to?(:changes_to_save) # Rails 5.1
78
+ changes_to_save = obj.changes_to_save
79
+ elsif obj.respond_to?(:changes)
80
+ changes_to_save = obj.changes
81
+ end
82
+
83
+ if changes_to_save
84
+ attrs = obj.__elasticsearch__.instance_variable_get(:@__changed_model_attributes) || {}
85
+ latest_changes = changes_to_save.inject({}) { |latest_changes, (k,v)| latest_changes.merge!(k => v.last) }
86
+ obj.__elasticsearch__.instance_variable_set(:@__changed_model_attributes, attrs.merge(latest_changes))
70
87
  end
71
88
  end if respond_to?(:before_save)
72
89
  end
90
+
91
+ # {InstanceMethodsProxy}, accessed as `@mymodel.__elasticsearch__`
92
+ #
93
+ def __elasticsearch__ &block
94
+ @__elasticsearch__ ||= InstanceMethodsProxy.new(self)
95
+ @__elasticsearch__.instance_eval(&block) if block_given?
96
+ @__elasticsearch__
97
+ end
73
98
  end
74
99
 
75
100
  # @overload dup
@@ -113,6 +138,11 @@ module Elasticsearch
113
138
  #
114
139
  class ClassMethodsProxy
115
140
  include Base
141
+ include Elasticsearch::Model::Client::ClassMethods
142
+ include Elasticsearch::Model::Naming::ClassMethods
143
+ include Elasticsearch::Model::Indexing::ClassMethods
144
+ include Elasticsearch::Model::Searching::ClassMethods
145
+ include Elasticsearch::Model::Importing::ClassMethods
116
146
  end
117
147
 
118
148
  # A proxy interfacing between Elasticsearch::Model instance methods and model instance methods
@@ -121,6 +151,10 @@ module Elasticsearch
121
151
  #
122
152
  class InstanceMethodsProxy
123
153
  include Base
154
+ include Elasticsearch::Model::Client::InstanceMethods
155
+ include Elasticsearch::Model::Naming::InstanceMethods
156
+ include Elasticsearch::Model::Indexing::InstanceMethods
157
+ include Elasticsearch::Model::Serializing::InstanceMethods
124
158
 
125
159
  def klass
126
160
  target.class
@@ -136,8 +170,11 @@ module Elasticsearch
136
170
  def as_json(options={})
137
171
  target.as_json(options)
138
172
  end
139
- end
140
173
 
174
+ def as_indexed_json(options={})
175
+ target.respond_to?(:as_indexed_json) ? target.__send__(:as_indexed_json, options) : super
176
+ end
177
+ end
141
178
  end
142
179
  end
143
180
  end
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
  module Response
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Elasticsearch
2
19
  module Model
3
20
  module Response
@@ -31,7 +48,11 @@ module Elasticsearch
31
48
  # Returns the total number of hits
32
49
  #
33
50
  def total
34
- response.response['hits']['total']
51
+ if response.response['hits']['total'].respond_to?(:keys)
52
+ response.response['hits']['total']['value']
53
+ else
54
+ response.response['hits']['total']
55
+ end
35
56
  end
36
57
 
37
58
  # Returns the max_score