99 lines
2.6 KiB
PHP
99 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace AlibabaCloud\Client\Clients;
|
|
|
|
use AlibabaCloud\Client\AlibabaCloud;
|
|
use AlibabaCloud\Client\Filter\Filter;
|
|
use AlibabaCloud\Client\Request\Request;
|
|
use AlibabaCloud\Client\Credentials\StsCredential;
|
|
use AlibabaCloud\Client\Exception\ClientException;
|
|
use AlibabaCloud\Client\Exception\ServerException;
|
|
use AlibabaCloud\Client\Credentials\CredentialsInterface;
|
|
use AlibabaCloud\Client\Credentials\EcsRamRoleCredential;
|
|
use AlibabaCloud\Client\Credentials\RamRoleArnCredential;
|
|
use AlibabaCloud\Client\Credentials\RsaKeyPairCredential;
|
|
use AlibabaCloud\Client\Credentials\Providers\EcsRamRoleProvider;
|
|
use AlibabaCloud\Client\Credentials\Providers\RamRoleArnProvider;
|
|
use AlibabaCloud\Client\Credentials\Providers\RsaKeyPairProvider;
|
|
use AlibabaCloud\Client\Credentials\Providers\CredentialsProvider;
|
|
|
|
/**
|
|
* Trait ManageTrait.
|
|
*
|
|
* @mixin Client
|
|
*/
|
|
trait ManageTrait
|
|
{
|
|
/**
|
|
* @param int $timeout
|
|
* @param int $connectTimeout
|
|
*
|
|
* @return CredentialsInterface|StsCredential
|
|
*
|
|
* @throws ClientException
|
|
* @throws ServerException
|
|
*/
|
|
public function getSessionCredential($timeout = Request::TIMEOUT, $connectTimeout = Request::CONNECT_TIMEOUT)
|
|
{
|
|
switch (\get_class($this->credential)) {
|
|
case EcsRamRoleCredential::class:
|
|
return (new EcsRamRoleProvider($this))->get();
|
|
case RamRoleArnCredential::class:
|
|
return (new RamRoleArnProvider($this))->get($timeout, $connectTimeout);
|
|
case RsaKeyPairCredential::class:
|
|
return (new RsaKeyPairProvider($this))->get($timeout, $connectTimeout);
|
|
default:
|
|
return $this->credential;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return static
|
|
* @throws ClientException
|
|
* @deprecated
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function asGlobalClient()
|
|
{
|
|
return $this->asDefaultClient();
|
|
}
|
|
|
|
/**
|
|
* Set the current client as the default client.
|
|
*
|
|
* @return static
|
|
* @throws ClientException
|
|
*/
|
|
public function asDefaultClient()
|
|
{
|
|
return $this->name(CredentialsProvider::getDefaultName());
|
|
}
|
|
|
|
/**
|
|
* Naming clients.
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return static
|
|
* @throws ClientException
|
|
*/
|
|
public function name($name)
|
|
{
|
|
Filter::name($name);
|
|
|
|
return AlibabaCloud::set($name, $this);
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isDebug()
|
|
{
|
|
if (isset($this->options['debug'])) {
|
|
return $this->options['debug'] === true && PHP_SAPI === 'cli';
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|