chewy 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +24 -2
- data/.rubocop_todo.yml +2 -2
- data/.travis.yml +38 -21
- data/.yardopts +5 -0
- data/Appraisals +55 -27
- data/CHANGELOG.md +57 -12
- data/Gemfile +14 -10
- data/LEGACY_DSL.md +497 -0
- data/README.md +249 -515
- data/chewy.gemspec +5 -4
- data/gemfiles/rails.4.0.activerecord.gemfile +14 -0
- data/gemfiles/rails.4.1.activerecord.gemfile +14 -0
- data/gemfiles/rails.4.2.activerecord.gemfile +8 -10
- data/gemfiles/rails.4.2.mongoid.5.1.gemfile +9 -10
- data/gemfiles/rails.5.0.activerecord.gemfile +8 -10
- data/gemfiles/rails.5.0.mongoid.6.0.gemfile +15 -0
- data/gemfiles/rails.5.1.activerecord.gemfile +15 -0
- data/gemfiles/rails.5.1.mongoid.6.1.gemfile +15 -0
- data/gemfiles/sequel.4.45.gemfile +11 -0
- data/lib/chewy.rb +77 -43
- data/lib/chewy/config.rb +44 -7
- data/lib/chewy/errors.rb +2 -2
- data/lib/chewy/fields/base.rb +39 -32
- data/lib/chewy/fields/root.rb +33 -7
- data/lib/chewy/index.rb +237 -149
- data/lib/chewy/index/actions.rb +85 -28
- data/lib/chewy/index/aliases.rb +2 -1
- data/lib/chewy/index/settings.rb +9 -5
- data/lib/chewy/index/specification.rb +58 -0
- data/lib/chewy/journal.rb +40 -92
- data/lib/chewy/query.rb +43 -27
- data/lib/chewy/query/compose.rb +13 -13
- data/lib/chewy/query/criteria.rb +13 -13
- data/lib/chewy/query/filters.rb +1 -1
- data/lib/chewy/query/loading.rb +1 -1
- data/lib/chewy/query/nodes/and.rb +2 -2
- data/lib/chewy/query/nodes/bool.rb +1 -1
- data/lib/chewy/query/nodes/equal.rb +2 -2
- data/lib/chewy/query/nodes/exists.rb +1 -1
- data/lib/chewy/query/nodes/has_relation.rb +2 -2
- data/lib/chewy/query/nodes/match_all.rb +1 -1
- data/lib/chewy/query/nodes/missing.rb +1 -1
- data/lib/chewy/query/nodes/not.rb +2 -2
- data/lib/chewy/query/nodes/or.rb +2 -2
- data/lib/chewy/query/nodes/prefix.rb +1 -1
- data/lib/chewy/query/nodes/query.rb +2 -2
- data/lib/chewy/query/nodes/range.rb +4 -4
- data/lib/chewy/query/nodes/regexp.rb +4 -4
- data/lib/chewy/query/nodes/script.rb +3 -3
- data/lib/chewy/query/pagination.rb +10 -1
- data/lib/chewy/railtie.rb +1 -0
- data/lib/chewy/rake_helper.rb +265 -48
- data/lib/chewy/rspec/update_index.rb +30 -22
- data/lib/chewy/search.rb +78 -21
- data/lib/chewy/search/loader.rb +83 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/pagination/will_paginate.rb +41 -0
- data/lib/chewy/search/parameters.rb +150 -0
- data/lib/chewy/search/parameters/aggs.rb +16 -0
- data/lib/chewy/search/parameters/concerns/bool_storage.rb +24 -0
- data/lib/chewy/search/parameters/concerns/hash_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/integer_storage.rb +14 -0
- data/lib/chewy/search/parameters/concerns/query_storage.rb +237 -0
- data/lib/chewy/search/parameters/concerns/string_array_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/string_storage.rb +14 -0
- data/lib/chewy/search/parameters/docvalue_fields.rb +12 -0
- data/lib/chewy/search/parameters/explain.rb +16 -0
- data/lib/chewy/search/parameters/filter.rb +47 -0
- data/lib/chewy/search/parameters/highlight.rb +16 -0
- data/lib/chewy/search/parameters/indices_boost.rb +52 -0
- data/lib/chewy/search/parameters/limit.rb +17 -0
- data/lib/chewy/search/parameters/load.rb +32 -0
- data/lib/chewy/search/parameters/min_score.rb +16 -0
- data/lib/chewy/search/parameters/none.rb +27 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +64 -0
- data/lib/chewy/search/parameters/post_filter.rb +19 -0
- data/lib/chewy/search/parameters/preference.rb +16 -0
- data/lib/chewy/search/parameters/profile.rb +16 -0
- data/lib/chewy/search/parameters/query.rb +19 -0
- data/lib/chewy/search/parameters/request_cache.rb +27 -0
- data/lib/chewy/search/parameters/rescore.rb +29 -0
- data/lib/chewy/search/parameters/script_fields.rb +16 -0
- data/lib/chewy/search/parameters/search_after.rb +20 -0
- data/lib/chewy/search/parameters/search_type.rb +16 -0
- data/lib/chewy/search/parameters/source.rb +73 -0
- data/lib/chewy/search/parameters/storage.rb +95 -0
- data/lib/chewy/search/parameters/stored_fields.rb +63 -0
- data/lib/chewy/search/parameters/suggest.rb +16 -0
- data/lib/chewy/search/parameters/terminate_after.rb +16 -0
- data/lib/chewy/search/parameters/timeout.rb +16 -0
- data/lib/chewy/search/parameters/track_scores.rb +16 -0
- data/lib/chewy/search/parameters/types.rb +20 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/query_proxy.rb +257 -0
- data/lib/chewy/search/request.rb +1021 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +50 -0
- data/lib/chewy/search/scrolling.rb +136 -0
- data/lib/chewy/stash.rb +70 -0
- data/lib/chewy/strategy.rb +10 -3
- data/lib/chewy/strategy/active_job.rb +1 -0
- data/lib/chewy/strategy/atomic.rb +1 -3
- data/lib/chewy/strategy/bypass.rb +1 -1
- data/lib/chewy/strategy/resque.rb +1 -0
- data/lib/chewy/strategy/shoryuken.rb +40 -0
- data/lib/chewy/strategy/sidekiq.rb +13 -3
- data/lib/chewy/type.rb +29 -7
- data/lib/chewy/type/actions.rb +26 -2
- data/lib/chewy/type/adapter/active_record.rb +44 -29
- data/lib/chewy/type/adapter/base.rb +27 -7
- data/lib/chewy/type/adapter/mongoid.rb +18 -7
- data/lib/chewy/type/adapter/object.rb +187 -26
- data/lib/chewy/type/adapter/orm.rb +59 -32
- data/lib/chewy/type/adapter/sequel.rb +32 -16
- data/lib/chewy/type/import.rb +145 -191
- data/lib/chewy/type/import/bulk_builder.rb +122 -0
- data/lib/chewy/type/import/bulk_request.rb +76 -0
- data/lib/chewy/type/import/journal_builder.rb +45 -0
- data/lib/chewy/type/import/routine.rb +138 -0
- data/lib/chewy/type/mapping.rb +11 -1
- data/lib/chewy/type/observe.rb +1 -1
- data/lib/chewy/type/syncer.rb +220 -0
- data/lib/chewy/type/witchcraft.rb +27 -13
- data/lib/chewy/type/wrapper.rb +28 -2
- data/lib/chewy/version.rb +1 -1
- data/lib/tasks/chewy.rake +84 -26
- data/spec/chewy/config_spec.rb +82 -1
- data/spec/chewy/fields/base_spec.rb +147 -112
- data/spec/chewy/fields/root_spec.rb +75 -18
- data/spec/chewy/fields/time_fields_spec.rb +2 -3
- data/spec/chewy/index/actions_spec.rb +180 -50
- data/spec/chewy/index/aliases_spec.rb +2 -2
- data/spec/chewy/index/settings_spec.rb +67 -38
- data/spec/chewy/index/specification_spec.rb +160 -0
- data/spec/chewy/index_spec.rb +57 -66
- data/spec/chewy/journal_spec.rb +149 -54
- data/spec/chewy/minitest/helpers_spec.rb +4 -4
- data/spec/chewy/minitest/search_index_receiver_spec.rb +1 -1
- data/spec/chewy/query/criteria_spec.rb +179 -179
- data/spec/chewy/query/filters_spec.rb +15 -15
- data/spec/chewy/query/loading_spec.rb +22 -20
- data/spec/chewy/query/nodes/and_spec.rb +2 -2
- data/spec/chewy/query/nodes/bool_spec.rb +4 -4
- data/spec/chewy/query/nodes/equal_spec.rb +19 -19
- data/spec/chewy/query/nodes/exists_spec.rb +6 -6
- data/spec/chewy/query/nodes/has_child_spec.rb +19 -19
- data/spec/chewy/query/nodes/has_parent_spec.rb +19 -19
- data/spec/chewy/query/nodes/missing_spec.rb +5 -5
- data/spec/chewy/query/nodes/not_spec.rb +3 -2
- data/spec/chewy/query/nodes/or_spec.rb +2 -2
- data/spec/chewy/query/nodes/prefix_spec.rb +5 -5
- data/spec/chewy/query/nodes/query_spec.rb +2 -2
- data/spec/chewy/query/nodes/range_spec.rb +18 -18
- data/spec/chewy/query/nodes/raw_spec.rb +1 -1
- data/spec/chewy/query/nodes/regexp_spec.rb +14 -14
- data/spec/chewy/query/nodes/script_spec.rb +4 -4
- data/spec/chewy/query/pagination/kaminari_spec.rb +3 -55
- data/spec/chewy/query/pagination/will_paginate_spec.rb +5 -0
- data/spec/chewy/query/pagination_spec.rb +25 -21
- data/spec/chewy/query_spec.rb +501 -560
- data/spec/chewy/rake_helper_spec.rb +368 -0
- data/spec/chewy/repository_spec.rb +4 -4
- data/spec/chewy/rspec/update_index_spec.rb +89 -56
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +117 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +71 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +17 -0
- data/spec/chewy/search/pagination/will_paginate_examples.rb +63 -0
- data/spec/chewy/search/pagination/will_paginate_spec.rb +17 -0
- data/spec/chewy/search/parameters/aggs_spec.rb +5 -0
- data/spec/chewy/search/parameters/bool_storage_examples.rb +53 -0
- data/spec/chewy/search/parameters/docvalue_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/explain_spec.rb +5 -0
- data/spec/chewy/search/parameters/filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/hash_storage_examples.rb +59 -0
- data/spec/chewy/search/parameters/highlight_spec.rb +5 -0
- data/spec/chewy/search/parameters/indices_boost_spec.rb +83 -0
- data/spec/chewy/search/parameters/integer_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/limit_spec.rb +5 -0
- data/spec/chewy/search/parameters/load_spec.rb +60 -0
- data/spec/chewy/search/parameters/min_score_spec.rb +32 -0
- data/spec/chewy/search/parameters/none_spec.rb +5 -0
- data/spec/chewy/search/parameters/offset_spec.rb +5 -0
- data/spec/chewy/search/parameters/order_spec.rb +65 -0
- data/spec/chewy/search/parameters/post_filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/preference_spec.rb +5 -0
- data/spec/chewy/search/parameters/profile_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_storage_examples.rb +388 -0
- data/spec/chewy/search/parameters/request_cache_spec.rb +67 -0
- data/spec/chewy/search/parameters/rescore_spec.rb +62 -0
- data/spec/chewy/search/parameters/script_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/search_after_spec.rb +32 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +156 -0
- data/spec/chewy/search/parameters/storage_spec.rb +60 -0
- data/spec/chewy/search/parameters/stored_fields_spec.rb +126 -0
- data/spec/chewy/search/parameters/string_array_storage_examples.rb +63 -0
- data/spec/chewy/search/parameters/string_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/suggest_spec.rb +5 -0
- data/spec/chewy/search/parameters/terminate_after_spec.rb +5 -0
- data/spec/chewy/search/parameters/timeout_spec.rb +5 -0
- data/spec/chewy/search/parameters/track_scores_spec.rb +5 -0
- data/spec/chewy/search/parameters/types_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +130 -0
- data/spec/chewy/search/query_proxy_spec.rb +68 -0
- data/spec/chewy/search/request_spec.rb +669 -0
- data/spec/chewy/search/response_spec.rb +192 -0
- data/spec/chewy/search/scrolling_spec.rb +169 -0
- data/spec/chewy/search_spec.rb +13 -6
- data/spec/chewy/stash_spec.rb +95 -0
- data/spec/chewy/strategy/active_job_spec.rb +6 -0
- data/spec/chewy/strategy/resque_spec.rb +6 -0
- data/spec/chewy/strategy/shoryuken_spec.rb +64 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +8 -0
- data/spec/chewy/strategy_spec.rb +6 -6
- data/spec/chewy/type/actions_spec.rb +29 -10
- data/spec/chewy/type/adapter/active_record_spec.rb +203 -91
- data/spec/chewy/type/adapter/mongoid_spec.rb +112 -54
- data/spec/chewy/type/adapter/object_spec.rb +101 -28
- data/spec/chewy/type/adapter/sequel_spec.rb +149 -82
- data/spec/chewy/type/import/bulk_builder_spec.rb +279 -0
- data/spec/chewy/type/import/bulk_request_spec.rb +102 -0
- data/spec/chewy/type/import/journal_builder_spec.rb +95 -0
- data/spec/chewy/type/import/routine_spec.rb +110 -0
- data/spec/chewy/type/import_spec.rb +350 -271
- data/spec/chewy/type/mapping_spec.rb +54 -18
- data/spec/chewy/type/observe_spec.rb +5 -1
- data/spec/chewy/type/syncer_spec.rb +123 -0
- data/spec/chewy/type/witchcraft_spec.rb +45 -29
- data/spec/chewy/type/wrapper_spec.rb +63 -23
- data/spec/chewy/type_spec.rb +28 -7
- data/spec/chewy_spec.rb +75 -7
- data/spec/spec_helper.rb +5 -2
- data/spec/support/active_record.rb +5 -1
- data/spec/support/class_helpers.rb +0 -14
- data/spec/support/mongoid.rb +15 -3
- data/spec/support/sequel.rb +6 -1
- metadata +198 -37
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -16
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.will_paginate.gemfile +0 -15
- data/gemfiles/rails.5.0.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/sequel.4.38.gemfile +0 -14
- data/lib/chewy/journal/apply.rb +0 -31
- data/lib/chewy/journal/clean.rb +0 -24
- data/lib/chewy/journal/entry.rb +0 -83
- data/lib/chewy/journal/query.rb +0 -87
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/scoping.rb +0 -20
- data/spec/chewy/journal/apply_spec.rb +0 -120
- data/spec/chewy/journal/entry_spec.rb +0 -237
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -59
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'chewy/search/parameters/storage'
|
2
|
+
|
3
|
+
module Chewy
|
4
|
+
module Search
|
5
|
+
class Parameters
|
6
|
+
# Just a standard hash storage. Nothing to see here.
|
7
|
+
#
|
8
|
+
# @see Chewy::Search::Parameters::HashStorage
|
9
|
+
# @see Chewy::Search::Request#aggregations
|
10
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html
|
11
|
+
class Aggs < Storage
|
12
|
+
include HashStorage
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Chewy
|
2
|
+
module Search
|
3
|
+
class Parameters
|
4
|
+
# Stores a boolean value. Any passed value is coerced to
|
5
|
+
# a boolean value.
|
6
|
+
module BoolStorage
|
7
|
+
# Performs values disjunction on update.
|
8
|
+
#
|
9
|
+
# @see Chewy::Search::Parameters::Storage#update!
|
10
|
+
# @param other_value [true, false, Object] any acceptable storage value
|
11
|
+
# @return [true, false] updated value
|
12
|
+
def update!(other_value)
|
13
|
+
replace!(value || normalize(other_value))
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def normalize(value)
|
19
|
+
!!value
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Chewy
|
2
|
+
module Search
|
3
|
+
class Parameters
|
4
|
+
# Stores hashes with stringified keys.
|
5
|
+
module HashStorage
|
6
|
+
# Simply merges two value hashes on update
|
7
|
+
#
|
8
|
+
# @see Chewy::Search::Parameters::Storage#update!
|
9
|
+
# @param other_value [{String, Symbol => Object}] any acceptable storage value
|
10
|
+
# @return [{String => Object}] updated value
|
11
|
+
def update!(other_value)
|
12
|
+
value.merge!(normalize(other_value))
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def normalize(value)
|
18
|
+
(value || {}).stringify_keys
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,237 @@
|
|
1
|
+
require 'elasticsearch/dsl'
|
2
|
+
|
3
|
+
module Chewy
|
4
|
+
module Search
|
5
|
+
class Parameters
|
6
|
+
# This is a basic storage implementation for `query`, `filter`
|
7
|
+
# and `post_filter` storages. It uses `bool` query as a root
|
8
|
+
# structure for each of them. The `bool` root is ommited on
|
9
|
+
# rendering if there is only a single query in the `must` or
|
10
|
+
# `should` array. Besides the standard parameter storage
|
11
|
+
# capabilities, it provides specialized methods for the `bool`
|
12
|
+
# query component arrays separate update.
|
13
|
+
#
|
14
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-bool-query.html
|
15
|
+
# @see Chewy::Search::Parameters::Query
|
16
|
+
# @see Chewy::Search::Parameters::Filter
|
17
|
+
# @see Chewy::Search::Parameters::PostFilter
|
18
|
+
module QueryStorage
|
19
|
+
# Bool storage value object, encapsulates update and query
|
20
|
+
# rendering logic.
|
21
|
+
#
|
22
|
+
# @!attribute must
|
23
|
+
# @return [Array<Hash>]
|
24
|
+
# @!attribute should
|
25
|
+
# @return [Array<Hash>]
|
26
|
+
# @!attribute must_not
|
27
|
+
# @return [Array<Hash>]
|
28
|
+
# @!attribute minimum_should_match
|
29
|
+
# @return [String, Integer, nil]
|
30
|
+
class Bool
|
31
|
+
# Acceptable bool query keys
|
32
|
+
KEYS = %i[must should must_not minimum_should_match].freeze
|
33
|
+
attr_reader(*KEYS)
|
34
|
+
|
35
|
+
# @param must [Array<Hash>, Hash, nil]
|
36
|
+
# @param should [Array<Hash>, Hash, nil]
|
37
|
+
# @param must_not [Array<Hash>, Hash, nil]
|
38
|
+
# @param minimum_should_match [String, Integer, nil]
|
39
|
+
def initialize(must: [], should: [], must_not: [], minimum_should_match: nil)
|
40
|
+
@must = normalize(must)
|
41
|
+
@should = normalize(should)
|
42
|
+
@must_not = normalize(must_not)
|
43
|
+
@minimum_should_match = minimum_should_match
|
44
|
+
end
|
45
|
+
|
46
|
+
# Merges 2 values, returns new value object.
|
47
|
+
#
|
48
|
+
# @param other [Chewy::Search::Parameters::QueryStorage::Bool]
|
49
|
+
# @return [Chewy::Search::Parameters::QueryStorage::Bool]
|
50
|
+
def update(other)
|
51
|
+
self.class.new(
|
52
|
+
must: must + other.must,
|
53
|
+
should: should + other.should,
|
54
|
+
must_not: must_not + other.must_not,
|
55
|
+
minimum_should_match: other.minimum_should_match
|
56
|
+
)
|
57
|
+
end
|
58
|
+
|
59
|
+
# Renders `bool` query.
|
60
|
+
#
|
61
|
+
# @return [Hash, nil]
|
62
|
+
def query
|
63
|
+
if must.one? && should.empty? && must_not.empty?
|
64
|
+
must.first
|
65
|
+
else
|
66
|
+
reduced = reduce
|
67
|
+
{bool: reduce} if reduced.present?
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# Just a convention.
|
72
|
+
#
|
73
|
+
# @return [{Symbol => Array<Hash>, String, Integer, nil}]
|
74
|
+
def to_h
|
75
|
+
{
|
76
|
+
must: must,
|
77
|
+
should: should,
|
78
|
+
must_not: must_not,
|
79
|
+
minimum_should_match: minimum_should_match
|
80
|
+
}
|
81
|
+
end
|
82
|
+
|
83
|
+
private
|
84
|
+
|
85
|
+
def reduce
|
86
|
+
value = to_h
|
87
|
+
.reject { |_, v| v.blank? }
|
88
|
+
.map { |k, v| [k, v.is_a?(Array) && v.one? ? v.first : v] }.to_h
|
89
|
+
value.delete(:minimum_should_match) if should.empty?
|
90
|
+
value
|
91
|
+
end
|
92
|
+
|
93
|
+
def normalize(queries)
|
94
|
+
Array.wrap(queries).map do |query|
|
95
|
+
if query.is_a?(Proc)
|
96
|
+
Elasticsearch::DSL::Search::Query.new(&query).to_hash
|
97
|
+
else
|
98
|
+
query
|
99
|
+
end
|
100
|
+
end.reject(&:blank?)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
# Directly modifies `must` array of the root `bool` query.
|
105
|
+
# Pushes the passed query to the end of the array.
|
106
|
+
#
|
107
|
+
# @see Chewy::Search::QueryProxy#must
|
108
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
109
|
+
# @return [{Symbol => Array<Hash>}]
|
110
|
+
def must(other_value)
|
111
|
+
update!(must: other_value)
|
112
|
+
end
|
113
|
+
|
114
|
+
# Directly modifies `should` array of the root `bool` query.
|
115
|
+
# Pushes the passed query to the end of the array.
|
116
|
+
#
|
117
|
+
# @see Chewy::Search::QueryProxy#should
|
118
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
119
|
+
# @return [{Symbol => Array<Hash>}]
|
120
|
+
def should(other_value)
|
121
|
+
update!(should: other_value)
|
122
|
+
end
|
123
|
+
|
124
|
+
# Directly modifies `must_not` array of the root `bool` query.
|
125
|
+
# Pushes the passed query to the end of the array.
|
126
|
+
#
|
127
|
+
# @see Chewy::Search::QueryProxy#must_not
|
128
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
129
|
+
# @return [{Symbol => Array<Hash>}]
|
130
|
+
def must_not(other_value)
|
131
|
+
update!(must_not: other_value)
|
132
|
+
end
|
133
|
+
|
134
|
+
# Unlike {#must} doesn't modify `must` array, but joins 2 queries
|
135
|
+
# into a single `must` array of the new root `bool` query.
|
136
|
+
# If any of the used queries is a `bool` query from the storage
|
137
|
+
# and contains a single query in `must` or `should` array, it will
|
138
|
+
# be reduced to this query, so in some cases it will act exactly
|
139
|
+
# the same way as {#must}.
|
140
|
+
#
|
141
|
+
# @see Chewy::Search::QueryProxy#and
|
142
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
143
|
+
# @return [{Symbol => Array<Hash>}]
|
144
|
+
def and(other_value)
|
145
|
+
join_into(:must, other_value)
|
146
|
+
end
|
147
|
+
|
148
|
+
# Unlike {#should} doesn't modify `should` array, but joins 2 queries
|
149
|
+
# into a single `should` array of the new root `bool` query.
|
150
|
+
# If any of the used queries is a `bool` query from the storage
|
151
|
+
# and contains a single query in `must` or `should` array, it will
|
152
|
+
# be reduced to this query, so in some cases it will act exactly
|
153
|
+
# the same way as {#should}.
|
154
|
+
#
|
155
|
+
# @see Chewy::Search::QueryProxy#or
|
156
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
157
|
+
# @return [{Symbol => Array<Hash>}]
|
158
|
+
def or(other_value)
|
159
|
+
join_into(:should, other_value)
|
160
|
+
end
|
161
|
+
|
162
|
+
# Basically, an alias for {#must_not}.
|
163
|
+
#
|
164
|
+
# @see #must_not
|
165
|
+
# @see Chewy::Search::QueryProxy#not
|
166
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
167
|
+
# @return [{Symbol => Array<Hash>}]
|
168
|
+
def not(other_value)
|
169
|
+
update!(must_not: normalize(other_value).query)
|
170
|
+
end
|
171
|
+
|
172
|
+
# Replaces `minimum_should_match` bool query value
|
173
|
+
#
|
174
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-minimum-should-match.html
|
175
|
+
# @param new_value [String, Integer] minimum_should_match value
|
176
|
+
# @return [{Symbol => Array<Hash>}]
|
177
|
+
def minimum_should_match(new_value)
|
178
|
+
update!(minimum_should_match: new_value)
|
179
|
+
end
|
180
|
+
|
181
|
+
# Uses `and` logic to merge storages.
|
182
|
+
#
|
183
|
+
# @see #and
|
184
|
+
# @see Chewy::Search::Parameters::Storage#merge!
|
185
|
+
# @param other [Chewy::Search::Parameters::Storage] other storage
|
186
|
+
# @return [{Symbol => Array<Hash>}]
|
187
|
+
def merge!(other)
|
188
|
+
self.and(other.value)
|
189
|
+
end
|
190
|
+
|
191
|
+
# Every query value is a hash of arrays and each array is
|
192
|
+
# glued with the corresponding array from the provided value.
|
193
|
+
#
|
194
|
+
# @see Chewy::Search::Parameters::Storage#update!
|
195
|
+
# @param other_value [Hash, Array] any acceptable storage value
|
196
|
+
# @return [{Symbol => Array<Hash>}]
|
197
|
+
def update!(other_value)
|
198
|
+
@value = value.update(normalize(other_value))
|
199
|
+
end
|
200
|
+
|
201
|
+
# Almost standard rendering logic, some reduction logic is
|
202
|
+
# applied to the value additionally.
|
203
|
+
#
|
204
|
+
# @see Chewy::Search::Parameters::Storage#render
|
205
|
+
# @return [{Symbol => Hash}]
|
206
|
+
def render
|
207
|
+
rendered_bool = value.query
|
208
|
+
{self.class.param_name => rendered_bool} if rendered_bool.present?
|
209
|
+
end
|
210
|
+
|
211
|
+
private
|
212
|
+
|
213
|
+
def join_into(place, other_value)
|
214
|
+
values = [value, normalize(other_value)]
|
215
|
+
queries = values.map(&:query)
|
216
|
+
if queries.all?
|
217
|
+
replace!(place => queries)
|
218
|
+
elsif queries.none?
|
219
|
+
@value
|
220
|
+
else
|
221
|
+
replace!(values[queries.index(&:present?)])
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
def normalize(value)
|
226
|
+
value ||= {}
|
227
|
+
if value.is_a?(Hash)
|
228
|
+
value = value.symbolize_keys
|
229
|
+
value = Bool.new(**value.slice(*Bool::KEYS)) if (value.keys & Bool::KEYS).present?
|
230
|
+
end
|
231
|
+
value = Bool.new(must: value) unless value.is_a?(Bool)
|
232
|
+
value
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Chewy
|
2
|
+
module Search
|
3
|
+
class Parameters
|
4
|
+
# Stores value as an array of strings.
|
5
|
+
module StringArrayStorage
|
6
|
+
# Unions two arrays.
|
7
|
+
#
|
8
|
+
# @see Chewy::Search::Parameters::Storage#update!
|
9
|
+
# @param other_value [String, Symbol, Array<String, Symbol>] any acceptable storage value
|
10
|
+
# @return [Array<String, Symbol>] updated value
|
11
|
+
def update!(other_value)
|
12
|
+
@value = value | normalize(other_value)
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def normalize(value)
|
18
|
+
Array.wrap(value).flatten(1).map(&:to_s).reject(&:blank?)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'chewy/search/parameters/storage'
|
2
|
+
|
3
|
+
module Chewy
|
4
|
+
module Search
|
5
|
+
class Parameters
|
6
|
+
# Just a standard boolean storage, nothing to see here.
|
7
|
+
#
|
8
|
+
# @see Chewy::Search::Parameters::BoolStorage
|
9
|
+
# @see Chewy::Search::Request#explain
|
10
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/5.4/search-request-explain.html
|
11
|
+
class Explain < Storage
|
12
|
+
include BoolStorage
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'chewy/search/parameters/storage'
|
2
|
+
|
3
|
+
module Chewy
|
4
|
+
module Search
|
5
|
+
class Parameters
|
6
|
+
# This parameter storage doesn't have its own parameter at the
|
7
|
+
# ES request body. Instead, it is embedded to the root `bool`
|
8
|
+
# query of the `query` request parameter. Some additional query
|
9
|
+
# reduction is performed in case of only several `must` filters
|
10
|
+
# presence.
|
11
|
+
#
|
12
|
+
# @example
|
13
|
+
# scope = PlacesIndex.filter(term: {name: 'Moscow'})
|
14
|
+
# # => <PlacesIndex::Query {..., :body=>{:query=>{:bool=>{:filter=>{:term=>{:name=>"Moscow"}}}}}}>
|
15
|
+
# scope.query(match: {name: 'London'})
|
16
|
+
# # => <PlacesIndex::Query {..., :body=>{:query=>{:bool=>{
|
17
|
+
# # :must=>{:match=>{:name=>"London"}},
|
18
|
+
# # :filter=>{:term=>{:name=>"Moscow"}}}}}}>
|
19
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-filter-context.html
|
20
|
+
# @see Chewy::Search::Parameters::QueryStorage
|
21
|
+
class Filter < Storage
|
22
|
+
include QueryStorage
|
23
|
+
|
24
|
+
# Even more reduction added here, we don't need to wrap with
|
25
|
+
# `bool` query consists on `must` only.
|
26
|
+
#
|
27
|
+
# @see Chewy::Search::Parameters::Storage#render
|
28
|
+
# @return [{Symbol => Hash}]
|
29
|
+
def render
|
30
|
+
rendered_bool = filter_query(value.query)
|
31
|
+
{self.class.param_name => rendered_bool} if rendered_bool.present?
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def filter_query(value)
|
37
|
+
bool = value[:bool] if value
|
38
|
+
if bool && bool[:must].present? && bool[:should].blank? && bool[:must_not].blank?
|
39
|
+
bool[:must]
|
40
|
+
else
|
41
|
+
value
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'chewy/search/parameters/storage'
|
2
|
+
|
3
|
+
module Chewy
|
4
|
+
module Search
|
5
|
+
class Parameters
|
6
|
+
# Just a standard hash storage. Nothing to see here.
|
7
|
+
#
|
8
|
+
# @see Chewy::Search::Parameters::HashStorage
|
9
|
+
# @see Chewy::Search::Request#highlight
|
10
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/5.4/search-request-highlighting.html
|
11
|
+
class Highlight < Storage
|
12
|
+
include HashStorage
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|