elasticsearch/lib/elasticsearch.rb (156 lines of code) (raw):
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
require 'elasticsearch/version'
require 'elastic/transport'
require 'elasticsearch/api'
module Elasticsearch
NOT_ELASTICSEARCH_WARNING = 'The client noticed that the server is not Elasticsearch and we do not support this unknown product.'.freeze
SECURITY_PRIVILEGES_VALIDATION_WARNING = 'The client is unable to verify that the server is Elasticsearch due to security privileges on the server side. Some functionality may not be compatible if the server is running an unsupported product.'.freeze
VALIDATION_WARNING = 'The client is unable to verify that the server is Elasticsearch. Some functionality may not be compatible if the server is running an unsupported product.'.freeze
# This is the stateful Elasticsearch::Client, using an instance of elastic-transport.
class Client
include Elasticsearch::API
# The default port to use if connecting using a Cloud ID.
# Updated from 9243 to 443 in client version 7.10.1
#
# @since 7.2.0
DEFAULT_CLOUD_PORT = 443
# Create a client connected to an Elasticsearch cluster.
#
# @param [Hash] arguments - initializer arguments
# @option arguments [String] :cloud_id - The Cloud ID to connect to Elastic Cloud
# @option arguments [String, Hash] :api_key Use API Key Authentication, either the base64 encoding of `id` and
# `api_key` joined by a colon as a String, or a hash with the `id` and
# `api_key` values.
# @option arguments [String] :opaque_id_prefix set a prefix for X-Opaque-Id when initializing the client.
# This will be prepended to the id you set before each request
# if you're using X-Opaque-Id
# @option arguments [Hash] :headers Custom HTTP Request Headers
#
def initialize(arguments = {}, &block)
@verified = false
@warned = false
@opaque_id_prefix = arguments[:opaque_id_prefix] || nil
api_key(arguments) if arguments[:api_key]
setup_cloud(arguments) if arguments[:cloud_id]
set_user_agent!(arguments) unless sent_user_agent?(arguments)
set_content_type!(arguments)
@transport = Elastic::Transport::Client.new(arguments, &block)
end
def method_missing(name, *args, &block)
if methods.include?(name)
super
elsif name == :perform_request
# The signature for perform_request is:
# method, path, params, body, headers, opts
if (opaque_id = args[2]&.delete(:opaque_id))
headers = args[4] || {}
opaque_id = @opaque_id_prefix ? "#{@opaque_id_prefix}#{opaque_id}" : opaque_id
args[4] = headers.merge('X-Opaque-Id' => opaque_id)
end
if @verified
@transport.perform_request(*args, &block)
else
verify_elasticsearch(*args, &block)
end
else
@transport.send(name, *args, &block)
end
end
def respond_to_missing?(method_name, *args)
@transport.respond_to?(method_name) || super
end
private
def verify_elasticsearch(*args, &block)
begin
response = @transport.perform_request(*args, &block)
rescue Elastic::Transport::Transport::Errors::Unauthorized,
Elastic::Transport::Transport::Errors::Forbidden,
Elastic::Transport::Transport::Errors::RequestEntityTooLarge => e
warn(SECURITY_PRIVILEGES_VALIDATION_WARNING)
@verified = true
raise e
rescue Elastic::Transport::Transport::Error => e
unless @warned
warn(VALIDATION_WARNING)
@warned = true
end
raise e
rescue StandardError => e
warn(VALIDATION_WARNING)
raise e
end
raise Elasticsearch::UnsupportedProductError unless response.headers['x-elastic-product'] == 'Elasticsearch'
@verified = true
response
end
def setup_cloud_host(cloud_id, user, password, port)
name = cloud_id.split(':')[0]
base64_decoded = cloud_id.gsub("#{name}:", '').unpack1('m')
cloud_url, elasticsearch_instance = base64_decoded.split('$')
if cloud_url.include?(':')
url, port = cloud_url.split(':')
host = "#{elasticsearch_instance}.#{url}"
else
host = "#{elasticsearch_instance}.#{cloud_url}"
port ||= DEFAULT_CLOUD_PORT
end
[{ scheme: 'https', user: user, password: password, host: host, port: port.to_i }]
end
def api_key(arguments)
api_key = if arguments[:api_key].is_a? Hash
encode(arguments[:api_key])
else
arguments[:api_key]
end
arguments.delete(:user)
arguments.delete(:password)
authorization = { 'Authorization' => "ApiKey #{api_key}" }
if (headers = arguments.dig(:transport_options, :headers))
headers.merge!(authorization)
else
arguments[:transport_options] ||= {}
arguments[:transport_options].merge!({ headers: authorization })
end
end
def setup_cloud(arguments)
arguments[:hosts] = setup_cloud_host(
arguments[:cloud_id],
arguments[:user],
arguments[:password],
arguments[:port]
)
end
# Encode credentials for the Authorization Header
# Credentials is the base64 encoding of id and api_key joined by a colon
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-api-key.html
def encode(api_key)
credentials = [api_key[:id], api_key[:api_key]].join(':')
[credentials].pack('m0')
end
def elasticsearch_validation_request
@transport.perform_request('GET', '/')
end
def sent_user_agent?(arguments)
return unless (headers = arguments&.[](:transport_options)&.[](:headers))
!!headers.keys.detect { |h| h =~ /user-?_?agent/ }
end
def set_user_agent!(arguments)
user_agent = [
"elasticsearch-ruby/#{Elasticsearch::VERSION}",
"elastic-transport-ruby/#{Elastic::Transport::VERSION}",
"RUBY_VERSION: #{RUBY_VERSION}"
]
if RbConfig::CONFIG && RbConfig::CONFIG['host_os']
user_agent << "#{RbConfig::CONFIG['host_os'].split('_').first[/[a-z]+/i].downcase} #{RbConfig::CONFIG['target_cpu']}"
end
set_header({ user_agent: user_agent.join('; ') }, arguments)
end
def set_content_type!(arguments)
headers = {}
user_headers = arguments&.[](:transport_options)&.[](:headers)
unless user_headers&.keys&.detect { |h| h =~ /content-?_?type/ }
headers['content-type'] = 'application/vnd.elasticsearch+json; compatible-with=9'
end
unless user_headers&.keys&.detect { |h| h =~ /accept/ }
headers['accept'] = 'application/vnd.elasticsearch+json; compatible-with=9'
end
set_header(headers, arguments) unless headers.empty?
end
def set_header(header, arguments)
arguments[:transport_options] ||= {}
arguments[:transport_options][:headers] ||= {}
arguments[:transport_options][:headers].merge!(header)
end
end
# Error class for when we detect an unsupported version of Elasticsearch
class UnsupportedProductError < StandardError
def initialize(message = NOT_ELASTICSEARCH_WARNING)
super(message)
end
end
end
# Helper for the meta-header value for Cloud
module Elastic
# If the version is X.X.X.pre/alpha/beta, use X.X.Xp for the meta-header:
def self.client_meta_version
regexp = /^([0-9]+\.[0-9]+\.[0-9]+)\.?([a-z0-9.-]+)?$/
match = Elasticsearch::VERSION.match(regexp)
return "#{match[1]}p" if match[2]
Elasticsearch::VERSION
end
# Constant for elastic-transport meta-header
ELASTICSEARCH_SERVICE_VERSION = [:es, client_meta_version].freeze
end