|
18 | 18 | require 'elasticsearch/version'
|
19 | 19 | require 'elastic/transport'
|
20 | 20 | require 'elasticsearch/api'
|
21 |
| -require 'base64' |
22 | 21 |
|
23 | 22 | module Elasticsearch
|
24 | 23 | NOT_ELASTICSEARCH_WARNING = 'The client noticed that the server is not Elasticsearch and we do not support this unknown product.'.freeze
|
@@ -112,7 +111,8 @@ def verify_elasticsearch(*args, &block)
|
112 | 111 |
|
113 | 112 | def setup_cloud_host(cloud_id, user, password, port)
|
114 | 113 | name = cloud_id.split(':')[0]
|
115 |
| - cloud_url, elasticsearch_instance = Base64.decode64(cloud_id.gsub("#{name}:", '')).split('$') |
| 114 | + base64_decoded = cloud_id.gsub("#{name}:", '').unpack1('m') |
| 115 | + cloud_url, elasticsearch_instance = base64_decoded.split('$') |
116 | 116 |
|
117 | 117 | if cloud_url.include?(':')
|
118 | 118 | url, port = cloud_url.split(':')
|
@@ -154,7 +154,8 @@ def setup_cloud(arguments)
|
154 | 154 | # Credentials is the base64 encoding of id and api_key joined by a colon
|
155 | 155 | # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-api-key.html
|
156 | 156 | def encode(api_key)
|
157 |
| - Base64.strict_encode64([api_key[:id], api_key[:api_key]].join(':')) |
| 157 | + credentials = [api_key[:id], api_key[:api_key]].join(':') |
| 158 | + [credentials].pack('m0') |
158 | 159 | end
|
159 | 160 |
|
160 | 161 | def elasticsearch_validation_request
|
|
0 commit comments