ManageTrait.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace AlibabaCloud\Client\Clients;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Filter\Filter;
  5. use AlibabaCloud\Client\Request\Request;
  6. use AlibabaCloud\Client\Credentials\StsCredential;
  7. use AlibabaCloud\Client\Exception\ClientException;
  8. use AlibabaCloud\Client\Exception\ServerException;
  9. use AlibabaCloud\Client\Credentials\CredentialsInterface;
  10. use AlibabaCloud\Client\Credentials\EcsRamRoleCredential;
  11. use AlibabaCloud\Client\Credentials\RamRoleArnCredential;
  12. use AlibabaCloud\Client\Credentials\RsaKeyPairCredential;
  13. use AlibabaCloud\Client\Credentials\Providers\EcsRamRoleProvider;
  14. use AlibabaCloud\Client\Credentials\Providers\RamRoleArnProvider;
  15. use AlibabaCloud\Client\Credentials\Providers\RsaKeyPairProvider;
  16. use AlibabaCloud\Client\Credentials\Providers\CredentialsProvider;
  17. /**
  18. * Trait ManageTrait.
  19. *
  20. * @mixin Client
  21. */
  22. trait ManageTrait
  23. {
  24. /**
  25. * @param int $timeout
  26. * @param int $connectTimeout
  27. *
  28. * @return CredentialsInterface|StsCredential
  29. *
  30. * @throws ClientException
  31. * @throws ServerException
  32. */
  33. public function getSessionCredential($timeout = Request::TIMEOUT, $connectTimeout = Request::CONNECT_TIMEOUT)
  34. {
  35. switch (\get_class($this->credential)) {
  36. case EcsRamRoleCredential::class:
  37. return (new EcsRamRoleProvider($this))->get();
  38. case RamRoleArnCredential::class:
  39. return (new RamRoleArnProvider($this))->get($timeout, $connectTimeout);
  40. case RsaKeyPairCredential::class:
  41. return (new RsaKeyPairProvider($this))->get($timeout, $connectTimeout);
  42. default:
  43. return $this->credential;
  44. }
  45. }
  46. /**
  47. * @return static
  48. * @throws ClientException
  49. * @deprecated
  50. * @codeCoverageIgnore
  51. */
  52. public function asGlobalClient()
  53. {
  54. return $this->asDefaultClient();
  55. }
  56. /**
  57. * Set the current client as the default client.
  58. *
  59. * @return static
  60. * @throws ClientException
  61. */
  62. public function asDefaultClient()
  63. {
  64. return $this->name(CredentialsProvider::getDefaultName());
  65. }
  66. /**
  67. * Naming clients.
  68. *
  69. * @param string $name
  70. *
  71. * @return static
  72. * @throws ClientException
  73. */
  74. public function name($name)
  75. {
  76. Filter::name($name);
  77. return AlibabaCloud::set($name, $this);
  78. }
  79. /**
  80. * @return bool
  81. */
  82. public function isDebug()
  83. {
  84. if (isset($this->options['debug'])) {
  85. return $this->options['debug'] === true && PHP_SAPI === 'cli';
  86. }
  87. return false;
  88. }
  89. }