elastic-enterprise-search 8.1.0 → 8.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdfa7f9a297b7be12956c4afb18c566ef6362be6f80b7ddcdf210a63de35792b
4
- data.tar.gz: c0ea8e919e929a7a9a03dd183198d7a29f49b95a9fc1e044fb6d1c4becf87adf
3
+ metadata.gz: 7c6b7f543ecfbb56fa72e108d6c86b8aad6c4185e14654ab1e32cc739054073e
4
+ data.tar.gz: b4692ff93dd20556e6dd8e758577c107c02c2ed0b114bab15aad094ace4dba37
5
5
  SHA512:
6
- metadata.gz: 9bf7a70b4070b475c5929dee3dce93841db5150bd3502b1b22595ed037cc7f9fbb60e4ade158009af80059ee84f727c192663efd4e9913697bb5860110a327f5
7
- data.tar.gz: 11ce05ae809478b90e8980b43b0c28fdfa33d79bb3d398fcf832d1bdb25c7495600cde089bb9d448d3a39599e17484c59bce1704f8f4f0fc5fc362eb2215ce37
6
+ metadata.gz: 428fc9ca35fcf144bf83e8ed51d71901f5faf6f8b933c6c5118d95af3aea859b14307c7473b891f49538890f127bfcc5c7980c04531c93ae7f5b22f99a056b72
7
+ data.tar.gz: 2dde8ce3996c9a6b0ee7e5fef81000ea9397c5c4c1ae0b54e3b61b8fb604508c1727cf61cf4a6ee87c86090e088e8d19e2a02effec877e637e76af74724109e6
@@ -1,7 +1,6 @@
1
1
  [[connecting]]
2
2
  == Connecting
3
3
 
4
-
5
4
  This page contains the information you need to connect and use the Client with Elastic Enterprise Search.
6
5
 
7
6
  **On this page**
