AssumeRoleCredentialProvider.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace Aws\Credentials;
  3. use Aws\Exception\CredentialsException;
  4. use Aws\Result;
  5. use Aws\Sts\StsClient;
  6. use GuzzleHttp\Promise\PromiseInterface;
  7. /**
  8. * Credential provider that provides credentials via assuming a role
  9. * More Information, see: http://docs.aws.amazon.com/aws-sdk-php/v3/api/api-sts-2011-06-15.html#assumerole
  10. */
  11. class AssumeRoleCredentialProvider
  12. {
  13. const ERROR_MSG = "Missing required 'AssumeRoleCredentialProvider' configuration option: ";
  14. /** @var StsClient */
  15. private $client;
  16. /** @var array */
  17. private $assumeRoleParams;
  18. /**
  19. * The constructor requires following configure parameters:
  20. * - client: a StsClient
  21. * - assume_role_params: Parameters used to make assumeRole call
  22. *
  23. * @param array $config Configuration options
  24. * @throws \InvalidArgumentException
  25. */
  26. public function __construct(array $config = [])
  27. {
  28. if (!isset($config['assume_role_params'])) {
  29. throw new \InvalidArgumentException(self::ERROR_MSG . "'assume_role_params'.");
  30. }
  31. if (!isset($config['client'])) {
  32. throw new \InvalidArgumentException(self::ERROR_MSG . "'client'.");
  33. }
  34. $this->client = $config['client'];
  35. $this->assumeRoleParams = $config['assume_role_params'];
  36. }
  37. /**
  38. * Loads assume role credentials.
  39. *
  40. * @return PromiseInterface
  41. */
  42. public function __invoke()
  43. {
  44. $client = $this->client;
  45. return $client->assumeRoleAsync($this->assumeRoleParams)
  46. ->then(function (Result $result) {
  47. return $this->client->createCredentials($result);
  48. })->otherwise(function (\RuntimeException $exception) {
  49. throw new CredentialsException(
  50. "Error in retrieving assume role credentials.",
  51. 0,
  52. $exception
  53. );
  54. });
  55. }
  56. }