# frozen_string_literal: true

# WARNING ABOUT GENERATED CODE
#
# This file is generated. See the contributing guide for more information:
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
#
# WARNING ABOUT GENERATED CODE


module Aws::CodeStarconnections
  module Plugins
    class Endpoints < Seahorse::Client::Plugin
      option(
        :endpoint_provider,
        doc_type: 'Aws::CodeStarconnections::EndpointProvider',
        rbs_type: 'untyped',
        docstring: <<~DOCS) do |_cfg|
The endpoint provider used to resolve endpoints. Any object that responds to
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
`Aws::CodeStarconnections::EndpointParameters`.
        DOCS
        Aws::CodeStarconnections::EndpointProvider.new
      end

      # @api private
      class Handler < Seahorse::Client::Handler
        def call(context)
          unless context[:discovered_endpoint]
            params = parameters_for_operation(context)
            endpoint = context.config.endpoint_provider.resolve_endpoint(params)

            context.http_request.endpoint = endpoint.url
            apply_endpoint_headers(context, endpoint.headers)

            context[:endpoint_params] = params
            context[:endpoint_properties] = endpoint.properties
          end

          context[:auth_scheme] =
            Aws::Endpoints.resolve_auth_scheme(context, endpoint)

          with_metrics(context) { @handler.call(context) }
        end

        private

        def with_metrics(context, &block)
          metrics = []
          metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
          if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
            metrics << 'SIGV4A_SIGNING'
          end
          if context.config.credentials&.credentials&.account_id
            metrics << 'RESOLVED_ACCOUNT_ID'
          end
          Aws::Plugins::UserAgent.metric(*metrics, &block)
        end

        def apply_endpoint_headers(context, headers)
          headers.each do |key, values|
            value = values
              .compact
              .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
              .join(',')

            context.http_request.headers[key] = value
          end
        end

        def parameters_for_operation(context)
          case context.operation_name
          when :create_connection
            Aws::CodeStarconnections::Endpoints::CreateConnection.build(context)
          when :create_host
            Aws::CodeStarconnections::Endpoints::CreateHost.build(context)
          when :create_repository_link
            Aws::CodeStarconnections::Endpoints::CreateRepositoryLink.build(context)
          when :create_sync_configuration
            Aws::CodeStarconnections::Endpoints::CreateSyncConfiguration.build(context)
          when :delete_connection
            Aws::CodeStarconnections::Endpoints::DeleteConnection.build(context)
          when :delete_host
            Aws::CodeStarconnections::Endpoints::DeleteHost.build(context)
          when :delete_repository_link
            Aws::CodeStarconnections::Endpoints::DeleteRepositoryLink.build(context)
          when :delete_sync_configuration
            Aws::CodeStarconnections::Endpoints::DeleteSyncConfiguration.build(context)
          when :get_connection
            Aws::CodeStarconnections::Endpoints::GetConnection.build(context)
          when :get_host
            Aws::CodeStarconnections::Endpoints::GetHost.build(context)
          when :get_repository_link
            Aws::CodeStarconnections::Endpoints::GetRepositoryLink.build(context)
          when :get_repository_sync_status
            Aws::CodeStarconnections::Endpoints::GetRepositorySyncStatus.build(context)
          when :get_resource_sync_status
            Aws::CodeStarconnections::Endpoints::GetResourceSyncStatus.build(context)
          when :get_sync_blocker_summary
            Aws::CodeStarconnections::Endpoints::GetSyncBlockerSummary.build(context)
          when :get_sync_configuration
            Aws::CodeStarconnections::Endpoints::GetSyncConfiguration.build(context)
          when :list_connections
            Aws::CodeStarconnections::Endpoints::ListConnections.build(context)
          when :list_hosts
            Aws::CodeStarconnections::Endpoints::ListHosts.build(context)
          when :list_repository_links
            Aws::CodeStarconnections::Endpoints::ListRepositoryLinks.build(context)
          when :list_repository_sync_definitions
            Aws::CodeStarconnections::Endpoints::ListRepositorySyncDefinitions.build(context)
          when :list_sync_configurations
            Aws::CodeStarconnections::Endpoints::ListSyncConfigurations.build(context)
          when :list_tags_for_resource
            Aws::CodeStarconnections::Endpoints::ListTagsForResource.build(context)
          when :tag_resource
            Aws::CodeStarconnections::Endpoints::TagResource.build(context)
          when :untag_resource
            Aws::CodeStarconnections::Endpoints::UntagResource.build(context)
          when :update_host
            Aws::CodeStarconnections::Endpoints::UpdateHost.build(context)
          when :update_repository_link
            Aws::CodeStarconnections::Endpoints::UpdateRepositoryLink.build(context)
          when :update_sync_blocker
            Aws::CodeStarconnections::Endpoints::UpdateSyncBlocker.build(context)
          when :update_sync_configuration
            Aws::CodeStarconnections::Endpoints::UpdateSyncConfiguration.build(context)
          end
        end
      end

      def add_handlers(handlers, _config)
        handlers.add(Handler, step: :build, priority: 75)
      end
    end
  end
end