123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679 |
- <?php
- namespace Aws;
- use Aws\Api\ApiProvider;
- use Aws\Api\DocModel;
- use Aws\Api\Service;
- use Aws\EndpointDiscovery\EndpointDiscoveryMiddleware;
- use Aws\EndpointV2\EndpointProviderV2;
- use Aws\EndpointV2\EndpointV2Middleware;
- use Aws\Exception\AwsException;
- use Aws\Signature\SignatureProvider;
- use GuzzleHttp\Psr7\Uri;
- class AwsClient implements AwsClientInterface
- {
- use AwsClientTrait;
-
- private $aliases;
-
- private $config;
-
- private $region;
-
- private $endpoint;
-
- private $api;
-
- private $signatureProvider;
-
- private $credentialProvider;
-
- private $tokenProvider;
-
- private $handlerList;
-
- private $defaultRequestOptions;
-
- private $clientContextParams = [];
-
- protected $clientBuiltIns = [];
-
- protected $endpointProvider;
-
- protected $serializer;
-
- public static function getArguments()
- {
- return ClientResolver::getDefaultArguments();
- }
-
- public function __construct(array $args)
- {
- list($service, $exceptionClass) = $this->parseClass();
- if (!isset($args['service'])) {
- $args['service'] = manifest($service)['endpoint'];
- }
- if (!isset($args['exception_class'])) {
- $args['exception_class'] = $exceptionClass;
- }
- $this->handlerList = new HandlerList();
- $resolver = new ClientResolver(static::getArguments());
- $config = $resolver->resolve($args, $this->handlerList);
- $this->api = $config['api'];
- $this->signatureProvider = $config['signature_provider'];
- $this->endpoint = new Uri($config['endpoint']);
- $this->credentialProvider = $config['credentials'];
- $this->tokenProvider = $config['token'];
- $this->region = isset($config['region']) ? $config['region'] : null;
- $this->config = $config['config'];
- $this->setClientBuiltIns($args);
- $this->clientContextParams = $this->setClientContextParams($args);
- $this->defaultRequestOptions = $config['http'];
- $this->endpointProvider = $config['endpoint_provider'];
- $this->serializer = $config['serializer'];
- $this->addSignatureMiddleware();
- $this->addInvocationId();
- $this->addEndpointParameterMiddleware($args);
- $this->addEndpointDiscoveryMiddleware($config, $args);
- $this->addRequestCompressionMiddleware($config);
- $this->loadAliases();
- $this->addStreamRequestPayload();
- $this->addRecursionDetection();
- if ($this->isUseEndpointV2()) {
- $this->addEndpointV2Middleware();
- }
- if (!is_null($this->api->getMetadata('awsQueryCompatible'))) {
- $this->addQueryCompatibleInputMiddleware($this->api);
- }
- if (isset($args['with_resolved'])) {
- $args['with_resolved']($config);
- }
- }
- public function getHandlerList()
- {
- return $this->handlerList;
- }
- public function getConfig($option = null)
- {
- return $option === null
- ? $this->config
- : (isset($this->config[$option])
- ? $this->config[$option]
- : null);
- }
- public function getCredentials()
- {
- $fn = $this->credentialProvider;
- return $fn();
- }
- public function getEndpoint()
- {
- return $this->endpoint;
- }
- public function getRegion()
- {
- return $this->region;
- }
- public function getApi()
- {
- return $this->api;
- }
- public function getCommand($name, array $args = [])
- {
-
- if (!isset($this->getApi()['operations'][$name])) {
- $name = ucfirst($name);
- if (!isset($this->getApi()['operations'][$name])) {
- throw new \InvalidArgumentException("Operation not found: $name");
- }
- }
- if (!isset($args['@http'])) {
- $args['@http'] = $this->defaultRequestOptions;
- } else {
- $args['@http'] += $this->defaultRequestOptions;
- }
- return new Command($name, $args, clone $this->getHandlerList());
- }
- public function getEndpointProvider()
- {
- return $this->endpointProvider;
- }
-
- public function getClientContextParams()
- {
- return $this->clientContextParams;
- }
-
- public function getClientBuiltIns()
- {
- return $this->clientBuiltIns;
- }
- public function __sleep()
- {
- throw new \RuntimeException('Instances of ' . static::class
- . ' cannot be serialized');
- }
-
- final public function getSignatureProvider()
- {
- return $this->signatureProvider;
- }
-
- private function parseClass()
- {
- $klass = get_class($this);
- if ($klass === __CLASS__) {
- return ['', AwsException::class];
- }
- $service = substr($klass, strrpos($klass, '\\') + 1, -6);
- return [
- strtolower($service),
- "Aws\\{$service}\\Exception\\{$service}Exception"
- ];
- }
- private function addEndpointParameterMiddleware($args)
- {
- if (empty($args['disable_host_prefix_injection'])) {
- $list = $this->getHandlerList();
- $list->appendBuild(
- EndpointParameterMiddleware::wrap(
- $this->api
- ),
- 'endpoint_parameter'
- );
- }
- }
- private function addEndpointDiscoveryMiddleware($config, $args)
- {
- $list = $this->getHandlerList();
- if (!isset($args['endpoint'])) {
- $list->appendBuild(
- EndpointDiscoveryMiddleware::wrap(
- $this,
- $args,
- $config['endpoint_discovery']
- ),
- 'EndpointDiscoveryMiddleware'
- );
- }
- }
- private function addSignatureMiddleware()
- {
- $api = $this->getApi();
- $provider = $this->signatureProvider;
- $version = $this->config['signature_version'];
- $name = $this->config['signing_name'];
- $region = $this->config['signing_region'];
- $resolver = static function (
- CommandInterface $c
- ) use ($api, $provider, $name, $region, $version) {
- if (!empty($c['@context']['signing_region'])) {
- $region = $c['@context']['signing_region'];
- }
- if (!empty($c['@context']['signing_service'])) {
- $name = $c['@context']['signing_service'];
- }
- $authType = $api->getOperation($c->getName())['authtype'];
- switch ($authType){
- case 'none':
- $version = 'anonymous';
- break;
- case 'v4-unsigned-body':
- $version = 'v4-unsigned-body';
- break;
- case 'bearer':
- $version = 'bearer';
- break;
- }
- if (isset($c['@context']['signature_version'])) {
- if ($c['@context']['signature_version'] == 'v4a') {
- $version = 'v4a';
- }
- }
- if (!empty($endpointAuthSchemes = $c->getAuthSchemes())) {
- $version = $endpointAuthSchemes['version'];
- $name = isset($endpointAuthSchemes['name']) ?
- $endpointAuthSchemes['name'] : $name;
- $region = isset($endpointAuthSchemes['region']) ?
- $endpointAuthSchemes['region'] : $region;
- }
- return SignatureProvider::resolve($provider, $version, $name, $region);
- };
- $this->handlerList->appendSign(
- Middleware::signer($this->credentialProvider,
- $resolver,
- $this->tokenProvider,
- $this->getConfig()
- ),
- 'signer'
- );
- }
- private function addRequestCompressionMiddleware($config)
- {
- if (empty($config['disable_request_compression'])) {
- $list = $this->getHandlerList();
- $list->appendBuild(
- RequestCompressionMiddleware::wrap($config),
- 'request-compression'
- );
- }
- }
- private function addQueryCompatibleInputMiddleware(Service $api)
- {
- $list = $this->getHandlerList();
- $list->appendValidate(
- QueryCompatibleInputMiddleware::wrap($api),
- 'query-compatible-input'
- );
- }
- private function addInvocationId()
- {
-
- $this->handlerList->prependSign(Middleware::invocationId(), 'invocation-id');
- }
- private function loadAliases($file = null)
- {
- if (!isset($this->aliases)) {
- if (is_null($file)) {
- $file = __DIR__ . '/data/aliases.json';
- }
- $aliases = \Aws\load_compiled_json($file);
- $serviceId = $this->api->getServiceId();
- $version = $this->getApi()->getApiVersion();
- if (!empty($aliases['operations'][$serviceId][$version])) {
- $this->aliases = array_flip($aliases['operations'][$serviceId][$version]);
- }
- }
- }
- private function addStreamRequestPayload()
- {
- $streamRequestPayloadMiddleware = StreamRequestPayloadMiddleware::wrap(
- $this->api
- );
- $this->handlerList->prependSign(
- $streamRequestPayloadMiddleware,
- 'StreamRequestPayloadMiddleware'
- );
- }
- private function addRecursionDetection()
- {
-
-
- $this->handlerList->appendBuild(
- Middleware::recursionDetection(), 'recursion-detection'
- );
- }
- private function addEndpointV2Middleware()
- {
- $list = $this->getHandlerList();
- $endpointArgs = $this->getEndpointProviderArgs();
- $list->prependBuild(
- EndpointV2Middleware::wrap(
- $this->endpointProvider,
- $this->getApi(),
- $endpointArgs
- ),
- 'endpoint-resolution'
- );
- }
-
- private function setClientContextParams($args)
- {
- $api = $this->getApi();
- $resolvedParams = [];
- if (!empty($paramDefinitions = $api->getClientContextParams())) {
- foreach($paramDefinitions as $paramName => $paramValue) {
- if (isset($args[$paramName])) {
- $result[$paramName] = $args[$paramName];
- }
- }
- }
- return $resolvedParams;
- }
-
- private function setClientBuiltIns($args)
- {
- $builtIns = [];
- $config = $this->getConfig();
- $service = $args['service'];
- $builtIns['SDK::Endpoint'] = isset($args['endpoint']) ? $args['endpoint'] : null;
- $builtIns['AWS::Region'] = $this->getRegion();
- $builtIns['AWS::UseFIPS'] = $config['use_fips_endpoint']->isUseFipsEndpoint();
- $builtIns['AWS::UseDualStack'] = $config['use_dual_stack_endpoint']->isUseDualstackEndpoint();
- if ($service === 's3' || $service === 's3control'){
- $builtIns['AWS::S3::UseArnRegion'] = $config['use_arn_region']->isUseArnRegion();
- }
- if ($service === 's3') {
- $builtIns['AWS::S3::UseArnRegion'] = $config['use_arn_region']->isUseArnRegion();
- $builtIns['AWS::S3::Accelerate'] = $config['use_accelerate_endpoint'];
- $builtIns['AWS::S3::ForcePathStyle'] = $config['use_path_style_endpoint'];
- $builtIns['AWS::S3::DisableMultiRegionAccessPoints'] = $config['disable_multiregion_access_points'];
- }
- $this->clientBuiltIns += $builtIns;
- }
-
- public function getEndpointProviderArgs()
- {
- return $this->normalizeEndpointProviderArgs();
- }
-
- private function normalizeEndpointProviderArgs()
- {
- $normalizedBuiltIns = [];
- foreach($this->clientBuiltIns as $name => $value) {
- $normalizedName = explode('::', $name);
- $normalizedName = $normalizedName[count($normalizedName) - 1];
- $normalizedBuiltIns[$normalizedName] = $value;
- }
- return array_merge($normalizedBuiltIns, $this->getClientContextParams());
- }
- protected function isUseEndpointV2()
- {
- return $this->endpointProvider instanceof EndpointProviderV2;
- }
- public static function emitDeprecationWarning() {
- $phpVersion = PHP_VERSION_ID;
- if ($phpVersion < 70205) {
- $phpVersionString = phpversion();
- @trigger_error(
- "This installation of the SDK is using PHP version"
- . " {$phpVersionString}, which will be deprecated on August"
- . " 15th, 2023. Please upgrade your PHP version to a minimum of"
- . " 7.2.5 before then to continue receiving updates to the AWS"
- . " SDK for PHP. To disable this warning, set"
- . " suppress_php_deprecation_warning to true on the client constructor"
- . " or set the environment variable AWS_SUPPRESS_PHP_DEPRECATION_WARNING"
- . " to true.",
- E_USER_DEPRECATED
- );
- }
- }
-
- public static function applyDocFilters(array $api, array $docs)
- {
- $aliases = \Aws\load_compiled_json(__DIR__ . '/data/aliases.json');
- $serviceId = $api['metadata']['serviceId'];
- $version = $api['metadata']['apiVersion'];
-
- if (!empty($aliases['operations'][$serviceId][$version])) {
- foreach ($aliases['operations'][$serviceId][$version] as $op => $alias) {
- $api['operations'][$alias] = $api['operations'][$op];
- $docs['operations'][$alias] = $docs['operations'][$op];
- unset($api['operations'][$op], $docs['operations'][$op]);
- }
- }
- ksort($api['operations']);
- return [
- new Service($api, ApiProvider::defaultProvider()),
- new DocModel($docs)
- ];
- }
-
- public static function factory(array $config = [])
- {
- return new static($config);
- }
- }
|