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
data/chewy.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# coding: utf-8
|
2
|
+
|
2
3
|
lib = File.expand_path('../lib', __FILE__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'chewy/version'
|
@@ -28,12 +29,12 @@ Gem::Specification.new do |spec| # rubocop:disable BlockLength
|
|
28
29
|
spec.add_development_dependency 'elasticsearch-extensions'
|
29
30
|
spec.add_development_dependency 'resque_spec'
|
30
31
|
spec.add_development_dependency 'timecop'
|
31
|
-
spec.add_development_dependency 'rubocop'
|
32
|
-
spec.add_development_dependency 'rubysl', '~> 2.0' if RUBY_ENGINE == 'rbx'
|
32
|
+
spec.add_development_dependency 'rubocop', '0.48.1'
|
33
33
|
|
34
34
|
spec.add_development_dependency 'method_source'
|
35
35
|
spec.add_development_dependency 'unparser'
|
36
36
|
|
37
|
-
spec.add_dependency 'activesupport', '>=
|
38
|
-
spec.add_dependency 'elasticsearch', '>=
|
37
|
+
spec.add_dependency 'activesupport', '>= 4.0'
|
38
|
+
spec.add_dependency 'elasticsearch', '>= 2.0.0'
|
39
|
+
spec.add_dependency 'elasticsearch-dsl'
|
39
40
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "activerecord", "~> 4.0.0"
|
6
|
+
gem "activesupport", "~> 4.0.0"
|
7
|
+
gem "resque", require: false
|
8
|
+
gem "shoryuken", require: false
|
9
|
+
gem "sidekiq", require: false
|
10
|
+
gem "kaminari", "~> 0.17.0", require: false
|
11
|
+
gem "will_paginate", require: false
|
12
|
+
gem "parallel", require: false
|
13
|
+
|
14
|
+
gemspec path: "../"
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "activerecord", "~> 4.1.0"
|
6
|
+
gem "activesupport", "~> 4.1.0"
|
7
|
+
gem "resque", require: false
|
8
|
+
gem "shoryuken", require: false
|
9
|
+
gem "sidekiq", require: false
|
10
|
+
gem "kaminari", "~> 0.17.0", require: false
|
11
|
+
gem "will_paginate", require: false
|
12
|
+
gem "parallel", require: false
|
13
|
+
|
14
|
+
gemspec path: "../"
|
@@ -5,13 +5,11 @@ source "https://rubygems.org"
|
|
5
5
|
gem "activerecord", "~> 4.2.0"
|
6
6
|
gem "activesupport", "~> 4.2.0"
|
7
7
|
gem "activejob", "~> 4.2.0"
|
8
|
-
gem "resque", :
|
9
|
-
gem "
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
gemspec :path => "../"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari", "~> 0.17.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -4,13 +4,12 @@ source "https://rubygems.org"
|
|
4
4
|
|
5
5
|
gem "mongoid", "~> 5.1.0"
|
6
6
|
gem "activesupport", "~> 4.2.0"
|
7
|
-
gem "
|
8
|
-
gem "
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
gemspec :path => "../"
|
7
|
+
gem "activejob", "~> 4.2.0"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari", "~> 0.17.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -5,13 +5,11 @@ source "https://rubygems.org"
|
|
5
5
|
gem "activerecord", "~> 5.0.0"
|
6
6
|
gem "activesupport", "~> 5.0.0"
|
7
7
|
gem "activejob", "~> 5.0.0"
|
8
|
-
gem "resque", :
|
9
|
-
gem "
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
gemspec :path => "../"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari-core", "~> 1.0.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "mongoid", "~> 6.0.0"
|
6
|
+
gem "activesupport", "~> 5.0.0"
|
7
|
+
gem "activejob", "~> 5.0.0"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari-core", "~> 1.0.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "activerecord", "~> 5.1.0"
|
6
|
+
gem "activesupport", "~> 5.1.0"
|
7
|
+
gem "activejob", "~> 5.1.0"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari-core", "~> 1.0.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "mongoid", "~> 6.1.0"
|
6
|
+
gem "activesupport", "~> 5.1.0"
|
7
|
+
gem "activejob", "~> 5.1.0"
|
8
|
+
gem "resque", require: false
|
9
|
+
gem "shoryuken", require: false
|
10
|
+
gem "sidekiq", require: false
|
11
|
+
gem "kaminari-core", "~> 1.0.0", require: false
|
12
|
+
gem "will_paginate", require: false
|
13
|
+
gem "parallel", require: false
|
14
|
+
|
15
|
+
gemspec path: "../"
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "sequel", "~> 4.45.0"
|
6
|
+
gem "activesupport", "~> 5.0.0"
|
7
|
+
gem "kaminari-core", "~> 1.0.0", require: false
|
8
|
+
gem "will_paginate", require: false
|
9
|
+
gem "parallel", require: false
|
10
|
+
|
11
|
+
gemspec path: "../"
|
data/lib/chewy.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'active_support/version'
|
1
2
|
require 'active_support/concern'
|
2
3
|
require 'active_support/deprecation'
|
3
4
|
require 'active_support/json'
|
@@ -19,6 +20,28 @@ require 'singleton'
|
|
19
20
|
|
20
21
|
require 'elasticsearch'
|
21
22
|
|
23
|
+
def try_require(path)
|
24
|
+
require path
|
25
|
+
rescue LoadError
|
26
|
+
nil
|
27
|
+
end
|
28
|
+
|
29
|
+
try_require 'kaminari'
|
30
|
+
try_require 'kaminari/core'
|
31
|
+
try_require 'will_paginate'
|
32
|
+
try_require 'will_paginate/collection'
|
33
|
+
try_require 'parallel'
|
34
|
+
|
35
|
+
ActiveSupport.on_load(:active_record) do
|
36
|
+
try_require 'will_paginate/active_record'
|
37
|
+
try_require 'kaminari/activerecord'
|
38
|
+
end
|
39
|
+
|
40
|
+
ActiveSupport.on_load(:mongoid) do
|
41
|
+
try_require 'will_paginate/mongoid'
|
42
|
+
try_require 'kaminari/mongoid'
|
43
|
+
end
|
44
|
+
|
22
45
|
require 'chewy/version'
|
23
46
|
require 'chewy/errors'
|
24
47
|
require 'chewy/config'
|
@@ -34,29 +57,8 @@ require 'chewy/fields/root'
|
|
34
57
|
require 'chewy/journal'
|
35
58
|
require 'chewy/railtie' if defined?(::Rails::Railtie)
|
36
59
|
|
37
|
-
begin
|
38
|
-
require 'kaminari'
|
39
|
-
require 'chewy/query/pagination/kaminari'
|
40
|
-
rescue LoadError
|
41
|
-
nil
|
42
|
-
end
|
43
|
-
|
44
|
-
begin
|
45
|
-
require 'will_paginate'
|
46
|
-
require 'will_paginate/collection'
|
47
|
-
require 'chewy/query/pagination/will_paginate'
|
48
|
-
rescue LoadError
|
49
|
-
nil
|
50
|
-
end
|
51
|
-
|
52
60
|
ActiveSupport.on_load(:active_record) do
|
53
61
|
extend Chewy::Type::Observe::ActiveRecordMethods
|
54
|
-
|
55
|
-
begin
|
56
|
-
require 'will_paginate/active_record'
|
57
|
-
rescue LoadError
|
58
|
-
nil
|
59
|
-
end
|
60
62
|
end
|
61
63
|
|
62
64
|
ActiveSupport.on_load(:mongoid) do
|
@@ -67,13 +69,6 @@ ActiveSupport.on_load(:mongoid) do
|
|
67
69
|
end
|
68
70
|
end
|
69
71
|
end
|
70
|
-
|
71
|
-
begin
|
72
|
-
require 'will_paginate/mongoid'
|
73
|
-
require 'chewy/query/pagination/will_paginate'
|
74
|
-
rescue LoadError
|
75
|
-
nil
|
76
|
-
end
|
77
72
|
end
|
78
73
|
|
79
74
|
module Chewy
|
@@ -87,29 +82,47 @@ module Chewy
|
|
87
82
|
class << self
|
88
83
|
attr_accessor :adapters
|
89
84
|
|
90
|
-
# Derives type
|
91
|
-
#
|
92
|
-
# Chewy.derive_type('users#user') # => UsersIndex::User
|
93
|
-
#
|
94
|
-
# If index has only one type - it is possible to derive it without specification:
|
85
|
+
# Derives a single type for the passed string identifier if possible.
|
95
86
|
#
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
87
|
+
# @example
|
88
|
+
# Chewy.derive_types(UsersIndex::User) # => UsersIndex::User
|
89
|
+
# Chewy.derive_types('namespace/users') # => Namespace::UsersIndex::User
|
90
|
+
# Chewy.derive_types('places') # => raises Chewy::UnderivableType
|
91
|
+
# Chewy.derive_types('places#city') # => PlacesIndex::City
|
99
92
|
#
|
93
|
+
# @param name [String, Chewy::Type] string type identifier
|
94
|
+
# @raise [Chewy::UnderivableType] in cases when it is impossble to find index or type or more than one type found
|
95
|
+
# @return [Chewy::Type] an array of derived types
|
100
96
|
def derive_type(name)
|
101
97
|
return name if name.is_a?(Class) && name < Chewy::Type
|
102
98
|
|
103
|
-
|
104
|
-
|
99
|
+
types = derive_types(name)
|
100
|
+
raise Chewy::UnderivableType, "Index `#{types.first.index}` has more than one type, please specify type via `#{types.first.index.derivable_name}#type_name`" unless types.one?
|
101
|
+
types.first
|
102
|
+
end
|
103
|
+
|
104
|
+
# Derives all the types for the passed string identifier if possible.
|
105
|
+
#
|
106
|
+
# @example
|
107
|
+
# Chewy.derive_types('namespace/users') # => [Namespace::UsersIndex::User]
|
108
|
+
# Chewy.derive_types('places') # => [PlacesIndex::City, PlacesIndex::Country]
|
109
|
+
# Chewy.derive_types('places#city') # => [PlacesIndex::City]
|
110
|
+
#
|
111
|
+
# @param from [String] string type identifier
|
112
|
+
# @raise [Chewy::UnderivableType] in cases when it is impossible to find index or type
|
113
|
+
# @return [Array<Chewy::Type>] an array of derived types
|
114
|
+
def derive_types(from)
|
115
|
+
return from.types if from.is_a?(Class) && (from < Chewy::Index || from < Chewy::Type)
|
116
|
+
|
117
|
+
index_name, type_name = from.split('#', 2)
|
118
|
+
class_name = "#{index_name.camelize.gsub(/Index\z/, '')}Index"
|
105
119
|
index = class_name.safe_constantize
|
106
120
|
raise Chewy::UnderivableType, "Can not find index named `#{class_name}`" unless index && index < Chewy::Index
|
107
121
|
if type_name.present?
|
108
|
-
index.type_hash[type_name] or raise Chewy::UnderivableType, "Index `#{class_name}` doesn`t have type named `#{type_name}`"
|
109
|
-
|
110
|
-
index.types.first
|
122
|
+
type = index.type_hash[type_name] or raise Chewy::UnderivableType, "Index `#{class_name}` doesn`t have type named `#{type_name}`"
|
123
|
+
[type]
|
111
124
|
else
|
112
|
-
|
125
|
+
index.types
|
113
126
|
end
|
114
127
|
end
|
115
128
|
|
@@ -152,7 +165,7 @@ module Chewy
|
|
152
165
|
# Be careful, if current prefix is blank, this will destroy all the indexes.
|
153
166
|
#
|
154
167
|
def massacre
|
155
|
-
Chewy.client.indices.delete(index: [Chewy.configuration[:prefix], '*'].
|
168
|
+
Chewy.client.indices.delete(index: [Chewy.configuration[:prefix], '*'].reject(&:blank?).join('_'))
|
156
169
|
Chewy.wait_for_status
|
157
170
|
end
|
158
171
|
alias_method :delete_all, :massacre
|
@@ -202,5 +215,26 @@ module Chewy
|
|
202
215
|
Chewy::Repository.instance
|
203
216
|
end
|
204
217
|
delegate(*Chewy::Repository.delegated, to: :repository)
|
218
|
+
|
219
|
+
def create_indices
|
220
|
+
Chewy::Index.descendants.each(&:create)
|
221
|
+
end
|
222
|
+
|
223
|
+
def create_indices!
|
224
|
+
Chewy::Index.descendants.each(&:create!)
|
225
|
+
end
|
226
|
+
|
227
|
+
def eager_load!
|
228
|
+
return unless defined?(Chewy::Railtie)
|
229
|
+
dirs = Chewy::Railtie.all_engines.map { |engine| engine.paths[Chewy.configuration[:indices_path]] }.compact.map(&:existent).flatten.uniq
|
230
|
+
|
231
|
+
dirs.each do |dir|
|
232
|
+
Dir.glob(File.join(dir, '**/*.rb')).each do |file|
|
233
|
+
require_dependency file
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
205
237
|
end
|
206
238
|
end
|
239
|
+
|
240
|
+
require 'chewy/stash'
|
data/lib/chewy/config.rb
CHANGED
@@ -40,7 +40,29 @@ module Chewy
|
|
40
40
|
|
41
41
|
# Where Chewy expects to find index definitions
|
42
42
|
# within a Rails app folder.
|
43
|
-
:indices_path
|
43
|
+
:indices_path,
|
44
|
+
|
45
|
+
# Set index refresh_interval setting to -1 before reset and put the original value after.
|
46
|
+
# If setting not present, put back to default 1s
|
47
|
+
# https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html
|
48
|
+
:reset_disable_refresh_interval,
|
49
|
+
|
50
|
+
# Set number_of_replicas to 0 before reset and put the original value after
|
51
|
+
# https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html
|
52
|
+
:reset_no_replicas,
|
53
|
+
|
54
|
+
# Refresh or not when import async (sidekiq, resque, activejob)
|
55
|
+
:disable_refresh_async,
|
56
|
+
|
57
|
+
# Default options for root of Chewy type. Allows to set default options
|
58
|
+
# for type mappings like `_all`.
|
59
|
+
:default_root_options,
|
60
|
+
|
61
|
+
# Default field type for any field in any Chewy type. Defaults to 'string'.
|
62
|
+
:default_field_type,
|
63
|
+
|
64
|
+
# Chewy search request DSL base class, used by every index.
|
65
|
+
:search_class
|
44
66
|
|
45
67
|
def self.delegated
|
46
68
|
public_instance_methods - superclass.public_instance_methods - Singleton.public_instance_methods
|
@@ -53,7 +75,13 @@ module Chewy
|
|
53
75
|
@root_strategy = :base
|
54
76
|
@request_strategy = :atomic
|
55
77
|
@use_after_commit_callbacks = true
|
78
|
+
@reset_disable_refresh_interval = false
|
79
|
+
@reset_no_replicas = false
|
80
|
+
@disable_refresh_async = false
|
56
81
|
@indices_path = 'app/chewy'
|
82
|
+
@default_root_options = {}
|
83
|
+
@default_field_type = 'string'.freeze
|
84
|
+
self.search_class = Chewy::Search::Request
|
57
85
|
end
|
58
86
|
|
59
87
|
def transport_logger=(logger)
|
@@ -66,6 +94,10 @@ module Chewy
|
|
66
94
|
@transport_tracer = tracer
|
67
95
|
end
|
68
96
|
|
97
|
+
def search_class=(base)
|
98
|
+
@search_class = build_search_class(base)
|
99
|
+
end
|
100
|
+
|
69
101
|
# Chewy core configurations. There is two ways to set it up:
|
70
102
|
# use `Chewy.settings=` method or, for Rails application,
|
71
103
|
# create `config/chewy.yml` file. Btw, `config/chewy.yml` supports
|
@@ -117,11 +149,6 @@ module Chewy
|
|
117
149
|
end
|
118
150
|
end
|
119
151
|
|
120
|
-
def configuration=(options)
|
121
|
-
ActiveSupport::Deprecation.warn("`Chewy.configuration = {foo: 'bar'}` method is deprecated and will be removed soon, use `Chewy.settings = {foo: 'bar'}` method instead")
|
122
|
-
self.settings = options
|
123
|
-
end
|
124
|
-
|
125
152
|
private
|
126
153
|
|
127
154
|
def yaml_settings
|
@@ -131,11 +158,21 @@ module Chewy
|
|
131
158
|
|
132
159
|
if File.exist?(file)
|
133
160
|
yaml = ERB.new(File.read(file)).result
|
134
|
-
hash = YAML.load(yaml)
|
161
|
+
hash = YAML.load(yaml) # rubocop:disable Security/YAMLLoad
|
135
162
|
hash[Rails.env].try(:deep_symbolize_keys) if hash
|
136
163
|
end
|
137
164
|
end || {}
|
138
165
|
end
|
139
166
|
end
|
167
|
+
|
168
|
+
def build_search_class(base)
|
169
|
+
Class.new(base).tap do |search_class|
|
170
|
+
if defined?(::Kaminari)
|
171
|
+
search_class.include Chewy::Search::Pagination::Kaminari
|
172
|
+
elsif defined?(::WillPaginate)
|
173
|
+
search_class.include Chewy::Search::Pagination::WillPaginate
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
140
177
|
end
|
141
178
|
end
|