chewy 0.8.4 → 7.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +16 -0
- data/.github/workflows/ruby.yml +74 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +132 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +554 -245
- data/CODE_OF_CONDUCT.md +14 -0
- data/CONTRIBUTING.md +63 -0
- data/Gemfile +14 -11
- data/Guardfile +8 -6
- data/LICENSE.txt +1 -1
- data/README.md +748 -623
- data/Rakefile +11 -1
- data/chewy.gemspec +15 -19
- data/gemfiles/rails.5.2.activerecord.gemfile +11 -0
- data/gemfiles/rails.6.0.activerecord.gemfile +11 -0
- data/gemfiles/rails.6.1.activerecord.gemfile +13 -0
- data/gemfiles/rails.7.0.activerecord.gemfile +13 -0
- data/lib/chewy/config.rb +64 -50
- data/lib/chewy/errors.rb +10 -16
- data/lib/chewy/fields/base.rb +122 -32
- data/lib/chewy/fields/root.rb +48 -23
- data/lib/chewy/index/actions.rb +140 -54
- data/lib/chewy/index/adapter/active_record.rb +112 -0
- data/lib/chewy/{type → index}/adapter/base.rb +31 -12
- data/lib/chewy/index/adapter/object.rb +249 -0
- data/lib/chewy/index/adapter/orm.rb +194 -0
- data/lib/chewy/index/aliases.rb +14 -4
- data/lib/chewy/index/crutch.rb +40 -0
- data/lib/chewy/index/import/bulk_builder.rb +311 -0
- data/lib/chewy/index/import/bulk_request.rb +77 -0
- data/lib/chewy/index/import/journal_builder.rb +44 -0
- data/lib/chewy/index/import/routine.rb +139 -0
- data/lib/chewy/index/import.rb +243 -0
- data/lib/chewy/{type → index}/mapping.rb +79 -68
- data/lib/chewy/index/observe/active_record_methods.rb +87 -0
- data/lib/chewy/index/observe/callback.rb +34 -0
- data/lib/chewy/index/observe.rb +17 -0
- data/lib/chewy/index/settings.rb +10 -5
- data/lib/chewy/index/specification.rb +61 -0
- data/lib/chewy/index/syncer.rb +221 -0
- data/lib/chewy/{type → index}/witchcraft.rb +100 -39
- data/lib/chewy/index/wrapper.rb +95 -0
- data/lib/chewy/index.rb +216 -140
- data/lib/chewy/journal.rb +66 -0
- data/lib/chewy/log_subscriber.rb +8 -8
- data/lib/chewy/minitest/helpers.rb +150 -0
- data/lib/chewy/minitest/search_index_receiver.rb +76 -0
- data/lib/chewy/minitest.rb +1 -0
- data/lib/chewy/multi_search.rb +62 -0
- data/lib/chewy/railtie.rb +12 -25
- data/lib/chewy/rake_helper.rb +335 -37
- data/lib/chewy/repository.rb +2 -2
- data/lib/chewy/rspec/build_query.rb +12 -0
- data/lib/chewy/rspec/helpers.rb +55 -0
- data/lib/chewy/rspec/update_index.rb +106 -90
- data/lib/chewy/rspec.rb +3 -1
- data/lib/chewy/runtime/version.rb +4 -4
- data/lib/chewy/runtime.rb +1 -1
- data/lib/chewy/search/loader.rb +61 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/parameters/aggs.rb +16 -0
- data/lib/chewy/search/parameters/allow_partial_search_results.rb +27 -0
- data/lib/chewy/search/parameters/collapse.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 +238 -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/ignore_unavailable.rb +27 -0
- data/lib/chewy/search/parameters/indices.rb +78 -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 +25 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +51 -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 +77 -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/track_total_hits.rb +16 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/parameters.rb +170 -0
- data/lib/chewy/search/query_proxy.rb +264 -0
- data/lib/chewy/search/request.rb +1071 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +49 -0
- data/lib/chewy/search/scrolling.rb +137 -0
- data/lib/chewy/search.rb +68 -28
- data/lib/chewy/stash.rb +68 -0
- data/lib/chewy/strategy/active_job.rb +3 -2
- data/lib/chewy/strategy/atomic.rb +2 -4
- data/lib/chewy/strategy/atomic_no_refresh.rb +18 -0
- data/lib/chewy/strategy/base.rb +13 -3
- data/lib/chewy/strategy/bypass.rb +1 -2
- data/lib/chewy/strategy/delayed_sidekiq/scheduler.rb +148 -0
- data/lib/chewy/strategy/delayed_sidekiq/worker.rb +52 -0
- data/lib/chewy/strategy/delayed_sidekiq.rb +17 -0
- data/lib/chewy/strategy/lazy_sidekiq.rb +64 -0
- data/lib/chewy/strategy/sidekiq.rb +15 -2
- data/lib/chewy/strategy/urgent.rb +1 -1
- data/lib/chewy/strategy.rb +16 -20
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +81 -82
- data/lib/generators/chewy/install_generator.rb +3 -3
- data/lib/tasks/chewy.rake +99 -32
- data/migration_guide.md +56 -0
- data/spec/chewy/config_spec.rb +87 -15
- data/spec/chewy/fields/base_spec.rb +542 -233
- data/spec/chewy/fields/root_spec.rb +115 -17
- data/spec/chewy/fields/time_fields_spec.rb +13 -12
- data/spec/chewy/index/actions_spec.rb +595 -77
- data/spec/chewy/index/adapter/active_record_spec.rb +601 -0
- data/spec/chewy/index/adapter/object_spec.rb +243 -0
- data/spec/chewy/index/aliases_spec.rb +5 -5
- data/spec/chewy/index/import/bulk_builder_spec.rb +494 -0
- data/spec/chewy/index/import/bulk_request_spec.rb +95 -0
- data/spec/chewy/index/import/journal_builder_spec.rb +87 -0
- data/spec/chewy/index/import/routine_spec.rb +110 -0
- data/spec/chewy/index/import_spec.rb +615 -0
- data/spec/chewy/index/mapping_spec.rb +135 -0
- data/spec/chewy/index/observe/active_record_methods_spec.rb +68 -0
- data/spec/chewy/index/observe/callback_spec.rb +139 -0
- data/spec/chewy/index/observe_spec.rb +143 -0
- data/spec/chewy/index/settings_spec.rb +103 -50
- data/spec/chewy/index/specification_spec.rb +159 -0
- data/spec/chewy/index/syncer_spec.rb +118 -0
- data/spec/chewy/index/witchcraft_spec.rb +245 -0
- data/spec/chewy/index/wrapper_spec.rb +100 -0
- data/spec/chewy/index_spec.rb +149 -121
- data/spec/chewy/journal_spec.rb +223 -0
- data/spec/chewy/minitest/helpers_spec.rb +198 -0
- data/spec/chewy/minitest/search_index_receiver_spec.rb +118 -0
- data/spec/chewy/multi_search_spec.rb +84 -0
- data/spec/chewy/rake_helper_spec.rb +656 -0
- data/spec/chewy/repository_spec.rb +8 -8
- data/spec/chewy/rspec/build_query_spec.rb +34 -0
- data/spec/chewy/rspec/helpers_spec.rb +61 -0
- data/spec/chewy/rspec/update_index_spec.rb +220 -114
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +83 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +69 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +21 -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/collapse_spec.rb +5 -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/ignore_unavailable_spec.rb +67 -0
- data/spec/chewy/search/parameters/indices_spec.rb +99 -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 +72 -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 +434 -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 +35 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +162 -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/track_total_hits_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +161 -0
- data/spec/chewy/search/query_proxy_spec.rb +119 -0
- data/spec/chewy/search/request_spec.rb +880 -0
- data/spec/chewy/search/response_spec.rb +202 -0
- data/spec/chewy/search/scrolling_spec.rb +171 -0
- data/spec/chewy/search_spec.rb +82 -55
- data/spec/chewy/stash_spec.rb +85 -0
- data/spec/chewy/strategy/active_job_spec.rb +27 -8
- data/spec/chewy/strategy/atomic_no_refresh_spec.rb +60 -0
- data/spec/chewy/strategy/atomic_spec.rb +13 -11
- data/spec/chewy/strategy/delayed_sidekiq_spec.rb +190 -0
- data/spec/chewy/strategy/lazy_sidekiq_spec.rb +214 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +19 -7
- data/spec/chewy/strategy_spec.rb +19 -15
- data/spec/chewy_spec.rb +65 -88
- data/spec/spec_helper.rb +11 -20
- data/spec/support/active_record.rb +48 -6
- data/spec/support/class_helpers.rb +4 -19
- metadata +299 -183
- data/.travis.yml +0 -76
- data/Appraisals +0 -76
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.gemfile +0 -15
- data/gemfiles/rails.4.0.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.gemfile +0 -15
- data/gemfiles/rails.4.1.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.activerecord.gemfile +0 -16
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.5.0.0.beta3.activerecord.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/sequel.4.31.gemfile +0 -13
- data/lib/chewy/backports/deep_dup.rb +0 -46
- data/lib/chewy/backports/duplicable.rb +0 -90
- data/lib/chewy/query/compose.rb +0 -69
- data/lib/chewy/query/criteria.rb +0 -181
- data/lib/chewy/query/filters.rb +0 -227
- data/lib/chewy/query/loading.rb +0 -111
- data/lib/chewy/query/nodes/and.rb +0 -25
- data/lib/chewy/query/nodes/base.rb +0 -17
- data/lib/chewy/query/nodes/bool.rb +0 -32
- data/lib/chewy/query/nodes/equal.rb +0 -34
- data/lib/chewy/query/nodes/exists.rb +0 -20
- data/lib/chewy/query/nodes/expr.rb +0 -28
- data/lib/chewy/query/nodes/field.rb +0 -106
- data/lib/chewy/query/nodes/has_child.rb +0 -14
- data/lib/chewy/query/nodes/has_parent.rb +0 -14
- data/lib/chewy/query/nodes/has_relation.rb +0 -61
- data/lib/chewy/query/nodes/match_all.rb +0 -11
- data/lib/chewy/query/nodes/missing.rb +0 -20
- data/lib/chewy/query/nodes/not.rb +0 -25
- data/lib/chewy/query/nodes/or.rb +0 -25
- data/lib/chewy/query/nodes/prefix.rb +0 -18
- data/lib/chewy/query/nodes/query.rb +0 -20
- data/lib/chewy/query/nodes/range.rb +0 -63
- data/lib/chewy/query/nodes/raw.rb +0 -15
- data/lib/chewy/query/nodes/regexp.rb +0 -31
- data/lib/chewy/query/nodes/script.rb +0 -20
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/pagination.rb +0 -16
- data/lib/chewy/query/scoping.rb +0 -20
- data/lib/chewy/query.rb +0 -1026
- data/lib/chewy/strategy/resque.rb +0 -26
- data/lib/chewy/type/actions.rb +0 -19
- data/lib/chewy/type/adapter/active_record.rb +0 -72
- data/lib/chewy/type/adapter/mongoid.rb +0 -58
- data/lib/chewy/type/adapter/object.rb +0 -89
- data/lib/chewy/type/adapter/orm.rb +0 -156
- data/lib/chewy/type/adapter/sequel.rb +0 -75
- data/lib/chewy/type/crutch.rb +0 -31
- data/lib/chewy/type/import.rb +0 -224
- data/lib/chewy/type/observe.rb +0 -76
- data/lib/chewy/type/wrapper.rb +0 -53
- data/lib/chewy/type.rb +0 -89
- data/lib/sequel/plugins/chewy_observe.rb +0 -78
- data/spec/chewy/query/criteria_spec.rb +0 -433
- data/spec/chewy/query/filters_spec.rb +0 -173
- data/spec/chewy/query/loading_spec.rb +0 -86
- data/spec/chewy/query/nodes/and_spec.rb +0 -16
- data/spec/chewy/query/nodes/bool_spec.rb +0 -22
- data/spec/chewy/query/nodes/equal_spec.rb +0 -32
- data/spec/chewy/query/nodes/exists_spec.rb +0 -18
- data/spec/chewy/query/nodes/has_child_spec.rb +0 -40
- data/spec/chewy/query/nodes/has_parent_spec.rb +0 -40
- data/spec/chewy/query/nodes/match_all_spec.rb +0 -11
- data/spec/chewy/query/nodes/missing_spec.rb +0 -15
- data/spec/chewy/query/nodes/not_spec.rb +0 -16
- data/spec/chewy/query/nodes/or_spec.rb +0 -16
- data/spec/chewy/query/nodes/prefix_spec.rb +0 -16
- data/spec/chewy/query/nodes/query_spec.rb +0 -12
- data/spec/chewy/query/nodes/range_spec.rb +0 -32
- data/spec/chewy/query/nodes/raw_spec.rb +0 -11
- data/spec/chewy/query/nodes/regexp_spec.rb +0 -31
- data/spec/chewy/query/nodes/script_spec.rb +0 -15
- data/spec/chewy/query/pagination/kaminari_spec.rb +0 -57
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -60
- data/spec/chewy/query/pagination_spec.rb +0 -36
- data/spec/chewy/query_spec.rb +0 -632
- data/spec/chewy/strategy/resque_spec.rb +0 -40
- data/spec/chewy/type/actions_spec.rb +0 -31
- data/spec/chewy/type/adapter/active_record_spec.rb +0 -317
- data/spec/chewy/type/adapter/mongoid_spec.rb +0 -253
- data/spec/chewy/type/adapter/object_spec.rb +0 -139
- data/spec/chewy/type/adapter/sequel_spec.rb +0 -320
- data/spec/chewy/type/import_spec.rb +0 -433
- data/spec/chewy/type/mapping_spec.rb +0 -106
- data/spec/chewy/type/observe_spec.rb +0 -127
- data/spec/chewy/type/witchcraft_spec.rb +0 -154
- data/spec/chewy/type/wrapper_spec.rb +0 -58
- data/spec/chewy/type_spec.rb +0 -33
- data/spec/support/mongoid.rb +0 -81
- data/spec/support/sequel.rb +0 -75
@@ -1,15 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gem "activerecord", "~> 5.0.0.beta3"
|
6
|
-
gem "activesupport", "~> 5.0.0.beta3"
|
7
|
-
gem "activejob", "~> 5.0.0.beta3"
|
8
|
-
gem "will_paginate", :require => false
|
9
|
-
|
10
|
-
group :test do
|
11
|
-
gem "guard"
|
12
|
-
gem "guard-rspec"
|
13
|
-
end
|
14
|
-
|
15
|
-
gemspec :path => "../"
|
@@ -1,46 +0,0 @@
|
|
1
|
-
require 'chewy/backports/duplicable'
|
2
|
-
|
3
|
-
class Object
|
4
|
-
# Returns a deep copy of object if it's duplicable. If it's
|
5
|
-
# not duplicable, returns +self+.
|
6
|
-
#
|
7
|
-
# object = Object.new
|
8
|
-
# dup = object.deep_dup
|
9
|
-
# dup.instance_variable_set(:@a, 1)
|
10
|
-
#
|
11
|
-
# object.instance_variable_defined?(:@a) # => false
|
12
|
-
# dup.instance_variable_defined?(:@a) # => true
|
13
|
-
def deep_dup
|
14
|
-
duplicable? ? dup : self
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
class Array
|
19
|
-
# Returns a deep copy of array.
|
20
|
-
#
|
21
|
-
# array = [1, [2, 3]]
|
22
|
-
# dup = array.deep_dup
|
23
|
-
# dup[1][2] = 4
|
24
|
-
#
|
25
|
-
# array[1][2] # => nil
|
26
|
-
# dup[1][2] # => 4
|
27
|
-
def deep_dup
|
28
|
-
map { |it| it.deep_dup }
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
class Hash
|
33
|
-
# Returns a deep copy of hash.
|
34
|
-
#
|
35
|
-
# hash = { a: { b: 'b' } }
|
36
|
-
# dup = hash.deep_dup
|
37
|
-
# dup[:a][:c] = 'c'
|
38
|
-
#
|
39
|
-
# hash[:a][:c] # => nil
|
40
|
-
# dup[:a][:c] # => "c"
|
41
|
-
def deep_dup
|
42
|
-
each_with_object(dup) do |(key, value), hash|
|
43
|
-
hash[key.deep_dup] = value.deep_dup
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
@@ -1,90 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Most objects are cloneable, but not all. For example you can't dup +nil+:
|
3
|
-
#
|
4
|
-
# nil.dup # => TypeError: can't dup NilClass
|
5
|
-
#
|
6
|
-
# Classes may signal their instances are not duplicable removing +dup+/+clone+
|
7
|
-
# or raising exceptions from them. So, to dup an arbitrary object you normally
|
8
|
-
# use an optimistic approach and are ready to catch an exception, say:
|
9
|
-
#
|
10
|
-
# arbitrary_object.dup rescue object
|
11
|
-
#
|
12
|
-
# Rails dups objects in a few critical spots where they are not that arbitrary.
|
13
|
-
# That rescue is very expensive (like 40 times slower than a predicate), and it
|
14
|
-
# is often triggered.
|
15
|
-
#
|
16
|
-
# That's why we hardcode the following cases and check duplicable? instead of
|
17
|
-
# using that rescue idiom.
|
18
|
-
#++
|
19
|
-
class Object
|
20
|
-
# Can you safely dup this object?
|
21
|
-
#
|
22
|
-
# False for +nil+, +false+, +true+, symbol, and number objects;
|
23
|
-
# true otherwise.
|
24
|
-
def duplicable?
|
25
|
-
true
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
class NilClass
|
30
|
-
# +nil+ is not duplicable:
|
31
|
-
#
|
32
|
-
# nil.duplicable? # => false
|
33
|
-
# nil.dup # => TypeError: can't dup NilClass
|
34
|
-
def duplicable?
|
35
|
-
false
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
class FalseClass
|
40
|
-
# +false+ is not duplicable:
|
41
|
-
#
|
42
|
-
# false.duplicable? # => false
|
43
|
-
# false.dup # => TypeError: can't dup FalseClass
|
44
|
-
def duplicable?
|
45
|
-
false
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
class TrueClass
|
50
|
-
# +true+ is not duplicable:
|
51
|
-
#
|
52
|
-
# true.duplicable? # => false
|
53
|
-
# true.dup # => TypeError: can't dup TrueClass
|
54
|
-
def duplicable?
|
55
|
-
false
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
class Symbol
|
60
|
-
# Symbols are not duplicable:
|
61
|
-
#
|
62
|
-
# :my_symbol.duplicable? # => false
|
63
|
-
# :my_symbol.dup # => TypeError: can't dup Symbol
|
64
|
-
def duplicable?
|
65
|
-
false
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
class Numeric
|
70
|
-
# Numbers are not duplicable:
|
71
|
-
#
|
72
|
-
# 3.duplicable? # => false
|
73
|
-
# 3.dup # => TypeError: can't dup Fixnum
|
74
|
-
def duplicable?
|
75
|
-
false
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
require 'bigdecimal'
|
80
|
-
class BigDecimal
|
81
|
-
begin
|
82
|
-
BigDecimal.new('4.56').dup
|
83
|
-
|
84
|
-
def duplicable?
|
85
|
-
true
|
86
|
-
end
|
87
|
-
rescue TypeError
|
88
|
-
# can't dup, so use superclass implementation
|
89
|
-
end
|
90
|
-
end
|
data/lib/chewy/query/compose.rb
DELETED
@@ -1,69 +0,0 @@
|
|
1
|
-
module Chewy
|
2
|
-
class Query
|
3
|
-
module Compose
|
4
|
-
|
5
|
-
protected
|
6
|
-
|
7
|
-
def _filtered_query query, filter, options = {}
|
8
|
-
query = { match_all: {} } if !query.present? && filter.present?
|
9
|
-
|
10
|
-
if filter.present?
|
11
|
-
filtered = if query.present?
|
12
|
-
{ query: { filtered: {
|
13
|
-
query: query,
|
14
|
-
filter: filter
|
15
|
-
} } }
|
16
|
-
else
|
17
|
-
{ query: { filtered: {
|
18
|
-
filter: filter
|
19
|
-
} } }
|
20
|
-
end
|
21
|
-
filtered[:query][:filtered].merge!(strategy: options[:strategy].to_s) if options[:strategy].present?
|
22
|
-
filtered
|
23
|
-
elsif query.present?
|
24
|
-
{ query: query }
|
25
|
-
else
|
26
|
-
{ }
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
def _queries_join queries, logic
|
31
|
-
queries = queries.compact
|
32
|
-
|
33
|
-
if queries.many? || (queries.present? && logic == :must_not)
|
34
|
-
case logic
|
35
|
-
when :dis_max
|
36
|
-
{ dis_max: { queries: queries } }
|
37
|
-
when :must, :should, :must_not
|
38
|
-
{ bool: { logic => queries } }
|
39
|
-
else
|
40
|
-
if logic.is_a?(Float)
|
41
|
-
{ dis_max: { queries: queries, tie_breaker: logic } }
|
42
|
-
else
|
43
|
-
{ bool: { should: queries, minimum_should_match: logic } }
|
44
|
-
end
|
45
|
-
end
|
46
|
-
else
|
47
|
-
queries.first
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
def _filters_join filters, logic
|
52
|
-
filters = filters.compact
|
53
|
-
|
54
|
-
if filters.many? || (filters.present? && logic == :must_not)
|
55
|
-
case logic
|
56
|
-
when :and, :or
|
57
|
-
{ logic => filters }
|
58
|
-
when :must, :should, :must_not
|
59
|
-
{ bool: { logic => filters } }
|
60
|
-
else
|
61
|
-
{ bool: { should: filters, minimum_should_match: logic } }
|
62
|
-
end
|
63
|
-
else
|
64
|
-
filters.first
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
data/lib/chewy/query/criteria.rb
DELETED
@@ -1,181 +0,0 @@
|
|
1
|
-
require 'chewy/query/compose'
|
2
|
-
|
3
|
-
module Chewy
|
4
|
-
class Query
|
5
|
-
class Criteria
|
6
|
-
include Compose
|
7
|
-
ARRAY_STORAGES = [:queries, :filters, :post_filters, :sort, :fields, :types, :scores]
|
8
|
-
HASH_STORAGES = [:options, :request_options, :facets, :aggregations, :suggest, :script_fields]
|
9
|
-
STORAGES = ARRAY_STORAGES + HASH_STORAGES
|
10
|
-
|
11
|
-
def initialize options = {}
|
12
|
-
@options = options.merge(
|
13
|
-
query_mode: Chewy.query_mode,
|
14
|
-
filter_mode: Chewy.filter_mode,
|
15
|
-
post_filter_mode: Chewy.post_filter_mode || Chewy.filter_mode
|
16
|
-
)
|
17
|
-
end
|
18
|
-
|
19
|
-
def == other
|
20
|
-
other.is_a?(self.class) && storages == other.storages
|
21
|
-
end
|
22
|
-
|
23
|
-
{ ARRAY_STORAGES => '[]', HASH_STORAGES => '{}' }.each do |storages, default|
|
24
|
-
storages.each do |storage|
|
25
|
-
class_eval <<-METHODS, __FILE__, __LINE__ + 1
|
26
|
-
def #{storage}
|
27
|
-
@#{storage} ||= #{default}
|
28
|
-
end
|
29
|
-
METHODS
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
STORAGES.each do |storage|
|
34
|
-
define_method "#{storage}?" do
|
35
|
-
send(storage).present?
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
def none?
|
40
|
-
!!options[:none]
|
41
|
-
end
|
42
|
-
|
43
|
-
def update_options(modifier)
|
44
|
-
options.merge!(modifier)
|
45
|
-
end
|
46
|
-
|
47
|
-
def update_request_options(modifier)
|
48
|
-
request_options.merge!(modifier)
|
49
|
-
end
|
50
|
-
|
51
|
-
def update_facets(modifier)
|
52
|
-
facets.merge!(modifier)
|
53
|
-
end
|
54
|
-
|
55
|
-
def update_scores(modifier)
|
56
|
-
@scores = scores + Array.wrap(modifier).reject(&:blank?)
|
57
|
-
end
|
58
|
-
|
59
|
-
def update_aggregations(modifier)
|
60
|
-
aggregations.merge!(modifier)
|
61
|
-
end
|
62
|
-
|
63
|
-
def update_suggest(modifier)
|
64
|
-
suggest.merge!(modifier)
|
65
|
-
end
|
66
|
-
|
67
|
-
def update_script_fields(modifier)
|
68
|
-
script_fields.merge!(modifier)
|
69
|
-
end
|
70
|
-
|
71
|
-
[:filters, :queries, :post_filters].each do |storage|
|
72
|
-
class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
73
|
-
def update_#{storage}(modifier)
|
74
|
-
@#{storage} = #{storage} + Array.wrap(modifier).reject(&:blank?)
|
75
|
-
end
|
76
|
-
RUBY
|
77
|
-
end
|
78
|
-
|
79
|
-
def update_sort(modifier, options = {})
|
80
|
-
@sort = nil if options[:purge]
|
81
|
-
modifier = Array.wrap(modifier).flatten.map do |element|
|
82
|
-
element.is_a?(Hash) ? element.map { |k, v| {k => v} } : element
|
83
|
-
end.flatten
|
84
|
-
@sort = sort + modifier
|
85
|
-
end
|
86
|
-
|
87
|
-
%w(fields types).each do |storage|
|
88
|
-
define_method "update_#{storage}" do |modifier, options = {}|
|
89
|
-
variable = "@#{storage}"
|
90
|
-
instance_variable_set(variable, nil) if options[:purge]
|
91
|
-
modifier = send(storage) | Array.wrap(modifier).flatten.map(&:to_s).reject(&:blank?)
|
92
|
-
instance_variable_set(variable, modifier)
|
93
|
-
end
|
94
|
-
end
|
95
|
-
|
96
|
-
def merge! other
|
97
|
-
STORAGES.each do |storage|
|
98
|
-
send("update_#{storage}", other.send(storage))
|
99
|
-
end
|
100
|
-
self
|
101
|
-
end
|
102
|
-
|
103
|
-
def merge other
|
104
|
-
clone.merge!(other)
|
105
|
-
end
|
106
|
-
|
107
|
-
def request_body
|
108
|
-
body = _filtered_query(_request_query, _request_filter, options.slice(:strategy))
|
109
|
-
|
110
|
-
if options[:simple]
|
111
|
-
{ body: body.presence || { query: { match_all: {} } } }
|
112
|
-
else
|
113
|
-
body.merge!(post_filter: _request_post_filter) if post_filters?
|
114
|
-
body.merge!(facets: facets) if facets?
|
115
|
-
body.merge!(aggregations: aggregations) if aggregations?
|
116
|
-
body.merge!(suggest: suggest) if suggest?
|
117
|
-
body.merge!(sort: sort) if sort?
|
118
|
-
body.merge!(_source: fields) if fields?
|
119
|
-
body.merge!(script_fields: script_fields) if script_fields?
|
120
|
-
|
121
|
-
body = _boost_query(body)
|
122
|
-
|
123
|
-
{ body: body.merge!(request_options) }
|
124
|
-
end
|
125
|
-
end
|
126
|
-
|
127
|
-
protected
|
128
|
-
|
129
|
-
def storages
|
130
|
-
STORAGES.map { |storage| send(storage) }
|
131
|
-
end
|
132
|
-
|
133
|
-
def initialize_clone(other)
|
134
|
-
STORAGES.each do |storage|
|
135
|
-
value = other.send(storage)
|
136
|
-
instance_variable_set("@#{storage}", value.deep_dup)
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
def _boost_query(body)
|
141
|
-
return body unless scores?
|
142
|
-
query = body.delete :query
|
143
|
-
filter = body.delete :filter
|
144
|
-
if query && filter
|
145
|
-
query = { filtered: { query: query, filter: filter } }
|
146
|
-
filter = nil
|
147
|
-
end
|
148
|
-
score = {}
|
149
|
-
score[:functions] = scores
|
150
|
-
score[:boost_mode] = options[:boost_mode] if options[:boost_mode]
|
151
|
-
score[:score_mode] = options[:score_mode] if options[:score_mode]
|
152
|
-
score[:query] = query if query
|
153
|
-
score[:filter] = filter if filter
|
154
|
-
body.tap { |b| b[:query] = { function_score: score } }
|
155
|
-
end
|
156
|
-
|
157
|
-
def _request_query
|
158
|
-
_queries_join(queries, options[:query_mode])
|
159
|
-
end
|
160
|
-
|
161
|
-
def _request_filter
|
162
|
-
filter_mode = options[:filter_mode]
|
163
|
-
request_filter = if filter_mode == :and
|
164
|
-
filters
|
165
|
-
else
|
166
|
-
[_filters_join(filters, filter_mode)]
|
167
|
-
end
|
168
|
-
|
169
|
-
_filters_join([_request_types, *request_filter], :and)
|
170
|
-
end
|
171
|
-
|
172
|
-
def _request_types
|
173
|
-
_filters_join(types.map { |type| { type: { value: type } } }, :or)
|
174
|
-
end
|
175
|
-
|
176
|
-
def _request_post_filter
|
177
|
-
_filters_join(post_filters, options[:post_filter_mode])
|
178
|
-
end
|
179
|
-
end
|
180
|
-
end
|
181
|
-
end
|
data/lib/chewy/query/filters.rb
DELETED
@@ -1,227 +0,0 @@
|
|
1
|
-
require 'chewy/query/nodes/base'
|
2
|
-
require 'chewy/query/nodes/expr'
|
3
|
-
require 'chewy/query/nodes/field'
|
4
|
-
require 'chewy/query/nodes/bool'
|
5
|
-
require 'chewy/query/nodes/and'
|
6
|
-
require 'chewy/query/nodes/or'
|
7
|
-
require 'chewy/query/nodes/not'
|
8
|
-
require 'chewy/query/nodes/raw'
|
9
|
-
require 'chewy/query/nodes/exists'
|
10
|
-
require 'chewy/query/nodes/missing'
|
11
|
-
require 'chewy/query/nodes/range'
|
12
|
-
require 'chewy/query/nodes/prefix'
|
13
|
-
require 'chewy/query/nodes/regexp'
|
14
|
-
require 'chewy/query/nodes/equal'
|
15
|
-
require 'chewy/query/nodes/query'
|
16
|
-
require 'chewy/query/nodes/script'
|
17
|
-
require 'chewy/query/nodes/has_child'
|
18
|
-
require 'chewy/query/nodes/has_parent'
|
19
|
-
require 'chewy/query/nodes/match_all'
|
20
|
-
|
21
|
-
module Chewy
|
22
|
-
class Query
|
23
|
-
# Context provides simplified DSL functionality for filters declaring.
|
24
|
-
# You can use logic operations <tt>&</tt> and <tt>|</tt> to concat
|
25
|
-
# expressions.
|
26
|
-
#
|
27
|
-
# UsersIndex.filter{ (article.title =~ /Honey/) & (age < 42) & !rate }
|
28
|
-
#
|
29
|
-
#
|
30
|
-
class Filters
|
31
|
-
def initialize outer = nil, &block
|
32
|
-
@block = block
|
33
|
-
@outer = outer || eval('self', block.binding)
|
34
|
-
end
|
35
|
-
|
36
|
-
# Outer scope call
|
37
|
-
# Block evaluates in the external context
|
38
|
-
#
|
39
|
-
# def name
|
40
|
-
# 'Friend'
|
41
|
-
# end
|
42
|
-
#
|
43
|
-
# UsersIndex.filter{ name == o{ name } } # => {filter: {term: {name: 'Friend'}}}
|
44
|
-
#
|
45
|
-
def o &block
|
46
|
-
@outer.instance_exec(&block)
|
47
|
-
end
|
48
|
-
|
49
|
-
# Returns field node
|
50
|
-
# Used if method_missing is not working by some reason.
|
51
|
-
# Additional expression options might be passed as second argument hash.
|
52
|
-
#
|
53
|
-
# UsersIndex.filter{ f(:name) == 'Name' } == UsersIndex.filter{ name == 'Name' } # => true
|
54
|
-
# UsersIndex.filter{ f(:name, execution: :bool) == ['Name1', 'Name2'] } ==
|
55
|
-
# UsersIndex.filter{ name(execution: :bool) == ['Name1', 'Name2'] } # => true
|
56
|
-
#
|
57
|
-
# Supports block for getting field name from the outer scope
|
58
|
-
#
|
59
|
-
# def field
|
60
|
-
# :name
|
61
|
-
# end
|
62
|
-
#
|
63
|
-
# UsersIndex.filter{ f{ field } == 'Name' } == UsersIndex.filter{ name == 'Name' } # => true
|
64
|
-
#
|
65
|
-
def f name = nil, *args, &block
|
66
|
-
name = block ? o(&block) : name
|
67
|
-
Nodes::Field.new name, *args
|
68
|
-
end
|
69
|
-
|
70
|
-
# Returns script filter
|
71
|
-
# Just script filter. Supports additional params.
|
72
|
-
#
|
73
|
-
# UsersIndex.filter{ s('doc["num1"].value > 1') }
|
74
|
-
# UsersIndex.filter{ s('doc["num1"].value > param1', param1: 42) }
|
75
|
-
#
|
76
|
-
# Supports block for getting script from the outer scope
|
77
|
-
#
|
78
|
-
# def script
|
79
|
-
# 'doc["num1"].value > param1 || 1'
|
80
|
-
# end
|
81
|
-
#
|
82
|
-
# UsersIndex.filter{ s{ script } } == UsersIndex.filter{ s('doc["num1"].value > 1') } # => true
|
83
|
-
# UsersIndex.filter{ s(param1: 42) { script } } == UsersIndex.filter{ s('doc["num1"].value > 1', param1: 42) } # => true
|
84
|
-
#
|
85
|
-
def s *args, &block
|
86
|
-
params = args.extract_options!
|
87
|
-
script = block ? o(&block) : args.first
|
88
|
-
Nodes::Script.new script, params
|
89
|
-
end
|
90
|
-
|
91
|
-
# Returns query filter
|
92
|
-
#
|
93
|
-
# UsersIndex.filter{ q(query_string: {query: 'name: hello'}) }
|
94
|
-
#
|
95
|
-
# Supports block for getting query from the outer scope
|
96
|
-
#
|
97
|
-
# def query
|
98
|
-
# {query_string: {query: 'name: hello'}}
|
99
|
-
# end
|
100
|
-
#
|
101
|
-
# UsersIndex.filter{ q{ query } } == UsersIndex.filter{ q(query_string: {query: 'name: hello'}) } # => true
|
102
|
-
#
|
103
|
-
def q query = nil, &block
|
104
|
-
Nodes::Query.new block ? o(&block) : query
|
105
|
-
end
|
106
|
-
|
107
|
-
# Returns raw expression
|
108
|
-
# Same as filter with arguments instead of block, but can participate in expressions
|
109
|
-
#
|
110
|
-
# UsersIndex.filter{ r(term: {name: 'Name'}) }
|
111
|
-
# UsersIndex.filter{ r(term: {name: 'Name'}) & (age < 42) }
|
112
|
-
#
|
113
|
-
# Supports block for getting raw filter from the outer scope
|
114
|
-
#
|
115
|
-
# def filter
|
116
|
-
# {term: {name: 'Name'}}
|
117
|
-
# end
|
118
|
-
#
|
119
|
-
# UsersIndex.filter{ r{ filter } } == UsersIndex.filter{ r(term: {name: 'Name'}) } # => true
|
120
|
-
# UsersIndex.filter{ r{ filter } } == UsersIndex.filter(term: {name: 'Name'}) # => true
|
121
|
-
#
|
122
|
-
def r raw = nil, &block
|
123
|
-
Nodes::Raw.new block ? o(&block) : raw
|
124
|
-
end
|
125
|
-
|
126
|
-
# Bool filter chainable methods
|
127
|
-
# Used to create bool query. Nodes are passed as arguments.
|
128
|
-
#
|
129
|
-
# UsersIndex.filter{ must(age < 42, name == 'Name') }
|
130
|
-
# UsersIndex.filter{ should(age < 42, name == 'Name') }
|
131
|
-
# UsersIndex.filter{ must(age < 42).should(name == 'Name1', name == 'Name2') }
|
132
|
-
# UsersIndex.filter{ should_not(age >= 42).must(name == 'Name1') }
|
133
|
-
#
|
134
|
-
%w(must must_not should).each do |method|
|
135
|
-
define_method method do |*exprs|
|
136
|
-
Nodes::Bool.new.send(method, *exprs)
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
# Initializes has_child filter.
|
141
|
-
# Chainable interface acts the same as main query interface. You can pass plain
|
142
|
-
# filters or plain queries or filter with DSL block.
|
143
|
-
#
|
144
|
-
# UsersIndex.filter{ has_child('user').filter(term: {role: 'Admin'}) }
|
145
|
-
# UsersIndex.filter{ has_child('user').filter{ role == 'Admin' } }
|
146
|
-
# UsersIndex.filter{ has_child('user').query(match: {name: 'borogoves'}) }
|
147
|
-
#
|
148
|
-
# Filters and queries might be combined and filter_mode and query_mode are configurable:
|
149
|
-
#
|
150
|
-
# UsersIndex.filter do
|
151
|
-
# has_child('user')
|
152
|
-
# .filter{ name: 'Peter' }
|
153
|
-
# .query(match: {name: 'Peter'})
|
154
|
-
# .filter{ age > 42 }
|
155
|
-
# .filter_mode(:or)
|
156
|
-
# end
|
157
|
-
#
|
158
|
-
def has_child type
|
159
|
-
Nodes::HasChild.new(type, @outer)
|
160
|
-
end
|
161
|
-
|
162
|
-
# Initializes has_parent filter.
|
163
|
-
# Chainable interface acts the same as main query interface. You can pass plain
|
164
|
-
# filters or plain queries or filter with DSL block.
|
165
|
-
#
|
166
|
-
# UsersIndex.filter{ has_parent('user').filter(term: {role: 'Admin'}) }
|
167
|
-
# UsersIndex.filter{ has_parent('user').filter{ role == 'Admin' } }
|
168
|
-
# UsersIndex.filter{ has_parent('user').query(match: {name: 'borogoves'}) }
|
169
|
-
#
|
170
|
-
# Filters and queries might be combined and filter_mode and query_mode are configurable:
|
171
|
-
#
|
172
|
-
# UsersIndex.filter do
|
173
|
-
# has_parent('user')
|
174
|
-
# .filter{ name: 'Peter' }
|
175
|
-
# .query(match: {name: 'Peter'})
|
176
|
-
# .filter{ age > 42 }
|
177
|
-
# .filter_mode(:or)
|
178
|
-
# end
|
179
|
-
#
|
180
|
-
def has_parent type
|
181
|
-
Nodes::HasParent.new(type, @outer)
|
182
|
-
end
|
183
|
-
|
184
|
-
# Just simple match_all filter.
|
185
|
-
#
|
186
|
-
def match_all
|
187
|
-
Nodes::MatchAll.new
|
188
|
-
end
|
189
|
-
|
190
|
-
# Creates field or exists node
|
191
|
-
# Additional options for further expression might be passed as hash
|
192
|
-
#
|
193
|
-
# UsersIndex.filter{ name == 'Name' } == UsersIndex.filter(term: {name: 'Name'}) # => true
|
194
|
-
# UsersIndex.filter{ name? } == UsersIndex.filter(exists: {term: 'name'}) # => true
|
195
|
-
# UsersIndex.filter{ name(execution: :bool) == ['Name1', 'Name2'] } ==
|
196
|
-
# UsersIndex.filter(terms: {name: ['Name1', 'Name2'], execution: :bool}) # => true
|
197
|
-
#
|
198
|
-
# Also field names might be chained to use dot-notation for ES field names
|
199
|
-
#
|
200
|
-
# UsersIndex.filter{ article.title =~ 'Hello' }
|
201
|
-
# UsersIndex.filter{ article.tags? }
|
202
|
-
#
|
203
|
-
def method_missing method, *args, &block
|
204
|
-
method = method.to_s
|
205
|
-
if method =~ /\?\Z/
|
206
|
-
Nodes::Exists.new method.gsub(/\?\Z/, '')
|
207
|
-
else
|
208
|
-
f method, *args
|
209
|
-
end
|
210
|
-
end
|
211
|
-
|
212
|
-
# Evaluates context block, returns top node.
|
213
|
-
# For internal usage.
|
214
|
-
#
|
215
|
-
def __result__
|
216
|
-
instance_exec(&@block)
|
217
|
-
end
|
218
|
-
|
219
|
-
# Renders evaluated filters.
|
220
|
-
# For internal usage.
|
221
|
-
#
|
222
|
-
def __render__
|
223
|
-
__result__.__render__ # haha, wtf?
|
224
|
-
end
|
225
|
-
end
|
226
|
-
end
|
227
|
-
end
|