Sha256: 041c8e1224b5ad7c965118b1dff16ff3898f947e3d9a1e5cc9f107e34c66d4c9

Contents?: true

Size: 1.69 KB

Versions: 4

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

require 'openssl'

module Aws
  module Plugins
    # @api private
    class HttpChecksum < Seahorse::Client::Plugin
      # @api private
      class Handler < Seahorse::Client::Handler
        CHUNK_SIZE = 1 * 1024 * 1024 # one MB

        def call(context)
          if context.operation.http_checksum_required &&
             !context[:http_checksum][:request_algorithm] && # skip in favor of flexible checksum
             !context[:s3_express_endpoint] # s3 express endpoints do not support md5
            body = context.http_request.body
            context.http_request.headers['Content-Md5'] ||= md5(body)
          end
          @handler.call(context)
        end

        private

        # @param [File, Tempfile, IO#read, String] value
        # @return [String<MD5>]
        def md5(value)
          if (value.is_a?(File) || value.is_a?(Tempfile)) &&
             !value.path.nil? && File.exist?(value.path)
            OpenSSL::Digest::MD5.file(value).base64digest
          elsif value.respond_to?(:read)
            md5 = OpenSSL::Digest::MD5.new
            update_in_chunks(md5, value)
            md5.base64digest
          else
            OpenSSL::Digest::MD5.digest(value).base64digest
          end
        end

        def update_in_chunks(digest, io)
          loop do
            chunk = io.read(CHUNK_SIZE)
            break unless chunk
            digest.update(chunk)
          end
          io.rewind
        end

      end

      def add_handlers(handlers, _config)
        # priority set low to ensure checksum is computed AFTER the request is
        # built but before it is signed
        handlers.add(Handler, priority: 10, step: :build)
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-core-3.217.1 lib/aws-sdk-core/plugins/http_checksum.rb
aws-sdk-core-3.217.0 lib/aws-sdk-core/plugins/http_checksum.rb
aws-sdk-core-3.216.1 lib/aws-sdk-core/plugins/http_checksum.rb
aws-sdk-core-3.216.0 lib/aws-sdk-core/plugins/http_checksum.rb