EcsRamRoleProvider.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. namespace AlibabaCloud\Client\Credentials\Providers;
  3. use Exception;
  4. use Stringy\Stringy;
  5. use AlibabaCloud\Client\SDK;
  6. use AlibabaCloud\Client\Result\Result;
  7. use Psr\Http\Message\ResponseInterface;
  8. use GuzzleHttp\Exception\GuzzleException;
  9. use AlibabaCloud\Client\Request\RpcRequest;
  10. use AlibabaCloud\Client\Credentials\StsCredential;
  11. use AlibabaCloud\Client\Exception\ClientException;
  12. use AlibabaCloud\Client\Exception\ServerException;
  13. use AlibabaCloud\Client\Credentials\EcsRamRoleCredential;
  14. /**
  15. * Class EcsRamRoleProvider
  16. *
  17. * @package AlibabaCloud\Client\Credentials\Providers
  18. */
  19. class EcsRamRoleProvider extends Provider
  20. {
  21. /**
  22. * Expiration time slot for temporary security credentials.
  23. *
  24. * @var int
  25. */
  26. protected $expirationSlot = 10;
  27. /**
  28. * @var string
  29. */
  30. private $uri = 'http://100.100.100.200/latest/meta-data/ram/security-credentials/';
  31. /**
  32. * Get credential.
  33. *
  34. * @return StsCredential
  35. * @throws ClientException
  36. * @throws ServerException
  37. */
  38. public function get()
  39. {
  40. $result = $this->getCredentialsInCache();
  41. if ($result === null) {
  42. $result = $this->request();
  43. if (!isset($result['AccessKeyId'], $result['AccessKeySecret'], $result['SecurityToken'])) {
  44. throw new ServerException($result, $this->error, SDK::INVALID_CREDENTIAL);
  45. }
  46. $this->cache($result->toArray());
  47. }
  48. return new StsCredential(
  49. $result['AccessKeyId'],
  50. $result['AccessKeySecret'],
  51. $result['SecurityToken']
  52. );
  53. }
  54. /**
  55. * Get credentials by request.
  56. *
  57. * @return Result
  58. * @throws ClientException
  59. * @throws ServerException
  60. */
  61. public function request()
  62. {
  63. $result = $this->getResponse();
  64. if ($result->getStatusCode() === 404) {
  65. $message = 'The role was not found in the instance';
  66. throw new ClientException($message, SDK::INVALID_CREDENTIAL);
  67. }
  68. if (!$result->isSuccess()) {
  69. $message = 'Error retrieving credentials from result';
  70. throw new ServerException($result, $message, SDK::INVALID_CREDENTIAL);
  71. }
  72. return $result;
  73. }
  74. /**
  75. * Get data from meta.
  76. *
  77. * @return mixed|ResponseInterface
  78. * @throws ClientException
  79. * @throws Exception
  80. */
  81. public function getResponse()
  82. {
  83. /**
  84. * @var EcsRamRoleCredential $credential
  85. */
  86. $credential = $this->client->getCredential();
  87. $url = $this->uri . $credential->getRoleName();
  88. $options = [
  89. 'http_errors' => false,
  90. 'timeout' => 1,
  91. 'connect_timeout' => 1,
  92. 'debug' => $this->client->isDebug(),
  93. ];
  94. try {
  95. return RpcRequest::createClient()->request('GET', $url, $options);
  96. } catch (GuzzleException $exception) {
  97. if (Stringy::create($exception->getMessage())->contains('timed')) {
  98. $message = 'Timeout or instance does not belong to Alibaba Cloud';
  99. } else {
  100. $message = $exception->getMessage();
  101. }
  102. throw new ClientException(
  103. $message,
  104. SDK::SERVER_UNREACHABLE,
  105. $exception
  106. );
  107. }
  108. }
  109. }