Sha256: 5f58b44a7ceb2a1b15634b0d0fded6600f2057f45297febb6fb4965b04b8faea

Contents?: true

Size: 1.21 KB

Versions: 969

Compression:

Stored size: 1.21 KB

Contents

module Seahorse
  module Client
    module Plugins
      # @seahorse.client.option [String] :endpoint
      #    The HTTP or HTTPS endpoint to send requests to.
      #    For example:
      #
      #        'http://example.com'
      #        'https://example.com'
      #        'http://example.com:123'
      #
      class Endpoint < Plugin

        option(:endpoint)

        def add_handlers(handlers, config)
          handlers.add(Handler, priority: 90)
        end

        def after_initialize(client)

          endpoint = client.config.endpoint
          if endpoint.nil?
            msg = "missing required option `:endpoint'"
            raise ArgumentError, msg
          end

          endpoint = URI.parse(endpoint.to_s)
          if URI::HTTPS === endpoint or URI::HTTP === endpoint
            client.config.endpoint = endpoint
          else
            msg = 'expected :endpoint to be a HTTP or HTTPS endpoint'
            raise ArgumentError, msg
          end
        end

        class Handler < Client::Handler

          def call(context)
            context.http_request.endpoint = URI.parse(context.config.endpoint.to_s)
            @handler.call(context)
          end

        end
      end
    end
  end
end

Version data entries

969 entries across 969 versions & 2 rubygems

Version Path
aws-sdk-core-2.11.552 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.551 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.550 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.549 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.548 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.547 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.546 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.545 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.544 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.543 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.542 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.541 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.540 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.539 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.538 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.537 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.536 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.535 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.534 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.533 lib/seahorse/client/plugins/endpoint.rb