Credentials.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. namespace AlibabaCloud\Credentials;
  3. use AlibabaCloud\Credentials\Providers\ChainProvider;
  4. use ReflectionException;
  5. use RuntimeException;
  6. /**
  7. * Class Credentials
  8. *
  9. * @package AlibabaCloud\Credentials
  10. */
  11. class Credentials
  12. {
  13. use MockTrait;
  14. /**
  15. * @var array|CredentialsInterface[] containers of credentials
  16. */
  17. protected static $credentials = [];
  18. /**
  19. * Get the credential instance by name.
  20. *
  21. * @param string $name
  22. *
  23. * @return Credential
  24. * @throws ReflectionException
  25. */
  26. public static function get($name = null)
  27. {
  28. if ($name !== null) {
  29. Filter::credentialName($name);
  30. } else {
  31. $name = ChainProvider::getDefaultName();
  32. }
  33. self::load();
  34. if (self::has($name)) {
  35. return new Credential(self::$credentials[\strtolower($name)]);
  36. }
  37. throw new RuntimeException("Credential '$name' not found");
  38. }
  39. private static function load()
  40. {
  41. if (self::$credentials) {
  42. return;
  43. }
  44. if (ChainProvider::hasCustomChain()) {
  45. ChainProvider::customProvider(ChainProvider::getDefaultName());
  46. } else {
  47. ChainProvider::defaultProvider(ChainProvider::getDefaultName());
  48. }
  49. }
  50. /**
  51. * Determine whether there is a credential.
  52. *
  53. * @param string $name
  54. *
  55. * @return bool
  56. */
  57. public static function has($name)
  58. {
  59. Filter::credentialName($name);
  60. return isset(self::$credentials[\strtolower($name)]);
  61. }
  62. public static function flush()
  63. {
  64. self::$credentials = [];
  65. }
  66. /**
  67. * Get all credentials.
  68. *
  69. * @return array
  70. */
  71. public static function all()
  72. {
  73. self::load();
  74. return self::$credentials;
  75. }
  76. /**
  77. * @param string $name
  78. * @param array $credential
  79. */
  80. public static function set($name, array $credential)
  81. {
  82. Filter::credentialName($name);
  83. self::$credentials[\strtolower($name)] = \array_change_key_case($credential);
  84. }
  85. }