Credentials.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. namespace Aws\Credentials;
  3. use Aws\Identity\AwsCredentialIdentity;
  4. /**
  5. * Basic implementation of the AWS Credentials interface that allows callers to
  6. * pass in the AWS Access Key and AWS Secret Access Key in the constructor.
  7. */
  8. class Credentials extends AwsCredentialIdentity implements
  9. CredentialsInterface,
  10. \Serializable
  11. {
  12. private $key;
  13. private $secret;
  14. private $token;
  15. private $expires;
  16. /**
  17. * Constructs a new BasicAWSCredentials object, with the specified AWS
  18. * access key and AWS secret key
  19. *
  20. * @param string $key AWS access key ID
  21. * @param string $secret AWS secret access key
  22. * @param string $token Security token to use
  23. * @param int $expires UNIX timestamp for when credentials expire
  24. */
  25. public function __construct($key, $secret, $token = null, $expires = null)
  26. {
  27. $this->key = trim((string) $key);
  28. $this->secret = trim((string) $secret);
  29. $this->token = $token;
  30. $this->expires = $expires;
  31. }
  32. public static function __set_state(array $state)
  33. {
  34. return new self(
  35. $state['key'],
  36. $state['secret'],
  37. $state['token'],
  38. $state['expires']
  39. );
  40. }
  41. public function getAccessKeyId()
  42. {
  43. return $this->key;
  44. }
  45. public function getSecretKey()
  46. {
  47. return $this->secret;
  48. }
  49. public function getSecurityToken()
  50. {
  51. return $this->token;
  52. }
  53. public function getExpiration()
  54. {
  55. return $this->expires;
  56. }
  57. public function isExpired()
  58. {
  59. return $this->expires !== null && time() >= $this->expires;
  60. }
  61. public function toArray()
  62. {
  63. return [
  64. 'key' => $this->key,
  65. 'secret' => $this->secret,
  66. 'token' => $this->token,
  67. 'expires' => $this->expires
  68. ];
  69. }
  70. public function serialize()
  71. {
  72. return json_encode($this->__serialize());
  73. }
  74. public function unserialize($serialized)
  75. {
  76. $data = json_decode($serialized, true);
  77. $this->__unserialize($data);
  78. }
  79. public function __serialize()
  80. {
  81. return $this->toArray();
  82. }
  83. public function __unserialize($data)
  84. {
  85. $this->key = $data['key'];
  86. $this->secret = $data['secret'];
  87. $this->token = $data['token'];
  88. $this->expires = $data['expires'];
  89. }
  90. /**
  91. * Internal-only. Used when IMDS is unreachable
  92. * or returns expires credentials.
  93. *
  94. * @internal
  95. */
  96. public function extendExpiration() {
  97. $extension = mt_rand(5, 10);
  98. $this->expires = time() + $extension * 60;
  99. $message = <<<EOT
  100. Attempting credential expiration extension due to a credential service
  101. availability issue. A refresh of these credentials will be attempted again
  102. after {$extension} minutes.\n
  103. EOT;
  104. trigger_error($message, E_USER_WARNING);
  105. }
  106. }