ClientTrait.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace AlibabaCloud\Client\Request\Traits;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Clients\Client;
  5. use AlibabaCloud\Client\Support\Arrays;
  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\AccessKeyCredential;
  11. use AlibabaCloud\Client\Credentials\Requests\AssumeRole;
  12. use AlibabaCloud\Client\Credentials\CredentialsInterface;
  13. use AlibabaCloud\Client\Credentials\BearerTokenCredential;
  14. use AlibabaCloud\Client\Credentials\Providers\CredentialsProvider;
  15. use AlibabaCloud\Client\Credentials\Requests\GenerateSessionAccessKey;
  16. /**
  17. * Trait ClientTrait
  18. *
  19. * @package AlibabaCloud\Client\Request\Traits
  20. *
  21. * @mixin Request
  22. */
  23. trait ClientTrait
  24. {
  25. /**
  26. * @var array
  27. */
  28. private static $config = [];
  29. /**
  30. * @param array $config
  31. */
  32. public static function config(array $config)
  33. {
  34. self::$config = $config;
  35. }
  36. /**
  37. * Return credentials directly if it is an AssumeRole or GenerateSessionAccessKey.
  38. *
  39. * @return AccessKeyCredential|BearerTokenCredential|CredentialsInterface|StsCredential
  40. * @throws ClientException
  41. * @throws ServerException
  42. */
  43. public function credential()
  44. {
  45. if ($this instanceof AssumeRole || $this instanceof GenerateSessionAccessKey) {
  46. return $this->httpClient()->getCredential();
  47. }
  48. $timeout = isset($this->options['timeout'])
  49. ? $this->options['timeout']
  50. : Request::TIMEOUT;
  51. $connectTimeout = isset($this->options['connect_timeout'])
  52. ? $this->options['connect_timeout']
  53. : Request::CONNECT_TIMEOUT;
  54. return $this->httpClient()->getSessionCredential($timeout, $connectTimeout);
  55. }
  56. /**
  57. * Get the client based on the request's settings.
  58. *
  59. * @return Client
  60. * @throws ClientException
  61. */
  62. public function httpClient()
  63. {
  64. if (!AlibabaCloud::all()) {
  65. if (CredentialsProvider::hasCustomChain()) {
  66. CredentialsProvider::customProvider($this->client);
  67. } else {
  68. CredentialsProvider::defaultProvider($this->client);
  69. }
  70. }
  71. return AlibabaCloud::get($this->client);
  72. }
  73. /**
  74. * Merged with the client's options, the same name will be overwritten.
  75. *
  76. * @throws ClientException
  77. */
  78. public function mergeOptionsIntoClient()
  79. {
  80. $this->options = Arrays::merge(
  81. [
  82. $this->httpClient()->options,
  83. $this->options
  84. ]
  85. );
  86. }
  87. }