StsClient.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. namespace Aws\Sts;
  3. use Aws\AwsClient;
  4. use Aws\CacheInterface;
  5. use Aws\Credentials\Credentials;
  6. use Aws\Result;
  7. use Aws\Sts\RegionalEndpoints\ConfigurationProvider;
  8. /**
  9. * This client is used to interact with the **AWS Security Token Service (AWS STS)**.
  10. *
  11. * @method \Aws\Result assumeRole(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise assumeRoleAsync(array $args = [])
  13. * @method \Aws\Result assumeRoleWithSAML(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise assumeRoleWithSAMLAsync(array $args = [])
  15. * @method \Aws\Result assumeRoleWithWebIdentity(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise assumeRoleWithWebIdentityAsync(array $args = [])
  17. * @method \Aws\Result decodeAuthorizationMessage(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise decodeAuthorizationMessageAsync(array $args = [])
  19. * @method \Aws\Result getAccessKeyInfo(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise getAccessKeyInfoAsync(array $args = [])
  21. * @method \Aws\Result getCallerIdentity(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise getCallerIdentityAsync(array $args = [])
  23. * @method \Aws\Result getFederationToken(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise getFederationTokenAsync(array $args = [])
  25. * @method \Aws\Result getSessionToken(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise getSessionTokenAsync(array $args = [])
  27. */
  28. class StsClient extends AwsClient
  29. {
  30. /**
  31. * {@inheritdoc}
  32. *
  33. * In addition to the options available to
  34. * {@see \Aws\AwsClient::__construct}, StsClient accepts the following
  35. * options:
  36. *
  37. * - sts_regional_endpoints:
  38. * (Aws\Sts\RegionalEndpoints\ConfigurationInterface|Aws\CacheInterface\|callable|string|array)
  39. * Specifies whether to use regional or legacy endpoints for legacy regions.
  40. * Provide an Aws\Sts\RegionalEndpoints\ConfigurationInterface object, an
  41. * instance of Aws\CacheInterface, a callable configuration provider used
  42. * to create endpoint configuration, a string value of `legacy` or
  43. * `regional`, or an associative array with the following keys:
  44. * endpoint_types (string) Set to `legacy` or `regional`, defaults to
  45. * `legacy`
  46. *
  47. * @param array $args
  48. */
  49. public function __construct(array $args)
  50. {
  51. if (
  52. !isset($args['sts_regional_endpoints'])
  53. || $args['sts_regional_endpoints'] instanceof CacheInterface
  54. ) {
  55. $args['sts_regional_endpoints'] = ConfigurationProvider::defaultProvider($args);
  56. }
  57. $this->addBuiltIns($args);
  58. parent::__construct($args);
  59. }
  60. /**
  61. * Creates credentials from the result of an STS operations
  62. *
  63. * @param Result $result Result of an STS operation
  64. *
  65. * @return Credentials
  66. * @throws \InvalidArgumentException if the result contains no credentials
  67. */
  68. public function createCredentials(Result $result)
  69. {
  70. if (!$result->hasKey('Credentials')) {
  71. throw new \InvalidArgumentException('Result contains no credentials');
  72. }
  73. $c = $result['Credentials'];
  74. return new Credentials(
  75. $c['AccessKeyId'],
  76. $c['SecretAccessKey'],
  77. isset($c['SessionToken']) ? $c['SessionToken'] : null,
  78. isset($c['Expiration']) && $c['Expiration'] instanceof \DateTimeInterface
  79. ? (int) $c['Expiration']->format('U')
  80. : null
  81. );
  82. }
  83. /**
  84. * Adds service-specific client built-in value
  85. *
  86. * @return void
  87. */
  88. private function addBuiltIns($args)
  89. {
  90. $key = 'AWS::STS::UseGlobalEndpoint';
  91. $result = $args['sts_regional_endpoints'] instanceof \Closure ?
  92. $args['sts_regional_endpoints']()->wait() : $args['sts_regional_endpoints'];
  93. if (is_string($result)) {
  94. if ($result === 'regional') {
  95. $value = false;
  96. } else if ($result === 'legacy') {
  97. $value = true;
  98. } else {
  99. return;
  100. }
  101. } else {
  102. if ($result->getEndpointsType() === 'regional') {
  103. $value = false;
  104. } else {
  105. $value = true;
  106. }
  107. }
  108. $this->clientBuiltIns[$key] = $value;
  109. }
  110. }