Files
YeePay/lib/Service/Common/YopClientBuilder.php
2024-04-01 09:54:43 +08:00

65 lines
1.6 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Common;
use Yeepay\Yop\Sdk\Client\ClientParams;
use Yeepay\Yop\Sdk\Client\Support\ClientParamsSupport;
use Yeepay\Yop\Sdk\Config\AppSdkConfig;
use Yeepay\Yop\Sdk\Config\AppSdkConfigProvider;
use Yeepay\Yop\Sdk\Config\DefaultAppSdkConfigProvider;
use Yeepay\Yop\Sdk\Exception\YopClientException;
use Yeepay\Yop\Sdk\Service\Common\Authority\MockAuthorityReqRegistry;
class YopClientBuilder
{
private static $authorizationReqRegistry;
public static function __init()
{
self::$authorizationReqRegistry = new MockAuthorityReqRegistry();
}
/**
* @var ClientParams
*/
private $clientParams;
/**
* YopClientBuilder constructor.
* @param ClientParams $clientParams
*/
public function __construct(ClientParams $clientParams)
{
$this->clientParams = $clientParams;
}
public function build()
{
return new YopClient($this->clientParams);
}
/**
* @param $config AppSdkConfig|array|AppSdkConfigProvider
* @return YopClientBuilder
* @throws YopClientException
*/
public static function builder($config)
{
$appSdkConfigProvider = null;
if ($config instanceof AppSdkConfigProvider) {
$appSdkConfigProvider = $config;
} else {
$appSdkConfigProvider = new DefaultAppSdkConfigProvider($config);
}
$clientParams = ClientParamsSupport::generateClientParams($appSdkConfigProvider);
$clientParams->setAuthorizationReqRegistry(self::$authorizationReqRegistry);
return new YopClientBuilder($clientParams);
}
}
YopClientBuilder::__init();