elastic-enterprise-search 0.2.1 → 7.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ci/.gitignore +1 -0
- data/.ci/Dockerfile +12 -0
- data/.ci/certs/README.md +50 -0
- data/.ci/certs/ca.crt +20 -0
- data/.ci/certs/ca.key +27 -0
- data/.ci/certs/testnode.crt +21 -0
- data/.ci/certs/testnode.key +27 -0
- data/.ci/certs/testnode_no_san.crt +19 -0
- data/.ci/certs/testnode_no_san.key +27 -0
- data/.ci/functions/cleanup.sh +67 -0
- data/.ci/functions/imports.sh +59 -0
- data/.ci/functions/wait-for-container.sh +36 -0
- data/.ci/jobs/defaults.yml +69 -0
- data/.ci/jobs/elastic+enterprise-search-ruby+7.11.yml +12 -0
- data/.ci/jobs/elastic+enterprise-search-ruby+master.yml +12 -0
- data/.ci/jobs/elastic+enterprise-search-ruby+pull-request.yml +19 -0
- data/.ci/run-elasticsearch.sh +127 -0
- data/.ci/run-enterprise-search.sh +71 -0
- data/.ci/run-local.sh +14 -0
- data/.ci/run-repository.sh +47 -0
- data/.ci/run-tests +27 -0
- data/.ci/test-matrix.yml +14 -0
- data/.github/workflows/rubocop.yml +15 -0
- data/.github/workflows/testing.yml +40 -0
- data/.gitignore +4 -0
- data/.rubocop.yml +52 -0
- data/CONTRIBUTING.md +43 -0
- data/Gemfile +23 -1
- data/{LICENSE.txt → LICENSE} +33 -32
- data/README.md +29 -93
- data/Rakefile +48 -1
- data/docs/guide/app-search-api.asciidoc +186 -0
- data/docs/guide/connecting.asciidoc +125 -0
- data/docs/guide/development.asciidoc +42 -0
- data/docs/guide/enterprise-search-api.asciidoc +46 -0
- data/docs/guide/index.asciidoc +19 -0
- data/docs/guide/installation.asciidoc +18 -0
- data/docs/guide/overview.asciidoc +59 -0
- data/docs/guide/release_notes/710.asciidoc +4 -0
- data/docs/guide/release_notes/711.asciidoc +27 -0
- data/docs/guide/release_notes/712.asciidoc +26 -0
- data/docs/guide/release_notes/index.asciidoc +14 -0
- data/docs/guide/workplace-search-api.asciidoc +121 -0
- data/elastic-enterprise-search.gemspec +49 -12
- data/lib/elastic-enterprise-search.rb +20 -1
- data/lib/elastic/.rubocop.yml +6 -0
- data/lib/elastic/app-search/api/add_meta_engine_source.rb +51 -0
- data/lib/elastic/app-search/api/api_logs.rb +62 -0
- data/lib/elastic/app-search/api/count_analytics.rb +52 -0
- data/lib/elastic/app-search/api/create_curation.rb +54 -0
- data/lib/elastic/app-search/api/create_engine.rb +53 -0
- data/lib/elastic/app-search/api/create_synonym_set.rb +51 -0
- data/lib/elastic/app-search/api/curation.rb +53 -0
- data/lib/elastic/app-search/api/delete_curation.rb +53 -0
- data/lib/elastic/app-search/api/delete_documents.rb +51 -0
- data/lib/elastic/app-search/api/delete_engine.rb +50 -0
- data/lib/elastic/app-search/api/delete_meta_engine_source.rb +51 -0
- data/lib/elastic/app-search/api/delete_synonym_set.rb +53 -0
- data/lib/elastic/app-search/api/documents.rb +51 -0
- data/lib/elastic/app-search/api/engine.rb +50 -0
- data/lib/elastic/app-search/api/index_documents.rb +51 -0
- data/lib/elastic/app-search/api/list_curations.rb +52 -0
- data/lib/elastic/app-search/api/list_documents.rb +52 -0
- data/lib/elastic/app-search/api/list_engines.rb +49 -0
- data/lib/elastic/app-search/api/list_synonym_sets.rb +52 -0
- data/lib/elastic/app-search/api/log_clickthrough.rb +57 -0
- data/lib/elastic/app-search/api/multi_search.rb +51 -0
- data/lib/elastic/app-search/api/put_curation.rb +57 -0
- data/lib/elastic/app-search/api/put_documents.rb +51 -0
- data/lib/elastic/app-search/api/put_schema.rb +51 -0
- data/lib/elastic/app-search/api/put_search_settings.rb +51 -0
- data/lib/elastic/app-search/api/put_synonym_set.rb +54 -0
- data/lib/elastic/app-search/api/query_suggestion.rb +54 -0
- data/lib/elastic/app-search/api/reset_search_settings.rb +50 -0
- data/lib/elastic/app-search/api/schema.rb +50 -0
- data/lib/elastic/app-search/api/search.rb +50 -0
- data/lib/elastic/app-search/api/search_settings.rb +50 -0
- data/lib/elastic/app-search/api/synonym_set.rb +53 -0
- data/lib/elastic/app-search/api/top_clicks_analytics.rb +54 -0
- data/lib/elastic/app-search/api/top_queries_analytics.rb +53 -0
- data/lib/elastic/app-search/app_search.rb +82 -0
- data/lib/elastic/enterprise-search/api/health.rb +43 -0
- data/lib/elastic/enterprise-search/api/put_read_only.rb +44 -0
- data/lib/elastic/enterprise-search/api/read_only.rb +43 -0
- data/lib/elastic/enterprise-search/api/stats.rb +45 -0
- data/lib/elastic/enterprise-search/api/version.rb +43 -0
- data/lib/elastic/enterprise-search/client.rb +90 -52
- data/lib/elastic/enterprise-search/configuration.rb +32 -16
- data/lib/elastic/enterprise-search/exceptions.rb +19 -0
- data/lib/elastic/enterprise-search/request.rb +59 -81
- data/lib/elastic/enterprise-search/utils.rb +28 -1
- data/lib/elastic/enterprise-search/version.rb +20 -1
- data/lib/elastic/enterprise_search.rb +38 -0
- data/lib/elastic/workplace-search/api/add_user_permissions.rb +54 -0
- data/lib/elastic/workplace-search/api/create_analytics_event.rb +59 -0
- data/lib/elastic/workplace-search/api/create_external_identity.rb +51 -0
- data/lib/elastic/workplace-search/api/delete_documents.rb +51 -0
- data/lib/elastic/workplace-search/api/delete_external_identity.rb +53 -0
- data/lib/elastic/workplace-search/api/external_identity.rb +53 -0
- data/lib/elastic/workplace-search/api/index_documents.rb +52 -0
- data/lib/elastic/workplace-search/api/list_external_identities.rb +51 -0
- data/lib/elastic/workplace-search/api/list_permissions.rb +51 -0
- data/lib/elastic/workplace-search/api/put_external_identity.rb +54 -0
- data/lib/elastic/workplace-search/api/put_user_permissions.rb +54 -0
- data/lib/elastic/workplace-search/api/remove_user_permissions.rb +54 -0
- data/lib/elastic/workplace-search/api/search.rb +60 -0
- data/lib/elastic/workplace-search/api/user_permissions.rb +53 -0
- data/lib/elastic/workplace-search/workplace_search.rb +84 -0
- data/spec/app-search/api_count_analytics_spec.rb +34 -0
- data/spec/app-search/api_curations_spec.rb +97 -0
- data/spec/app-search/api_documents_spec.rb +102 -0
- data/spec/app-search/api_engines_spec.rb +67 -0
- data/spec/app-search/api_log_clickthrough_spec.rb +34 -0
- data/spec/app-search/api_logs_spec.rb +36 -0
- data/spec/app-search/api_meta_engines_spec.rb +72 -0
- data/spec/app-search/api_query_suggestion_spec.rb +39 -0
- data/spec/app-search/api_schema_spec.rb +48 -0
- data/spec/app-search/api_search_and_multi_search_spec.rb +48 -0
- data/spec/app-search/api_search_settings_spec.rb +76 -0
- data/spec/app-search/api_spec_helper.rb +14 -0
- data/spec/app-search/api_synonyms_spec.rb +79 -0
- data/spec/app-search/api_top_clicks_analytics_spec.rb +44 -0
- data/spec/app-search/api_top_queries_analytics_spec.rb +34 -0
- data/spec/app-search/client_spec.rb +88 -0
- data/spec/app-search/date_spec.rb +69 -0
- data/spec/enterprise-search/client_spec.rb +107 -0
- data/spec/enterprise-search/request_spec.rb +136 -0
- data/spec/enterprise-search/utils_spec.rb +46 -0
- data/spec/fixtures/vcr/app_search/add_meta_engine_source.yml +109 -0
- data/spec/fixtures/vcr/app_search/api_documents.yml +56 -0
- data/spec/fixtures/vcr/app_search/api_index_documents.yml +57 -0
- data/spec/fixtures/vcr/app_search/api_log_clickthrough.yml +54 -0
- data/spec/fixtures/vcr/app_search/api_logs.yml +70 -0
- data/spec/fixtures/vcr/app_search/api_put_schema.yml +109 -0
- data/spec/fixtures/vcr/app_search/api_put_search_settings.yml +56 -0
- data/spec/fixtures/vcr/app_search/api_query_suggestion.yml +59 -0
- data/spec/fixtures/vcr/app_search/api_reset_search_settings.yml +56 -0
- data/spec/fixtures/vcr/app_search/api_schema.yml +56 -0
- data/spec/fixtures/vcr/app_search/api_search_settings.yml +56 -0
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +55 -0
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +55 -0
- data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +55 -0
- data/spec/fixtures/vcr/app_search/count_analytics.yml +55 -0
- data/spec/fixtures/vcr/app_search/create_and_update_document.yml +107 -0
- data/spec/fixtures/vcr/app_search/create_curation.yml +113 -0
- data/spec/fixtures/vcr/app_search/create_engine.yml +55 -0
- data/spec/fixtures/vcr/app_search/create_meta_engine.yml +56 -0
- data/spec/fixtures/vcr/app_search/create_synonym_set.yml +56 -0
- data/spec/fixtures/vcr/app_search/delete_curation.yml +56 -0
- data/spec/fixtures/vcr/app_search/delete_engine.yml +55 -0
- data/spec/fixtures/vcr/app_search/delete_meta_engine_source.yml +56 -0
- data/spec/fixtures/vcr/app_search/delete_synonym_set.yml +56 -0
- data/spec/fixtures/vcr/app_search/get_curation.yml +56 -0
- data/spec/fixtures/vcr/app_search/get_engine.yml +55 -0
- data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +107 -0
- data/spec/fixtures/vcr/app_search/list_curations.yml +56 -0
- data/spec/fixtures/vcr/app_search/list_documents.yml +57 -0
- data/spec/fixtures/vcr/app_search/list_engines.yml +55 -0
- data/spec/fixtures/vcr/app_search/list_synonym_sets.yml +56 -0
- data/spec/fixtures/vcr/app_search/multi_query_search.yml +63 -0
- data/spec/fixtures/vcr/app_search/put_curation.yml +113 -0
- data/spec/fixtures/vcr/app_search/put_synonym_set.yml +56 -0
- data/spec/fixtures/vcr/app_search/search.yml +57 -0
- data/spec/fixtures/vcr/app_search/single_query_search.yml +60 -0
- data/spec/fixtures/vcr/app_search/synonym_set.yml +56 -0
- data/spec/fixtures/vcr/workplace_search/add_user_permissions.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/clear_user_permissions.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/create_analytics_event.yml +55 -0
- data/spec/fixtures/vcr/workplace_search/create_external_identity.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/delete_documents.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/delete_external_identity.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/index_documents.yml +55 -0
- data/spec/fixtures/vcr/workplace_search/list_external_identities.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/list_permissions.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/oauth_request_token.yml +57 -0
- data/spec/fixtures/vcr/workplace_search/put_external_identity.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/put_user_permissions.yml +103 -0
- data/spec/fixtures/vcr/workplace_search/remove_user_permissions.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/retrieve_external_identity.yml +53 -0
- data/spec/fixtures/vcr/workplace_search/search_request.yml +60 -0
- data/spec/fixtures/vcr/workplace_search/user_permissions_empty.yml +53 -0
- data/spec/integration/enterprise_search_api_spec.rb +96 -0
- data/spec/spec_helper.rb +27 -14
- data/spec/webmock_requires.rb +4 -0
- data/spec/workplace-search/client_spec.rb +77 -0
- data/spec/workplace-search/create_analytics_event_spec.rb +59 -0
- data/spec/workplace-search/documents_spec.rb +80 -0
- data/spec/workplace-search/external_identities_spec.rb +84 -0
- data/spec/workplace-search/permissions_spec.rb +136 -0
- data/spec/workplace-search/search_spec.rb +53 -0
- metadata +272 -28
- data/.circleci/config.yml +0 -68
- data/.travis.yml +0 -15
- data/NOTICE.txt +0 -3
- data/lib/elastic/enterprise-search.rb +0 -7
- data/logo-enterprise-search.png +0 -0
- data/spec/client_spec.rb +0 -57
- data/spec/configuration_spec.rb +0 -19
- data/spec/fixtures/vcr/async_create_or_update_document_success.yml +0 -51
- data/spec/fixtures/vcr/destroy_documents_success.yml +0 -51
@@ -0,0 +1,53 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
# frozen_string_literal: true
|
19
|
+
|
20
|
+
require 'spec_helper'
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::WorkplaceSearch::Client do
|
23
|
+
let(:host) { ENV['ELASTIC_ENTERPRISE_HOST'] || 'http://localhost:3002' }
|
24
|
+
let(:access_token) { ENV['ELASTIC_WORKPLACE_TOKEN'] || 'access_token' }
|
25
|
+
let(:content_source_id) { ENV['ELASTIC_WORKPLACE_SOURCE_ID'] || 'content_source_id' }
|
26
|
+
let(:client) do
|
27
|
+
Elastic::EnterpriseSearch::WorkplaceSearch::Client.new(
|
28
|
+
host: host,
|
29
|
+
http_auth: access_token
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'goes through the search OAuth ' do
|
34
|
+
VCR.use_cassette('workplace_search/oauth_request_token') do
|
35
|
+
client_id = 'client_id'
|
36
|
+
client_secret = 'client_secret'
|
37
|
+
redirect_uri = 'http://localhost:9393'
|
38
|
+
|
39
|
+
# gets authorization code via client.authorization_url(client_id, redirect_uri)
|
40
|
+
authorization_code = 'authorization_code'
|
41
|
+
@oauth_access_token = client.request_access_token(client_id, client_secret, authorization_code, redirect_uri)
|
42
|
+
end
|
43
|
+
|
44
|
+
VCR.use_cassette('workplace_search/search_request') do
|
45
|
+
response = client.search(body: { query: '1984' }, access_token: @oauth_access_token)
|
46
|
+
|
47
|
+
expect(response.status).to eq 200
|
48
|
+
expect(response.body['results'].count).to be > 1
|
49
|
+
expect(response.body['results'][0]['title']['raw']).to eq '1984'
|
50
|
+
expect(response.body['results'][0]['author']['raw']).to eq 'George Orwell'
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
metadata
CHANGED
@@ -1,31 +1,93 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elastic-enterprise-search
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Fernando Briano
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: elasticsearch-transport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '7.11'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '7.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jwt
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.5'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '3.0'
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '1.5'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '3.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: awesome_print
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: byebug
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
13
75
|
- !ruby/object:Gem::Dependency
|
14
76
|
name: rspec
|
15
77
|
requirement: !ruby/object:Gem::Requirement
|
16
78
|
requirements:
|
17
79
|
- - "~>"
|
18
80
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
81
|
+
version: 3.9.0
|
20
82
|
type: :development
|
21
83
|
prerelease: false
|
22
84
|
version_requirements: !ruby/object:Gem::Requirement
|
23
85
|
requirements:
|
24
86
|
- - "~>"
|
25
87
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
88
|
+
version: 3.9.0
|
27
89
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
90
|
+
name: rspec_junit_formatter
|
29
91
|
requirement: !ruby/object:Gem::Requirement
|
30
92
|
requirements:
|
31
93
|
- - ">="
|
@@ -38,6 +100,20 @@ dependencies:
|
|
38
100
|
- - ">="
|
39
101
|
- !ruby/object:Gem::Version
|
40
102
|
version: '0'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: rubocop
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 1.0.0
|
110
|
+
type: :development
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 1.0.0
|
41
117
|
- !ruby/object:Gem::Dependency
|
42
118
|
name: vcr
|
43
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,41 +142,215 @@ dependencies:
|
|
66
142
|
- - ">="
|
67
143
|
- !ruby/object:Gem::Version
|
68
144
|
version: '0'
|
69
|
-
description: API client for
|
145
|
+
description: 'Official API client for Elastic Enterprise Search APIs.
|
146
|
+
|
147
|
+
'
|
70
148
|
email:
|
71
149
|
- support@elastic.co
|
72
150
|
executables: []
|
73
151
|
extensions: []
|
74
152
|
extra_rdoc_files: []
|
75
153
|
files:
|
76
|
-
- ".
|
154
|
+
- ".ci/.gitignore"
|
155
|
+
- ".ci/Dockerfile"
|
156
|
+
- ".ci/certs/README.md"
|
157
|
+
- ".ci/certs/ca.crt"
|
158
|
+
- ".ci/certs/ca.key"
|
159
|
+
- ".ci/certs/testnode.crt"
|
160
|
+
- ".ci/certs/testnode.key"
|
161
|
+
- ".ci/certs/testnode_no_san.crt"
|
162
|
+
- ".ci/certs/testnode_no_san.key"
|
163
|
+
- ".ci/functions/cleanup.sh"
|
164
|
+
- ".ci/functions/imports.sh"
|
165
|
+
- ".ci/functions/wait-for-container.sh"
|
166
|
+
- ".ci/jobs/defaults.yml"
|
167
|
+
- ".ci/jobs/elastic+enterprise-search-ruby+7.11.yml"
|
168
|
+
- ".ci/jobs/elastic+enterprise-search-ruby+master.yml"
|
169
|
+
- ".ci/jobs/elastic+enterprise-search-ruby+pull-request.yml"
|
170
|
+
- ".ci/run-elasticsearch.sh"
|
171
|
+
- ".ci/run-enterprise-search.sh"
|
172
|
+
- ".ci/run-local.sh"
|
173
|
+
- ".ci/run-repository.sh"
|
174
|
+
- ".ci/run-tests"
|
175
|
+
- ".ci/test-matrix.yml"
|
176
|
+
- ".github/workflows/rubocop.yml"
|
177
|
+
- ".github/workflows/testing.yml"
|
77
178
|
- ".gitignore"
|
78
|
-
- ".
|
179
|
+
- ".rubocop.yml"
|
180
|
+
- CONTRIBUTING.md
|
79
181
|
- Gemfile
|
80
|
-
- LICENSE
|
81
|
-
- NOTICE.txt
|
182
|
+
- LICENSE
|
82
183
|
- README.md
|
83
184
|
- Rakefile
|
185
|
+
- docs/guide/app-search-api.asciidoc
|
186
|
+
- docs/guide/connecting.asciidoc
|
187
|
+
- docs/guide/development.asciidoc
|
188
|
+
- docs/guide/enterprise-search-api.asciidoc
|
189
|
+
- docs/guide/index.asciidoc
|
190
|
+
- docs/guide/installation.asciidoc
|
191
|
+
- docs/guide/overview.asciidoc
|
192
|
+
- docs/guide/release_notes/710.asciidoc
|
193
|
+
- docs/guide/release_notes/711.asciidoc
|
194
|
+
- docs/guide/release_notes/712.asciidoc
|
195
|
+
- docs/guide/release_notes/index.asciidoc
|
196
|
+
- docs/guide/workplace-search-api.asciidoc
|
84
197
|
- elastic-enterprise-search.gemspec
|
85
198
|
- lib/data/ca-bundle.crt
|
86
199
|
- lib/elastic-enterprise-search.rb
|
87
|
-
- lib/elastic
|
200
|
+
- lib/elastic/.rubocop.yml
|
201
|
+
- lib/elastic/app-search/api/add_meta_engine_source.rb
|
202
|
+
- lib/elastic/app-search/api/api_logs.rb
|
203
|
+
- lib/elastic/app-search/api/count_analytics.rb
|
204
|
+
- lib/elastic/app-search/api/create_curation.rb
|
205
|
+
- lib/elastic/app-search/api/create_engine.rb
|
206
|
+
- lib/elastic/app-search/api/create_synonym_set.rb
|
207
|
+
- lib/elastic/app-search/api/curation.rb
|
208
|
+
- lib/elastic/app-search/api/delete_curation.rb
|
209
|
+
- lib/elastic/app-search/api/delete_documents.rb
|
210
|
+
- lib/elastic/app-search/api/delete_engine.rb
|
211
|
+
- lib/elastic/app-search/api/delete_meta_engine_source.rb
|
212
|
+
- lib/elastic/app-search/api/delete_synonym_set.rb
|
213
|
+
- lib/elastic/app-search/api/documents.rb
|
214
|
+
- lib/elastic/app-search/api/engine.rb
|
215
|
+
- lib/elastic/app-search/api/index_documents.rb
|
216
|
+
- lib/elastic/app-search/api/list_curations.rb
|
217
|
+
- lib/elastic/app-search/api/list_documents.rb
|
218
|
+
- lib/elastic/app-search/api/list_engines.rb
|
219
|
+
- lib/elastic/app-search/api/list_synonym_sets.rb
|
220
|
+
- lib/elastic/app-search/api/log_clickthrough.rb
|
221
|
+
- lib/elastic/app-search/api/multi_search.rb
|
222
|
+
- lib/elastic/app-search/api/put_curation.rb
|
223
|
+
- lib/elastic/app-search/api/put_documents.rb
|
224
|
+
- lib/elastic/app-search/api/put_schema.rb
|
225
|
+
- lib/elastic/app-search/api/put_search_settings.rb
|
226
|
+
- lib/elastic/app-search/api/put_synonym_set.rb
|
227
|
+
- lib/elastic/app-search/api/query_suggestion.rb
|
228
|
+
- lib/elastic/app-search/api/reset_search_settings.rb
|
229
|
+
- lib/elastic/app-search/api/schema.rb
|
230
|
+
- lib/elastic/app-search/api/search.rb
|
231
|
+
- lib/elastic/app-search/api/search_settings.rb
|
232
|
+
- lib/elastic/app-search/api/synonym_set.rb
|
233
|
+
- lib/elastic/app-search/api/top_clicks_analytics.rb
|
234
|
+
- lib/elastic/app-search/api/top_queries_analytics.rb
|
235
|
+
- lib/elastic/app-search/app_search.rb
|
236
|
+
- lib/elastic/enterprise-search/api/health.rb
|
237
|
+
- lib/elastic/enterprise-search/api/put_read_only.rb
|
238
|
+
- lib/elastic/enterprise-search/api/read_only.rb
|
239
|
+
- lib/elastic/enterprise-search/api/stats.rb
|
240
|
+
- lib/elastic/enterprise-search/api/version.rb
|
88
241
|
- lib/elastic/enterprise-search/client.rb
|
89
242
|
- lib/elastic/enterprise-search/configuration.rb
|
90
243
|
- lib/elastic/enterprise-search/exceptions.rb
|
91
244
|
- lib/elastic/enterprise-search/request.rb
|
92
245
|
- lib/elastic/enterprise-search/utils.rb
|
93
246
|
- lib/elastic/enterprise-search/version.rb
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
247
|
+
- lib/elastic/enterprise_search.rb
|
248
|
+
- lib/elastic/workplace-search/api/add_user_permissions.rb
|
249
|
+
- lib/elastic/workplace-search/api/create_analytics_event.rb
|
250
|
+
- lib/elastic/workplace-search/api/create_external_identity.rb
|
251
|
+
- lib/elastic/workplace-search/api/delete_documents.rb
|
252
|
+
- lib/elastic/workplace-search/api/delete_external_identity.rb
|
253
|
+
- lib/elastic/workplace-search/api/external_identity.rb
|
254
|
+
- lib/elastic/workplace-search/api/index_documents.rb
|
255
|
+
- lib/elastic/workplace-search/api/list_external_identities.rb
|
256
|
+
- lib/elastic/workplace-search/api/list_permissions.rb
|
257
|
+
- lib/elastic/workplace-search/api/put_external_identity.rb
|
258
|
+
- lib/elastic/workplace-search/api/put_user_permissions.rb
|
259
|
+
- lib/elastic/workplace-search/api/remove_user_permissions.rb
|
260
|
+
- lib/elastic/workplace-search/api/search.rb
|
261
|
+
- lib/elastic/workplace-search/api/user_permissions.rb
|
262
|
+
- lib/elastic/workplace-search/workplace_search.rb
|
263
|
+
- spec/app-search/api_count_analytics_spec.rb
|
264
|
+
- spec/app-search/api_curations_spec.rb
|
265
|
+
- spec/app-search/api_documents_spec.rb
|
266
|
+
- spec/app-search/api_engines_spec.rb
|
267
|
+
- spec/app-search/api_log_clickthrough_spec.rb
|
268
|
+
- spec/app-search/api_logs_spec.rb
|
269
|
+
- spec/app-search/api_meta_engines_spec.rb
|
270
|
+
- spec/app-search/api_query_suggestion_spec.rb
|
271
|
+
- spec/app-search/api_schema_spec.rb
|
272
|
+
- spec/app-search/api_search_and_multi_search_spec.rb
|
273
|
+
- spec/app-search/api_search_settings_spec.rb
|
274
|
+
- spec/app-search/api_spec_helper.rb
|
275
|
+
- spec/app-search/api_synonyms_spec.rb
|
276
|
+
- spec/app-search/api_top_clicks_analytics_spec.rb
|
277
|
+
- spec/app-search/api_top_queries_analytics_spec.rb
|
278
|
+
- spec/app-search/client_spec.rb
|
279
|
+
- spec/app-search/date_spec.rb
|
280
|
+
- spec/enterprise-search/client_spec.rb
|
281
|
+
- spec/enterprise-search/request_spec.rb
|
282
|
+
- spec/enterprise-search/utils_spec.rb
|
283
|
+
- spec/fixtures/vcr/app_search/add_meta_engine_source.yml
|
284
|
+
- spec/fixtures/vcr/app_search/api_documents.yml
|
285
|
+
- spec/fixtures/vcr/app_search/api_index_documents.yml
|
286
|
+
- spec/fixtures/vcr/app_search/api_log_clickthrough.yml
|
287
|
+
- spec/fixtures/vcr/app_search/api_logs.yml
|
288
|
+
- spec/fixtures/vcr/app_search/api_put_schema.yml
|
289
|
+
- spec/fixtures/vcr/app_search/api_put_search_settings.yml
|
290
|
+
- spec/fixtures/vcr/app_search/api_query_suggestion.yml
|
291
|
+
- spec/fixtures/vcr/app_search/api_reset_search_settings.yml
|
292
|
+
- spec/fixtures/vcr/app_search/api_schema.yml
|
293
|
+
- spec/fixtures/vcr/app_search/api_search_settings.yml
|
294
|
+
- spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml
|
295
|
+
- spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml
|
296
|
+
- spec/fixtures/vcr/app_search/api_top_queries_analytics.yml
|
297
|
+
- spec/fixtures/vcr/app_search/count_analytics.yml
|
298
|
+
- spec/fixtures/vcr/app_search/create_and_update_document.yml
|
299
|
+
- spec/fixtures/vcr/app_search/create_curation.yml
|
300
|
+
- spec/fixtures/vcr/app_search/create_engine.yml
|
301
|
+
- spec/fixtures/vcr/app_search/create_meta_engine.yml
|
302
|
+
- spec/fixtures/vcr/app_search/create_synonym_set.yml
|
303
|
+
- spec/fixtures/vcr/app_search/delete_curation.yml
|
304
|
+
- spec/fixtures/vcr/app_search/delete_engine.yml
|
305
|
+
- spec/fixtures/vcr/app_search/delete_meta_engine_source.yml
|
306
|
+
- spec/fixtures/vcr/app_search/delete_synonym_set.yml
|
307
|
+
- spec/fixtures/vcr/app_search/get_curation.yml
|
308
|
+
- spec/fixtures/vcr/app_search/get_engine.yml
|
309
|
+
- spec/fixtures/vcr/app_search/index_and_delete_document.yml
|
310
|
+
- spec/fixtures/vcr/app_search/list_curations.yml
|
311
|
+
- spec/fixtures/vcr/app_search/list_documents.yml
|
312
|
+
- spec/fixtures/vcr/app_search/list_engines.yml
|
313
|
+
- spec/fixtures/vcr/app_search/list_synonym_sets.yml
|
314
|
+
- spec/fixtures/vcr/app_search/multi_query_search.yml
|
315
|
+
- spec/fixtures/vcr/app_search/put_curation.yml
|
316
|
+
- spec/fixtures/vcr/app_search/put_synonym_set.yml
|
317
|
+
- spec/fixtures/vcr/app_search/search.yml
|
318
|
+
- spec/fixtures/vcr/app_search/single_query_search.yml
|
319
|
+
- spec/fixtures/vcr/app_search/synonym_set.yml
|
320
|
+
- spec/fixtures/vcr/workplace_search/add_user_permissions.yml
|
321
|
+
- spec/fixtures/vcr/workplace_search/clear_user_permissions.yml
|
322
|
+
- spec/fixtures/vcr/workplace_search/create_analytics_event.yml
|
323
|
+
- spec/fixtures/vcr/workplace_search/create_external_identity.yml
|
324
|
+
- spec/fixtures/vcr/workplace_search/delete_documents.yml
|
325
|
+
- spec/fixtures/vcr/workplace_search/delete_external_identity.yml
|
326
|
+
- spec/fixtures/vcr/workplace_search/index_documents.yml
|
327
|
+
- spec/fixtures/vcr/workplace_search/list_external_identities.yml
|
328
|
+
- spec/fixtures/vcr/workplace_search/list_permissions.yml
|
329
|
+
- spec/fixtures/vcr/workplace_search/oauth_request_token.yml
|
330
|
+
- spec/fixtures/vcr/workplace_search/put_external_identity.yml
|
331
|
+
- spec/fixtures/vcr/workplace_search/put_user_permissions.yml
|
332
|
+
- spec/fixtures/vcr/workplace_search/remove_user_permissions.yml
|
333
|
+
- spec/fixtures/vcr/workplace_search/retrieve_external_identity.yml
|
334
|
+
- spec/fixtures/vcr/workplace_search/search_request.yml
|
335
|
+
- spec/fixtures/vcr/workplace_search/user_permissions_empty.yml
|
336
|
+
- spec/integration/enterprise_search_api_spec.rb
|
99
337
|
- spec/spec_helper.rb
|
338
|
+
- spec/webmock_requires.rb
|
339
|
+
- spec/workplace-search/client_spec.rb
|
340
|
+
- spec/workplace-search/create_analytics_event_spec.rb
|
341
|
+
- spec/workplace-search/documents_spec.rb
|
342
|
+
- spec/workplace-search/external_identities_spec.rb
|
343
|
+
- spec/workplace-search/permissions_spec.rb
|
344
|
+
- spec/workplace-search/search_spec.rb
|
100
345
|
homepage: https://github.com/elastic/enterprise-search-ruby
|
101
346
|
licenses:
|
102
347
|
- Apache-2.0
|
103
|
-
metadata:
|
348
|
+
metadata:
|
349
|
+
bug_tracker_uri: https://github.com/elastic/enterprise-search-ruby/issues
|
350
|
+
documentation_uri: https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/index.html
|
351
|
+
homepage_uri: https://www.elastic.co/enterprise-search
|
352
|
+
source_code_uri: https://github.com/elastic/enterprise-search-ruby
|
353
|
+
changelog_uri: https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/release_notes.html
|
104
354
|
post_install_message:
|
105
355
|
rdoc_options: []
|
106
356
|
require_paths:
|
@@ -109,21 +359,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
109
359
|
requirements:
|
110
360
|
- - ">="
|
111
361
|
- !ruby/object:Gem::Version
|
112
|
-
version: '
|
362
|
+
version: '2.5'
|
113
363
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
364
|
requirements:
|
115
365
|
- - ">="
|
116
366
|
- !ruby/object:Gem::Version
|
117
367
|
version: '0'
|
118
368
|
requirements: []
|
119
|
-
|
120
|
-
rubygems_version: 2.7.6
|
369
|
+
rubygems_version: 3.1.4
|
121
370
|
signing_key:
|
122
371
|
specification_version: 4
|
123
|
-
summary: Official
|
124
|
-
test_files:
|
125
|
-
- spec/client_spec.rb
|
126
|
-
- spec/configuration_spec.rb
|
127
|
-
- spec/fixtures/vcr/async_create_or_update_document_success.yml
|
128
|
-
- spec/fixtures/vcr/destroy_documents_success.yml
|
129
|
-
- spec/spec_helper.rb
|
372
|
+
summary: Official API client for Elastic Enterprise Search
|
373
|
+
test_files: []
|
data/.circleci/config.yml
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
# Ruby CircleCI 2.0 configuration file
|
2
|
-
#
|
3
|
-
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
4
|
-
#
|
5
|
-
version: 2.1
|
6
|
-
|
7
|
-
executors:
|
8
|
-
ruby-24: {docker: [{image: 'ruby:2.4'}]}
|
9
|
-
ruby-25: {docker: [{image: 'ruby:2.5'}]}
|
10
|
-
ruby-26: {docker: [{image: 'ruby:2.6'}]}
|
11
|
-
jruby-92: {docker: [{image: 'jruby:9.2.7-jdk'}]}
|
12
|
-
|
13
|
-
jobs:
|
14
|
-
build:
|
15
|
-
parameters:
|
16
|
-
executor:
|
17
|
-
type: executor
|
18
|
-
executor: << parameters.executor >>
|
19
|
-
|
20
|
-
working_directory: ~/repo
|
21
|
-
|
22
|
-
steps:
|
23
|
-
- checkout
|
24
|
-
|
25
|
-
# Download and cache dependencies
|
26
|
-
- restore_cache:
|
27
|
-
keys:
|
28
|
-
- v1-dependencies-{{ checksum "Gemfile" }}
|
29
|
-
# fallback to using the latest cache if no exact match is found
|
30
|
-
- v1-dependencies-
|
31
|
-
|
32
|
-
- run:
|
33
|
-
name: install dependencies
|
34
|
-
command: |
|
35
|
-
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
36
|
-
|
37
|
-
- save_cache:
|
38
|
-
paths:
|
39
|
-
- ./vendor/bundle
|
40
|
-
key: v1-dependencies-{{ checksum "Gemfile" }}
|
41
|
-
|
42
|
-
# run tests!
|
43
|
-
- run:
|
44
|
-
name: run tests
|
45
|
-
command: |
|
46
|
-
mkdir /tmp/test-results
|
47
|
-
TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
|
48
|
-
|
49
|
-
bundle exec rspec --format progress \
|
50
|
-
--out /tmp/test-results/rspec.xml \
|
51
|
-
--format progress \
|
52
|
-
$TEST_FILES
|
53
|
-
|
54
|
-
# collect reports
|
55
|
-
- store_test_results:
|
56
|
-
path: /tmp/test-results
|
57
|
-
- store_artifacts:
|
58
|
-
path: /tmp/test-results
|
59
|
-
destination: test-results
|
60
|
-
|
61
|
-
|
62
|
-
workflows:
|
63
|
-
run-tests:
|
64
|
-
jobs:
|
65
|
-
- build: {name: run-tests-ruby-2.4, executor: ruby-24}
|
66
|
-
- build: {name: run-tests-ruby-2.5, executor: ruby-25}
|
67
|
-
- build: {name: run-tests-ruby-2.6, executor: ruby-26}
|
68
|
-
- build: {name: run-tests-jruby-92, executor: jruby-92}
|