AwsClient.php 26 KB

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