Skip to content

Commit dd117b1

Browse files
Earlopainpicandocodigo
authored andcommitted
Drop runtime dependency on base64
1 parent a779e32 commit dd117b1

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

elasticsearch-api/api-spec-testing/test_file/task_group.rb

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
require 'base64'
19+
1820
module Elasticsearch
1921
module RestAPIYAMLTests
2022
class TestFile

elasticsearch-api/spec/platinum/integration/api_key/api_key_invalidation_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
require 'base64'
1819
require_relative '../platinum_helper'
1920

2021
describe 'API keys API invalidation' do

elasticsearch/elasticsearch.gemspec

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@ Gem::Specification.new do |s|
4646
s.required_ruby_version = '>= 2.5'
4747

4848
s.add_dependency 'elastic-transport', '~> 8.3'
49-
5049
s.add_dependency 'elasticsearch-api', '8.11.1'
51-
s.add_dependency 'base64'
5250

51+
s.add_development_dependency 'base64'
5352
s.add_development_dependency 'bundler'
5453
s.add_development_dependency 'byebug' unless defined?(JRUBY_VERSION) || defined?(Rubinius)
5554
s.add_development_dependency 'pry'

elasticsearch/lib/elasticsearch.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
require 'elasticsearch/version'
1919
require 'elastic/transport'
2020
require 'elasticsearch/api'
21-
require 'base64'
2221

2322
module Elasticsearch
2423
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)
112111

113112
def setup_cloud_host(cloud_id, user, password, port)
114113
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('$')
116116

117117
if cloud_url.include?(':')
118118
url, port = cloud_url.split(':')
@@ -154,7 +154,8 @@ def setup_cloud(arguments)
154154
# Credentials is the base64 encoding of id and api_key joined by a colon
155155
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-api-key.html
156156
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')
158159
end
159160

160161
def elasticsearch_validation_request

elasticsearch/spec/unit/api_key_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# under the License.
1717

1818
require 'spec_helper'
19+
require 'base64'
1920

2021
describe Elasticsearch::Client do
2122
context 'when using API Key' do

0 commit comments

Comments
 (0)