vendor/aws/aws-sdk-php/src/AwsClient.php line 249

Open in your IDE?
  1. <?php
  2. namespace Aws;
  3. use Aws\Api\ApiProvider;
  4. use Aws\Api\DocModel;
  5. use Aws\Api\Service;
  6. use Aws\Auth\AuthSelectionMiddleware;
  7. use Aws\Auth\AuthSchemeResolverInterface;
  8. use Aws\EndpointDiscovery\EndpointDiscoveryMiddleware;
  9. use Aws\EndpointV2\EndpointProviderV2;
  10. use Aws\EndpointV2\EndpointV2Middleware;
  11. use Aws\Exception\AwsException;
  12. use Aws\Signature\SignatureProvider;
  13. use GuzzleHttp\Psr7\Uri;
  14. use Psr\Http\Message\RequestInterface;
  15. /**
  16.  * Default AWS client implementation
  17.  */
  18. class AwsClient implements AwsClientInterface
  19. {
  20.     use AwsClientTrait;
  21.     /** @var array */
  22.     private $aliases;
  23.     /** @var array */
  24.     private $config;
  25.     /** @var string */
  26.     private $region;
  27.     /** @var string */
  28.     private $signingRegionSet;
  29.     /** @var string */
  30.     private $endpoint;
  31.     /** @var Service */
  32.     private $api;
  33.     /** @var callable */
  34.     private $signatureProvider;
  35.     /** @var AuthSchemeResolverInterface */
  36.     private $authSchemeResolver;
  37.     /** @var callable */
  38.     private $credentialProvider;
  39.     /** @var callable */
  40.     private $tokenProvider;
  41.     /** @var HandlerList */
  42.     private $handlerList;
  43.     /** @var array*/
  44.     private $defaultRequestOptions;
  45.     /** @var array*/
  46.     private $clientContextParams = [];
  47.     /** @var array*/
  48.     protected $clientBuiltIns = [];
  49.     /** @var  EndpointProviderV2 | callable */
  50.     protected $endpointProvider;
  51.     /** @var callable */
  52.     protected $serializer;
  53.     /**
  54.      * Get an array of client constructor arguments used by the client.
  55.      *
  56.      * @return array
  57.      */
  58.     public static function getArguments()
  59.     {
  60.         return ClientResolver::getDefaultArguments();
  61.     }
  62.     /**
  63.      * The client constructor accepts the following options:
  64.      *
  65.      * - api_provider: (callable) An optional PHP callable that accepts a
  66.      *   type, service, and version argument, and returns an array of
  67.      *   corresponding configuration data. The type value can be one of api,
  68.      *   waiter, or paginator.
  69.      * - credentials:
  70.      *   (Aws\Credentials\CredentialsInterface|array|bool|callable) Specifies
  71.      *   the credentials used to sign requests. Provide an
  72.      *   Aws\Credentials\CredentialsInterface object, an associative array of
  73.      *   "key", "secret", and an optional "token" key, `false` to use null
  74.      *   credentials, or a callable credentials provider used to create
  75.      *   credentials or return null. See Aws\Credentials\CredentialProvider for
  76.      *   a list of built-in credentials providers. If no credentials are
  77.      *   provided, the SDK will attempt to load them from the environment.
  78.      * - token:
  79.      *   (Aws\Token\TokenInterface|array|bool|callable) Specifies
  80.      *   the token used to authorize requests. Provide an
  81.      *   Aws\Token\TokenInterface object, an associative array of
  82.      *   "token" and an optional "expires" key, `false` to use no
  83.      *   token, or a callable token provider used to create a
  84.      *   token or return null. See Aws\Token\TokenProvider for
  85.      *   a list of built-in token providers. If no token is
  86.      *   provided, the SDK will attempt to load one from the environment.
  87.      * - csm:
  88.      *   (Aws\ClientSideMonitoring\ConfigurationInterface|array|callable) Specifies
  89.      *   the credentials used to sign requests. Provide an
  90.      *   Aws\ClientSideMonitoring\ConfigurationInterface object, a callable
  91.      *   configuration provider used to create client-side monitoring configuration,
  92.      *   `false` to disable csm, or an associative array with the following keys:
  93.      *   enabled: (bool) Set to true to enable client-side monitoring, defaults
  94.      *   to false; host: (string) the host location to send monitoring events to,
  95.      *   defaults to 127.0.0.1; port: (int) The port used for the host connection,
  96.      *   defaults to 31000; client_id: (string) An identifier for this project
  97.      * - debug: (bool|array) Set to true to display debug information when
  98.      *   sending requests. Alternatively, you can provide an associative array
  99.      *   with the following keys: logfn: (callable) Function that is invoked
  100.      *   with log messages; stream_size: (int) When the size of a stream is
  101.      *   greater than this number, the stream data will not be logged (set to
  102.      *   "0" to not log any stream data); scrub_auth: (bool) Set to false to
  103.      *   disable the scrubbing of auth data from the logged messages; http:
  104.      *   (bool) Set to false to disable the "debug" feature of lower level HTTP
  105.      *   adapters (e.g., verbose curl output).
  106.      * - stats: (bool|array) Set to true to gather transfer statistics on
  107.      *   requests sent. Alternatively, you can provide an associative array with
  108.      *   the following keys: retries: (bool) Set to false to disable reporting
  109.      *   on retries attempted; http: (bool) Set to true to enable collecting
  110.      *   statistics from lower level HTTP adapters (e.g., values returned in
  111.      *   GuzzleHttp\TransferStats). HTTP handlers must support an
  112.      *   `http_stats_receiver` option for this to have an effect; timer: (bool)
  113.      *   Set to true to enable a command timer that reports the total wall clock
  114.      *   time spent on an operation in seconds.
  115.      * - disable_host_prefix_injection: (bool) Set to true to disable host prefix
  116.      *   injection logic for services that use it. This disables the entire
  117.      *   prefix injection, including the portions supplied by user-defined
  118.      *   parameters. Setting this flag will have no effect on services that do
  119.      *   not use host prefix injection.
  120.      * - endpoint: (string) The full URI of the webservice. This is only
  121.      *   required when connecting to a custom endpoint (e.g., a local version
  122.      *   of S3).
  123.      * - endpoint_discovery: (Aws\EndpointDiscovery\ConfigurationInterface,
  124.      *   Aws\CacheInterface, array, callable) Settings for endpoint discovery.
  125.      *   Provide an instance of Aws\EndpointDiscovery\ConfigurationInterface,
  126.      *   an instance Aws\CacheInterface, a callable that provides a promise for
  127.      *   a Configuration object, or an associative array with the following
  128.      *   keys: enabled: (bool) Set to true to enable endpoint discovery, false
  129.      *   to explicitly disable it, defaults to false; cache_limit: (int) The
  130.      *   maximum number of keys in the endpoints cache, defaults to 1000.
  131.      * - endpoint_provider: (callable) An optional PHP callable that
  132.      *   accepts a hash of options including a "service" and "region" key and
  133.      *   returns NULL or a hash of endpoint data, of which the "endpoint" key
  134.      *   is required. See Aws\Endpoint\EndpointProvider for a list of built-in
  135.      *   providers.
  136.      * - handler: (callable) A handler that accepts a command object,
  137.      *   request object and returns a promise that is fulfilled with an
  138.      *   Aws\ResultInterface object or rejected with an
  139.      *   Aws\Exception\AwsException. A handler does not accept a next handler
  140.      *   as it is terminal and expected to fulfill a command. If no handler is
  141.      *   provided, a default Guzzle handler will be utilized.
  142.      * - http: (array, default=array(0)) Set to an array of SDK request
  143.      *   options to apply to each request (e.g., proxy, verify, etc.).
  144.      * - http_handler: (callable) An HTTP handler is a function that
  145.      *   accepts a PSR-7 request object and returns a promise that is fulfilled
  146.      *   with a PSR-7 response object or rejected with an array of exception
  147.      *   data. NOTE: This option supersedes any provided "handler" option.
  148.      * - idempotency_auto_fill: (bool|callable) Set to false to disable SDK to
  149.      *   populate parameters that enabled 'idempotencyToken' trait with a random
  150.      *   UUID v4 value on your behalf. Using default value 'true' still allows
  151.      *   parameter value to be overwritten when provided. Note: auto-fill only
  152.      *   works when cryptographically secure random bytes generator functions
  153.      *   (random_bytes, openssl_random_pseudo_bytes or mcrypt_create_iv) can be
  154.      *   found. You may also provide a callable source of random bytes.
  155.      * - profile: (string) Allows you to specify which profile to use when
  156.      *   credentials are created from the AWS credentials file in your HOME
  157.      *   directory. This setting overrides the AWS_PROFILE environment
  158.      *   variable. Note: Specifying "profile" will cause the "credentials" key
  159.      *   to be ignored.
  160.      * - region: (string, required) Region to connect to. See
  161.      *   http://docs.aws.amazon.com/general/latest/gr/rande.html for a list of
  162.      *   available regions.
  163.      * - retries: (int, Aws\Retry\ConfigurationInterface, Aws\CacheInterface,
  164.      *   array, callable) Configures the retry mode and maximum number of
  165.      *   allowed retries for a client (pass 0 to disable retries). Provide an
  166.      *   integer for 'legacy' mode with the specified number of retries.
  167.      *   Otherwise provide an instance of Aws\Retry\ConfigurationInterface, an
  168.      *   instance of  Aws\CacheInterface, a callable function, or an array with
  169.      *   the following keys: mode: (string) Set to 'legacy', 'standard' (uses
  170.      *   retry quota management), or 'adapative' (an experimental mode that adds
  171.      *   client-side rate limiting to standard mode); max_attempts (int) The
  172.      *   maximum number of attempts for a given request.
  173.      * - scheme: (string, default=string(5) "https") URI scheme to use when
  174.      *   connecting connect. The SDK will utilize "https" endpoints (i.e.,
  175.      *   utilize SSL/TLS connections) by default. You can attempt to connect to
  176.      *   a service over an unencrypted "http" endpoint by setting ``scheme`` to
  177.      *   "http".
  178.      * - signature_provider: (callable) A callable that accepts a signature
  179.      *   version name (e.g., "v4"), a service name, and region, and
  180.      *   returns a SignatureInterface object or null. This provider is used to
  181.      *   create signers utilized by the client. See
  182.      *   Aws\Signature\SignatureProvider for a list of built-in providers
  183.      * - signature_version: (string) A string representing a custom
  184.      *   signature version to use with a service (e.g., v4). Note that
  185.      *   per/operation signature version MAY override this requested signature
  186.      *   version.
  187.      * - use_aws_shared_config_files: (bool, default=bool(true)) Set to false to
  188.      *   disable checking for shared config file in '~/.aws/config' and
  189.      *   '~/.aws/credentials'.  This will override the AWS_CONFIG_FILE
  190.      *   environment variable.
  191.      * - validate: (bool, default=bool(true)) Set to false to disable
  192.      *   client-side parameter validation.
  193.      * - version: (string, required) The version of the webservice to
  194.      *   utilize (e.g., 2006-03-01).
  195.      * - account_id_endpoint_mode: (string, default(preferred)) this option
  196.      *   decides whether credentials should resolve an accountId value,
  197.      *   which is going to be used as part of the endpoint resolution.
  198.      *   The valid values for this option are:
  199.      *   - preferred: when this value is set then, a warning is logged when
  200.      *     accountId is empty in the resolved identity.
  201.      *   - required: when this value is set then, an exception is thrown when
  202.      *     accountId is empty in the resolved identity.
  203.      *   - disabled: when this value is set then, the validation for if accountId
  204.      *     was resolved or not, is ignored.
  205.      * - ua_append: (string, array) To pass custom user agent parameters.
  206.      * - app_id: (string) an optional application specific identifier that can be set.
  207.      *   When set it will be appended to the User-Agent header of every request
  208.      *   in the form of App/{AppId}. This variable is sourced from environment
  209.      *   variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
  210.      *   See https://docs.aws.amazon.com/sdkref/latest/guide/settings-reference.html for
  211.      *   more information on environment variables and shared config settings.
  212.      *
  213.      * @param array $args Client configuration arguments.
  214.      *
  215.      * @throws \InvalidArgumentException if any required options are missing or
  216.      *                                   the service is not supported.
  217.      */
  218.     public function __construct(array $args)
  219.     {
  220.         list($service$exceptionClass) = $this->parseClass();
  221.         if (!isset($args['service'])) {
  222.             $args['service'] = manifest($service)['endpoint'];
  223.         }
  224.         if (!isset($args['exception_class'])) {
  225.             $args['exception_class'] = $exceptionClass;
  226.         }
  227.         $this->handlerList = new HandlerList();
  228.         $resolver = new ClientResolver(static::getArguments());
  229.         $config $resolver->resolve($args$this->handlerList);
  230.         $this->api $config['api'];
  231.         $this->signatureProvider $config['signature_provider'];
  232.         $this->authSchemeResolver $config['auth_scheme_resolver'];
  233.         $this->endpoint = new Uri($config['endpoint']);
  234.         $this->credentialProvider $config['credentials'];
  235.         $this->tokenProvider $config['token'];
  236.         $this->region $config['region'] ?? null;
  237.         $this->signingRegionSet $config['sigv4a_signing_region_set'] ?? null;
  238.         $this->config $config['config'];
  239.         $this->setClientBuiltIns($args$config);
  240.         $this->clientContextParams $this->setClientContextParams($args);
  241.         $this->defaultRequestOptions $config['http'];
  242.         $this->endpointProvider $config['endpoint_provider'];
  243.         $this->serializer $config['serializer'];
  244.         $this->addSignatureMiddleware($args);
  245.         $this->addInvocationId();
  246.         $this->addEndpointParameterMiddleware($args);
  247.         $this->addEndpointDiscoveryMiddleware($config$args);
  248.         $this->addRequestCompressionMiddleware($config);
  249.         $this->loadAliases();
  250.         $this->addStreamRequestPayload();
  251.         $this->addRecursionDetection();
  252.         if ($this->isUseEndpointV2()) {
  253.             $this->addEndpointV2Middleware();
  254.         }
  255.         $this->addAuthSelectionMiddleware();
  256.         if (!is_null($this->api->getMetadata('awsQueryCompatible'))) {
  257.             $this->addQueryCompatibleInputMiddleware($this->api);
  258.             $this->addQueryModeHeader();
  259.         }
  260.         if (isset($args['with_resolved'])) {
  261.             $args['with_resolved']($config);
  262.         }
  263.         $this->addUserAgentMiddleware($config);
  264.     }
  265.     public function getHandlerList()
  266.     {
  267.         return $this->handlerList;
  268.     }
  269.     public function getConfig($option null)
  270.     {
  271.         return $option === null
  272.             $this->config
  273.             $this->config[$option] ?? null;
  274.     }
  275.     public function getCredentials()
  276.     {
  277.         $fn $this->credentialProvider;
  278.         return $fn();
  279.     }
  280.     public function getEndpoint()
  281.     {
  282.         return $this->endpoint;
  283.     }
  284.     public function getRegion()
  285.     {
  286.         return $this->region;
  287.     }
  288.     public function getApi()
  289.     {
  290.         return $this->api;
  291.     }
  292.     public function getCommand($name, array $args = [])
  293.     {
  294.         // Fail fast if the command cannot be found in the description.
  295.         if (!isset($this->getApi()['operations'][$name])) {
  296.             $name ucfirst($name);
  297.             if (!isset($this->getApi()['operations'][$name])) {
  298.                 throw new \InvalidArgumentException("Operation not found: $name");
  299.             }
  300.         }
  301.         if (!isset($args['@http'])) {
  302.             $args['@http'] = $this->defaultRequestOptions;
  303.         } else {
  304.             $args['@http'] += $this->defaultRequestOptions;
  305.         }
  306.         return new Command($name$args, clone $this->getHandlerList());
  307.     }
  308.     public function getEndpointProvider()
  309.     {
  310.         return $this->endpointProvider;
  311.     }
  312.     /**
  313.      * Provides the set of service context parameter
  314.      * key-value pairs used for endpoint resolution.
  315.      *
  316.      * @return array
  317.      */
  318.     public function getClientContextParams()
  319.     {
  320.         return $this->clientContextParams;
  321.     }
  322.     /**
  323.      * Provides the set of built-in keys and values
  324.      * used for endpoint resolution
  325.      *
  326.      * @return array
  327.      */
  328.     public function getClientBuiltIns()
  329.     {
  330.         return $this->clientBuiltIns;
  331.     }
  332.     public function __sleep()
  333.     {
  334.         throw new \RuntimeException('Instances of ' . static::class
  335.             . ' cannot be serialized');
  336.     }
  337.     /**
  338.      * Get the signature_provider function of the client.
  339.      *
  340.      * @return callable
  341.      */
  342.     final public function getSignatureProvider()
  343.     {
  344.         return $this->signatureProvider;
  345.     }
  346.     /**
  347.      * Parse the class name and setup the custom exception class of the client
  348.      * and return the "service" name of the client and "exception_class".
  349.      *
  350.      * @return array
  351.      */
  352.     private function parseClass()
  353.     {
  354.         $klass get_class($this);
  355.         if ($klass === __CLASS__) {
  356.             return [''AwsException::class];
  357.         }
  358.         $service substr($klassstrrpos($klass'\\') + 1, -6);
  359.         return [
  360.             strtolower($service),
  361.             "Aws\\{$service}\\Exception\\{$service}Exception"
  362.         ];
  363.     }
  364.     private function addEndpointParameterMiddleware($args)
  365.     {
  366.         if (empty($args['disable_host_prefix_injection'])) {
  367.             $list $this->getHandlerList();
  368.             $list->appendBuild(
  369.                 EndpointParameterMiddleware::wrap(
  370.                     $this->api
  371.                 ),
  372.                 'endpoint_parameter'
  373.             );
  374.         }
  375.     }
  376.     private function addEndpointDiscoveryMiddleware($config$args)
  377.     {
  378.         $list $this->getHandlerList();
  379.         if (!isset($args['endpoint'])) {
  380.             $list->appendBuild(
  381.                 EndpointDiscoveryMiddleware::wrap(
  382.                     $this,
  383.                     $args,
  384.                     $config['endpoint_discovery']
  385.                 ),
  386.                 'EndpointDiscoveryMiddleware'
  387.             );
  388.         }
  389.     }
  390.     private function addSignatureMiddleware(array $args)
  391.     {
  392.         $api $this->getApi();
  393.         $provider $this->signatureProvider;
  394.         $signatureVersion $this->config['signature_version'];
  395.         $name $this->config['signing_name'];
  396.         $region $this->config['signing_region'];
  397.         $signingRegionSet $this->signingRegionSet;
  398.         if (isset($args['signature_version'])
  399.          || isset($this->config['configured_signature_version'])
  400.         ) {
  401.             $configuredSignatureVersion true;
  402.         } else {
  403.             $configuredSignatureVersion false;
  404.         }
  405.         $resolver = static function (
  406.             CommandInterface $command
  407.         ) use (
  408.                 $api,
  409.                 $provider,
  410.                 $name,
  411.                 $region,
  412.                 $signatureVersion,
  413.                 $configuredSignatureVersion,
  414.                 $signingRegionSet
  415.         ) {
  416.             if (!$configuredSignatureVersion) {
  417.                 if (!empty($command['@context']['signing_region'])) {
  418.                     $region $command['@context']['signing_region'];
  419.                 }
  420.                 if (!empty($command['@context']['signing_service'])) {
  421.                     $name $command['@context']['signing_service'];
  422.                 }
  423.                 if (!empty($command['@context']['signature_version'])) {
  424.                     $signatureVersion $command['@context']['signature_version'];
  425.                 }
  426.                 $authType $api->getOperation($command->getName())['authtype'];
  427.                 switch ($authType){
  428.                     case 'none':
  429.                         $signatureVersion 'anonymous';
  430.                         break;
  431.                     case 'v4-unsigned-body':
  432.                         $signatureVersion 'v4-unsigned-body';
  433.                         break;
  434.                     case 'bearer':
  435.                         $signatureVersion 'bearer';
  436.                         break;
  437.                 }
  438.             }
  439.             if ($signatureVersion === 'v4a') {
  440.                 $commandSigningRegionSet = !empty($command['@context']['signing_region_set'])
  441.                     ? implode(', '$command['@context']['signing_region_set'])
  442.                     : null;
  443.                 $region $signingRegionSet
  444.                     ?? $commandSigningRegionSet
  445.                     ?? $region;
  446.             }
  447.             // Capture signature metric
  448.             $command->getMetricsBuilder()->identifyMetricByValueAndAppend(
  449.                 'signature',
  450.                 $signatureVersion
  451.             );
  452.             return SignatureProvider::resolve($provider$signatureVersion$name$region);
  453.         };
  454.         $this->handlerList->appendSign(
  455.             Middleware::signer($this->credentialProvider,
  456.                 $resolver,
  457.                 $this->tokenProvider,
  458.                 $this->getConfig()
  459.             ),
  460.             'signer'
  461.         );
  462.     }
  463.     private function addRequestCompressionMiddleware($config)
  464.     {
  465.         if (empty($config['disable_request_compression'])) {
  466.             $list $this->getHandlerList();
  467.             $list->appendBuild(
  468.                 RequestCompressionMiddleware::wrap($config),
  469.                 'request-compression'
  470.             );
  471.         }
  472.     }
  473.     private function addQueryCompatibleInputMiddleware(Service $api)
  474.     {
  475.             $list $this->getHandlerList();
  476.             $list->appendValidate(
  477.                 QueryCompatibleInputMiddleware::wrap($api),
  478.                 'query-compatible-input'
  479.             );
  480.     }
  481.     private function addQueryModeHeader(): void
  482.     {
  483.         $list $this->getHandlerList();
  484.         $list->appendBuild(
  485.             Middleware::mapRequest(function (RequestInterface $r) {
  486.                 return $r->withHeader(
  487.                     'x-amzn-query-mode',
  488.                     true
  489.                 );
  490.             }),
  491.             'x-amzn-query-mode-header'
  492.         );
  493.     }
  494.     private function addInvocationId()
  495.     {
  496.         // Add invocation id to each request
  497.         $this->handlerList->prependSign(Middleware::invocationId(), 'invocation-id');
  498.     }
  499.     private function loadAliases($file null)
  500.     {
  501.         if (!isset($this->aliases)) {
  502.             if (is_null($file)) {
  503.                 $file __DIR__ '/data/aliases.json';
  504.             }
  505.             $aliases \Aws\load_compiled_json($file);
  506.             $serviceId $this->api->getServiceId();
  507.             $version $this->getApi()->getApiVersion();
  508.             if (!empty($aliases['operations'][$serviceId][$version])) {
  509.                 $this->aliases array_flip($aliases['operations'][$serviceId][$version]);
  510.             }
  511.         }
  512.     }
  513.     private function addStreamRequestPayload()
  514.     {
  515.         $streamRequestPayloadMiddleware StreamRequestPayloadMiddleware::wrap(
  516.             $this->api
  517.         );
  518.         $this->handlerList->prependSign(
  519.             $streamRequestPayloadMiddleware,
  520.             'StreamRequestPayloadMiddleware'
  521.         );
  522.     }
  523.     private function addRecursionDetection()
  524.     {
  525.         // Add recursion detection header to requests
  526.         // originating in supported Lambda runtimes
  527.         $this->handlerList->appendBuild(
  528.             Middleware::recursionDetection(), 'recursion-detection'
  529.         );
  530.     }
  531.     private function addAuthSelectionMiddleware()
  532.     {
  533.         $list $this->getHandlerList();
  534.         $list->prependBuild(
  535.             AuthSelectionMiddleware::wrap(
  536.                 $this->authSchemeResolver,
  537.                 $this->getApi()
  538.             ),
  539.             'auth-selection'
  540.         );
  541.     }
  542.     private function addEndpointV2Middleware()
  543.     {
  544.         $list $this->getHandlerList();
  545.         $endpointArgs $this->getEndpointProviderArgs();
  546.         $list->prependBuild(
  547.             EndpointV2Middleware::wrap(
  548.                 $this->endpointProvider,
  549.                 $this->getApi(),
  550.                 $endpointArgs,
  551.                 $this->credentialProvider
  552.             ),
  553.             'endpoint-resolution'
  554.         );
  555.     }
  556.     /**
  557.      * Appends the user agent middleware.
  558.      * This middleware MUST be appended after the
  559.      * signature middleware `addSignatureMiddleware`,
  560.      * so that metrics around signatures are properly
  561.      * captured.
  562.      *
  563.      * @param $args
  564.      * @return void
  565.      */
  566.     private function addUserAgentMiddleware($args)
  567.     {
  568.         $this->getHandlerList()->appendSign(
  569.             UserAgentMiddleware::wrap($args),
  570.             'user-agent'
  571.         );
  572.     }
  573.     /**
  574.      * Retrieves client context param definition from service model,
  575.      * creates mapping of client context param names with client-provided
  576.      * values.
  577.      *
  578.      * @return array
  579.      */
  580.     private function setClientContextParams($args)
  581.     {
  582.         $api $this->getApi();
  583.         $resolvedParams = [];
  584.         if (!empty($paramDefinitions $api->getClientContextParams())) {
  585.             foreach($paramDefinitions as $paramName => $paramValue) {
  586.                 if (isset($args[$paramName])) {
  587.                    $resolvedParams[$paramName] = $args[$paramName];
  588.                }
  589.             }
  590.         }
  591.         return $resolvedParams;
  592.     }
  593.     /**
  594.      * Retrieves and sets default values used for endpoint resolution.
  595.      */
  596.     private function setClientBuiltIns($args$resolvedConfig)
  597.     {
  598.         $builtIns = [];
  599.         $config $resolvedConfig['config'];
  600.         $service $args['service'];
  601.         $builtIns['SDK::Endpoint'] = null;
  602.         if (!empty($args['endpoint'])) {
  603.             $builtIns['SDK::Endpoint'] = $args['endpoint'];
  604.         } elseif (isset($config['configured_endpoint_url'])) {
  605.             $builtIns['SDK::Endpoint'] = (string) $this->getEndpoint();
  606.         }
  607.         $builtIns['AWS::Region'] = $this->getRegion();
  608.         $builtIns['AWS::UseFIPS'] = $config['use_fips_endpoint']->isUseFipsEndpoint();
  609.         $builtIns['AWS::UseDualStack'] = $config['use_dual_stack_endpoint']->isUseDualstackEndpoint();
  610.         if ($service === 's3' || $service === 's3control'){
  611.             $builtIns['AWS::S3::UseArnRegion'] = $config['use_arn_region']->isUseArnRegion();
  612.         }
  613.         if ($service === 's3') {
  614.             $builtIns['AWS::S3::UseArnRegion'] = $config['use_arn_region']->isUseArnRegion();
  615.             $builtIns['AWS::S3::Accelerate'] = $config['use_accelerate_endpoint'];
  616.             $builtIns['AWS::S3::ForcePathStyle'] = $config['use_path_style_endpoint'];
  617.             $builtIns['AWS::S3::DisableMultiRegionAccessPoints'] = $config['disable_multiregion_access_points'];
  618.         }
  619.         $builtIns['AWS::Auth::AccountIdEndpointMode'] = $resolvedConfig['account_id_endpoint_mode'];
  620.         $this->clientBuiltIns += $builtIns;
  621.     }
  622.     /**
  623.      * Retrieves arguments to be used in endpoint resolution.
  624.      *
  625.      * @return array
  626.      */
  627.     public function getEndpointProviderArgs()
  628.     {
  629.         return $this->normalizeEndpointProviderArgs();
  630.     }
  631.     /**
  632.      * Combines built-in and client context parameter values in
  633.      * order of specificity.  Client context parameter values supersede
  634.      * built-in values.
  635.      *
  636.      * @return array
  637.      */
  638.     private function normalizeEndpointProviderArgs()
  639.     {
  640.         $normalizedBuiltIns = [];
  641.         foreach($this->clientBuiltIns as $name => $value) {
  642.             $normalizedName explode('::'$name);
  643.             $normalizedName $normalizedName[count($normalizedName) - 1];
  644.             $normalizedBuiltIns[$normalizedName] = $value;
  645.         }
  646.         return array_merge($normalizedBuiltIns$this->getClientContextParams());
  647.     }
  648.     protected function isUseEndpointV2()
  649.     {
  650.         return $this->endpointProvider instanceof EndpointProviderV2;
  651.     }
  652.     public static function emitDeprecationWarning() {
  653.         trigger_error(
  654.             "This method is deprecated. It will be removed in an upcoming release."
  655.             E_USER_DEPRECATED
  656.         );
  657.         $phpVersion PHP_VERSION_ID;
  658.         if ($phpVersion <  70205) {
  659.             $phpVersionString phpversion();
  660.             @trigger_error(
  661.                 "This installation of the SDK is using PHP version"
  662.                 .  {$phpVersionString}, which will be deprecated on August"
  663.                 .  " 15th, 2023.  Please upgrade your PHP version to a minimum of"
  664.                 .  " 7.2.5 before then to continue receiving updates to the AWS"
  665.                 .  " SDK for PHP.  To disable this warning, set"
  666.                 .  " suppress_php_deprecation_warning to true on the client constructor"
  667.                 .  " or set the environment variable AWS_SUPPRESS_PHP_DEPRECATION_WARNING"
  668.                 .  " to true.",
  669.                 E_USER_DEPRECATED
  670.             );
  671.         }
  672.     }
  673.     /**
  674.      * Returns a service model and doc model with any necessary changes
  675.      * applied.
  676.      *
  677.      * @param array $api  Array of service data being documented.
  678.      * @param array $docs Array of doc model data.
  679.      *
  680.      * @return array Tuple containing a [Service, DocModel]
  681.      *
  682.      * @internal This should only used to document the service API.
  683.      * @codeCoverageIgnore
  684.      */
  685.     public static function applyDocFilters(array $api, array $docs)
  686.     {
  687.         $aliases \Aws\load_compiled_json(__DIR__ '/data/aliases.json');
  688.         $serviceId $api['metadata']['serviceId'] ?? '';
  689.         $version $api['metadata']['apiVersion'];
  690.         // Replace names for any operations with SDK aliases
  691.         if (!empty($aliases['operations'][$serviceId][$version])) {
  692.             foreach ($aliases['operations'][$serviceId][$version] as $op => $alias) {
  693.                 $api['operations'][$alias] = $api['operations'][$op];
  694.                 $docs['operations'][$alias] = $docs['operations'][$op];
  695.                 unset($api['operations'][$op], $docs['operations'][$op]);
  696.             }
  697.         }
  698.         ksort($api['operations']);
  699.         return [
  700.             new Service($apiApiProvider::defaultProvider()),
  701.             new DocModel($docs)
  702.         ];
  703.     }
  704.     /**
  705.      * @deprecated
  706.      * @return static
  707.      */
  708.     public static function factory(array $config = [])
  709.     {
  710.         return new static($config);
  711.     }
  712. }