71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Bill;
|
|
|
|
use Yeepay\Yop\Sdk\Auth\AuthorityReqRegistryImpl;
|
|
use Yeepay\Yop\Sdk\Auth\AuthorizationReqRegistry;
|
|
use Yeepay\Yop\Sdk\Auth\AuthorizationReqSupport;
|
|
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;
|
|
|
|
class BillClientBuilder
|
|
{
|
|
|
|
/**
|
|
* @var AuthorizationReqRegistry
|
|
*/
|
|
private static $authorizationReqRegistry;
|
|
|
|
public static function __init()
|
|
{
|
|
self::$authorizationReqRegistry = new AuthorityReqRegistryImpl();
|
|
self::$authorizationReqRegistry->register('download',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
}
|
|
|
|
/**
|
|
* @var ClientParams
|
|
*/
|
|
private $clientParams;
|
|
|
|
/**
|
|
* BillClientBuilder constructor.
|
|
* @param ClientParams $clientParams
|
|
*/
|
|
public function __construct(ClientParams $clientParams)
|
|
{
|
|
$this->clientParams = $clientParams;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
return new BillClient($this->clientParams);
|
|
}
|
|
|
|
/**
|
|
* @param $config AppSdkConfig|array|AppSdkConfigProvider
|
|
* @return BillClientBuilder
|
|
* @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 BillClientBuilder($clientParams);
|
|
}
|
|
|
|
}
|
|
|
|
BillClientBuilder::__init();
|