RamRoleArnProvider.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace AlibabaCloud\Client\Credentials\Providers;
  3. use AlibabaCloud\Client\SDK;
  4. use AlibabaCloud\Client\AlibabaCloud;
  5. use AlibabaCloud\Client\Result\Result;
  6. use AlibabaCloud\Client\Request\Request;
  7. use AlibabaCloud\Client\Credentials\StsCredential;
  8. use AlibabaCloud\Client\Exception\ClientException;
  9. use AlibabaCloud\Client\Exception\ServerException;
  10. use AlibabaCloud\Client\Credentials\Requests\AssumeRole;
  11. /**
  12. * Class RamRoleArnProvider
  13. *
  14. * @package AlibabaCloud\Client\Credentials\Providers
  15. */
  16. class RamRoleArnProvider extends Provider
  17. {
  18. /**
  19. * Get credential.
  20. *
  21. *
  22. * @param int $timeout
  23. * @param int $connectTimeout
  24. *
  25. * @return StsCredential
  26. * @throws ClientException
  27. * @throws ServerException
  28. */
  29. public function get($timeout = Request::TIMEOUT, $connectTimeout = Request::CONNECT_TIMEOUT)
  30. {
  31. $credential = $this->getCredentialsInCache();
  32. if (null === $credential) {
  33. $result = $this->request($timeout, $connectTimeout);
  34. if (!isset($result['Credentials']['AccessKeyId'],
  35. $result['Credentials']['AccessKeySecret'],
  36. $result['Credentials']['SecurityToken'])) {
  37. throw new ServerException($result, $this->error, SDK::INVALID_CREDENTIAL);
  38. }
  39. $credential = $result['Credentials'];
  40. $this->cache($credential);
  41. }
  42. return new StsCredential(
  43. $credential['AccessKeyId'],
  44. $credential['AccessKeySecret'],
  45. $credential['SecurityToken']
  46. );
  47. }
  48. /**
  49. * Get credentials by request.
  50. *
  51. * @param $timeout
  52. * @param $connectTimeout
  53. *
  54. * @return Result
  55. * @throws ClientException
  56. * @throws ServerException
  57. */
  58. private function request($timeout, $connectTimeout)
  59. {
  60. $clientName = __CLASS__ . \uniqid('ak', true);
  61. $credential = $this->client->getCredential();
  62. AlibabaCloud::accessKeyClient(
  63. $credential->getAccessKeyId(),
  64. $credential->getAccessKeySecret()
  65. )->name($clientName);
  66. return (new AssumeRole($credential))
  67. ->client($clientName)
  68. ->timeout($timeout)
  69. ->connectTimeout($connectTimeout)
  70. ->debug($this->client->isDebug())
  71. ->request();
  72. }
  73. }