@@ -14,6 +14,7 @@ For **Elastic Enterprise Search 7.0** and later, use the major version 7 (`7.x.y
14
14
 
15
15
  [discrete]
16
16
  === HTTP Library
17
+
17
18
  This library uses https://github.com/elastic/elastic-transport-ruby[elastic-transport], the low-level Ruby client for connecting to an Elastic clusters - also used in the official https://github.com/elastic/elasticsearch-ruby[Elasticsearch Ruby Client]. It uses https://rubygems.org/gems/faraday[Faraday], which supports several https://lostisland.github.io/faraday/adapters/[adapters] and will use `Net::HTTP` by default. For optimal performance with the Enterprise Search API, we suggest using an HTTP library which supports persistent ("keep-alive") connections. For the standard Ruby implementation, this could be https://github.com/drbrain/net-http-persistent[Net::HTTP::Persistent], https://github.com/toland/patron[patron] or https://github.com/typhoeus/typhoeus[Typhoeus]. For JRuby, https://github.com/cheald/manticore[Manticore] is a great option as well. Require the library for the adapter in your code and then pass in the `:adapter` parameter to the client when you initialize it:
18
19
 
19
20
  [source,ruby]
@@ -38,7 +39,7 @@ If you don't specify a host and port, the client will default to `http://localho
38
39
  [discrete]
39
40
  === Logging
40
41
 
41
- You can enable logging with the default logger by passing `log: true` as a parameter to the client's initializer, or pass in a Logger object with the `:logger` parameter:
42
+ You can enable logging with the default logger by passing `log: true` as a parameter to the client's initializer, or pass in a Logger object with the `:logger` parameter, any confoming logger implementation:
42
43
 
43
44
  [source,rb]
44
45
  ----------------------------
@@ -46,6 +47,34 @@ logger = MyLogger.new
46
47
  client = Elastic::EnterpriseSearch::Client.new(logger: logger)
47
48
  ----------------------------
48
49
 
50
+ To trace requests and responses in the _Curl_ format, set the `trace` argument:
51
+
52
+ [source,rb]
53
+ ----------------------------
54
+ > client = Elastic::EnterpriseSearch::Client.new(trace: true)
55
+ > client.health
56
+ curl -X GET -H 'x-elastic-client-meta: ent=8.3.0,rb=3.1.2,t=8.0.1,fd=1.10.0,nh=0.2.0, User-Agent: elastic-transport-ruby/8.0.1 (RUBY_VERSION: 3.1.2; linux x86_64; Faraday v1.10.0), Content-Type: application/json
57
+ ' 'http://localhost:9200/api/ent/v1/internal/health/?pretty'
58
+
59
+ # 2022-05-23T08:39:09+01:00 [200] (0.049s)
60
+ #
61
+ # {"name":"5b8067bf95fb", ...
62
+ =>
63
+ #<Elastic::API::Response:0x00007f9096e15f90
64
+ @response=
65
+ #<Elastic::Transport::Transport::Response:0x00007f9096e160a8
66
+ @body=
67
+ {"name"=>"5b8067bf95fb",
68
+ ...
69
+ ----------------------------
70
+
71
+ This will use the `elastic-transport` default logger. But you can pass in a custom logger with:
72
+
73
+ [source,rb]
74
+ ----------------------------
75
+ client = Elastic::EnterpriseSearch::Client.new(tracer: my_tracer)
76
+ ----------------------------
77
+
49
78
  [discrete]
50
79
  === License
51
80
 
@@ -1,4 +1,15 @@
1
1
  [[release_notes_80]]
2
+ === 8.0 Release notes
3
+
4
+ [discrete]
5
+ [[release_notes_801]]
6
+ === 8.0.1 Release notes
7
+
8
+ - Adds tracer parameters to enable tracing in elastic-transport. See https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/overview.html#_logging[logging] for more information.
9
+ - Updates Workplace Search OAuth implementation. See https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/workplace-search-api.html#ws-oauth-authentication[OAuth Authentication] for changes in the OAuth process.
10
+
11
+ [discrete]
12
+ [[release_notes_800]]
2
13
  === 8.0.0 Release notes
3
14
 
4
15
  [discrete]
@@ -1,4 +1,15 @@
1
1
  [[release_notes_81]]
2
+ === 8.1 Release notes
3
+
4
+ [discrete]
5
+ [[release_notes_811]]
6
+ === 8.1.1 Release notes
7
+
8
+ - Adds tracer parameters to enable tracing in elastic-transport. See https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/overview.html#_logging[logging] for more information.
9
+ - Updates Workplace Search OAuth implementation. See https://www.elastic.co/guide/en/enterprise-search-clients/ruby/current/workplace-search-api.html#ws-oauth-authentication[OAuth Authentication] for changes in the OAuth process.
10
+
11
+ [discrete]
12
+ [[release_notes_810]]
2
13
  === 8.1.0 Release notes
3
14
 
4
15
  [discrete]
@@ -76,22 +76,42 @@ client.delete_documents_by_query(content_source_id, query: query)
76
76
  [[ws-oauth-authentication]]
77
77
  === OAuth Authentication
78
78
 
79
- You need to configure the OAuth Application for Search in order to use the Workplace Search client's `search` and `create_analytics` endpoints. You need to follow the steps in https://www.elastic.co/guide/en/workplace-search/current/building-custom-search-workplace-search.html#configuring-search-oauth[Configuring the OAuth Application for Search] to retrieve the credentials: Client ID and Client Secret to request access tokens from the authentication server.
79
+ You need to configure the OAuth Application for Search in order to use the Workplace Search client's `search` and `create_analytics` endpoints. You need to follow the steps in https://www.elastic.co/guide/en/workplace-search/current/building-custom-search-workplace-search.html#configuring-search-oauth[Configuring the OAuth Application for Search] to retrieve the credentials: **Client ID** and **Client Secret** to request access tokens from the authentication server.
80
+
81
+ The client implements https://www.elastic.co/guide/en/workplace-search/current/building-custom-search-workplace-search.html#authenticating-search-user-confidential[Authenticating Users with a Confidential OAuth Flow]. It provides a helper to obtain the autorization URL directly from the client once you've set the necessary values.
82
+
83
+ The authorization endpoint is hosted by your Kibana deployment, so you need to provide the client with the https://www.elastic.co/guide/en/enterprise-search/current/endpoints-ref.html#kibana-base-url[base URL of your Kibana instance]. You can do this when you initialize the client:
84
+
85
+ [source,rb]
86
+ ----------------------------
87
+ client = Elastic::EnterpriseSearch::WorkplaceSearch::Client.new(http_auth: <access_token>, kibana_url: <kibana_url>)
88
+ ----------------------------
89
+
90
+ Or you can set in an existing client:
80
91
 
81
92
  [source,rb]
82
93
  ----------------------------
83
94
  client = Elastic::EnterpriseSearch::WorkplaceSearch::Client.new(http_auth: <access_token>)
95
+ client.kibana_url = <kibana_url>
96
+ ----------------------------
84
97
 
98
+ Once you've instantiated a client and the base URL of your Kibana instance is set, you can get the URL for authorization like so:
99
+ [source,rb]
100
+ ----------------------------
101
+ # You get the values for client_id and client_secret when configuring the OAuth Application:
85
102
  client_id = <client_id>
86
103
  client_secret = <client_secret>
87
104
  redirect_uri = <redirect_uri>
88
105
 
89
106
  # Get the authorization URL:
90
107
  client.authorization_url(client_id, redirect_uri)
91
- > https://host:port/ws/oauth/authorize?response_type=code&client_id=client_id&redirect_uri=https%3A%2F%2Flocalhost%3A3002
108
+ > https://kibana_url/app/enterprise_search/workplace_search/p/oauth/authorize?response_type=code&client_id=client_id&redirect_uri=https%3A%2F%2Flocalhost%3A3002
109
+
92
110
  ----------------------------
93
111
 
94
- Open the URL to authorize your application. Successful authorization redirects the user in accordance to the redirect URI provided (and configured for the application). The application server must now request for an access_token, which is generated by Workplace Search using the oauth/token endpoint, using the Client ID and Client Secret.
112
+ Open the URL to authorize your application. Successful authorization redirects the user in accordance to the redirect URI provided (and configured for the application).
113
+
114
+ The application server must now request for an `access_token`, which is generated by Workplace Search using the `oauth/token` endpoint, using the **Client ID** and **Client Secret**.
95
115
 
96
116
  [source,rb]
97
117
  ----------------------------
@@ -100,7 +120,7 @@ authorization_code = '<paste code from redirect>'
100
120
  access_token = client.request_access_token(client_id, client_secret, authorization_code, redirect_uri)
101
121
 
102
122
  # The access_token can now be used to issue a search request:
103
- client.search(body: {query: 'search query'}, access_token: access_token)
123
+ client.search(body: { query: 'search query' }, access_token: access_token)
104
124
  ----------------------------
105
125
 
106
126
  See https://www.elastic.co/guide/en/workplace-search/current/workplace-search-search-api.html#search-api-overview[Search API Overview] for more search parameters.
@@ -58,6 +58,8 @@ module Elastic
58
58
  # @option options [String] :proxy url of proxy to use, ex: "http://localhost:8888"
59
59
  # @option options [Boolean] :log Use the default logger (disabled by default)
60
60
  # @option arguments [Object] :logger An instance of a Logger-compatible object
61
+ # @option arguments [Boolean] :trace Use the default tracer (disabled by default)
62
+ # @option arguments [Object] :tracer An instance of a Logger-compatible object
61
63
  # @option arguments [Symbol] :adapter A specific adapter for Faraday (e.g. `:patron`)
62
64
  # @option enable_meta_header [Boolean] :enable_meta_header Enable sending the meta data header to Cloud.
63
65
  # (Default: true)
@@ -77,7 +79,9 @@ module Elastic
77
79
  transport_options: {
78
80
  request: { open_timeout: open_timeout }
79
81
  },
80
- enable_meta_header: @options[:enable_meta_header] || true
82
+ enable_meta_header: @options[:enable_meta_header] || true,
83
+ trace: trace,
84
+ tracer: tracer
81
85
  )
82
86
  end
83
87
 
@@ -109,6 +113,14 @@ module Elastic
109
113
  @options[:adapter]
110
114
  end
111
115
 
116
+ def tracer
117
+ @options[:tracer]
118
+ end
119
+
120
+ def trace
121
+ @options[:trace]
122
+ end
123
+
112
124
  def host
113
125
  return DEFAULT_HOST unless @options[:host]
114
126
 
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Elastic
21
21
  module EnterpriseSearch
22
- VERSION = '8.1.0'
22
+ VERSION = '8.1.1'
23
23
  end
24
24
  end
@@ -27,12 +27,17 @@ module Elastic
27
27
  include Elastic::EnterpriseSearch::WorkplaceSearch::Actions
28
28
  include Elastic::EnterpriseSearch::Utils
29
29
 
30
+ attr_accessor :kibana_url
31
+
30
32
  # Create a new Elastic::EnterpriseSearch::WorkplaceSearch::Client client
31
33
  #
32
34
  # @param options [Hash] a hash of configuration options
33
35
  # @option options [String] :access_token the access token for workplace search
34
36
  # @option options [String] :endpoint the endpoint Workplace Search
37
+ # @option options [String] :kibana_url The base URL of your Kibana instance
38
+ #
35
39
  def initialize(options = {})
40
+ @kibana_url = options[:kibana_url]
36
41
  super(options)
37
42
  end
38
43
 
@@ -45,9 +50,11 @@ module Elastic
45
50
  end
46
51
 
47
52
  def authorization_url(client_id, redirect_uri)
53
+ raise ArgumentError, 'kibana_url The base URL of your Kibana instance must be set in the client' unless kibana_url
54
+
48
55
  [
49
- host,
50
- '/ws/oauth/authorize?',
56
+ kibana_url,
57
+ '/app/enterprise_search/workplace_search/p/oauth/authorize?',
51
58
  'response_type=code&',
52
59
  "client_id=#{client_id}&",
53
60
  "redirect_uri=#{CGI.escape(redirect_uri)}"
@@ -91,10 +91,18 @@ describe Elastic::EnterpriseSearch::WorkplaceSearch::Client do
91
91
  context 'OAuth' do
92
92
  let(:client) { Elastic::EnterpriseSearch::WorkplaceSearch::Client.new(host: host) }
93
93
 
94
- it 'generates an authorization url' do
95
- authorization_url = 'http://localhost:3002/ws/oauth/authorize?response_type=code&client_id=client_id&redirect_uri=https%3A%2F%2Flocalhost%3A3002'
94
+ it 'generates an authorization url when kibana url has been set' do
95
+ client.kibana_url = 'http://localhost:5601'
96
+ authorization_url = "#{client.kibana_url}/app/enterprise_search/workplace_search/p/oauth/authorize?" \
97
+ 'response_type=code&client_id=client_id&redirect_uri=https%3A%2F%2Flocalhost%3A3002'
96
98
  expect(client.authorization_url('client_id', 'https://localhost:3002')).to eq authorization_url
97
99
  end
100
+
101
+ it 'raises an error when kibana url is not set' do
102
+ expect do
103
+ client.authorization_url('client_id', 'https://localhost:3002')
104
+ end.to raise_exception(ArgumentError)
105
+ end
98
106
  end
99
107
 
100
108
  context 'adapters' do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-enterprise-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.0
4
+ version: 8.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Briano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-11 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: elastic-transport
@@ -414,7 +414,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
414
414
  - !ruby/object:Gem::Version
415
415
  version: '0'
416
416
  requirements: []
417
- rubygems_version: 3.3.3
417
+ rubygems_version: 3.3.7
418
418
  signing_key:
419
419
  specification_version: 4
420
420
  summary: Official API client for Elastic Enterprise Search