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.612 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.611 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.610 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.609 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.608 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.607 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.606 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.605 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.604 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.603 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.602 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.601 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.600 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.599 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.598 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.597 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.596 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.595 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.594 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-2.11.593 lib/seahorse/client/plugins/endpoint.rb