99 lines
4.0 KiB
PHP
99 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Mer;
|
|
|
|
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 MerClientBuilder
|
|
{
|
|
|
|
/**
|
|
* @var AuthorizationReqRegistry
|
|
*/
|
|
private static $authorizationReqRegistry;
|
|
|
|
public static function __init()
|
|
{
|
|
self::$authorizationReqRegistry = new AuthorityReqRegistryImpl();
|
|
self::$authorizationReqRegistry->register('authStateQuery',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('authorizeRelieve',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('authorizeSign',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('bankAccountOpen',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('merchantDisposeQuery',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('merchantDisposeUnfreeze',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('merchantWechatauthCancel',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('merchantWechatauthQuery',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('notifyRepeat',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('productFeeModify',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('productFeeQuery',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('productIncrementSettleOpen',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('registerContributeMerchant',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('registerContributeMicro',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
self::$authorizationReqRegistry->register('registerQuery',
|
|
AuthorizationReqSupport::getAuthorizationReq('YOP-RSA2048-SHA256'));
|
|
}
|
|
|
|
/**
|
|
* @var ClientParams
|
|
*/
|
|
private $clientParams;
|
|
|
|
/**
|
|
* MerClientBuilder constructor.
|
|
* @param ClientParams $clientParams
|
|
*/
|
|
public function __construct(ClientParams $clientParams)
|
|
{
|
|
$this->clientParams = $clientParams;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
return new MerClient($this->clientParams);
|
|
}
|
|
|
|
/**
|
|
* @param $config AppSdkConfig|array|AppSdkConfigProvider
|
|
* @return MerClientBuilder
|
|
* @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 MerClientBuilder($clientParams);
|
|
}
|
|
|
|
}
|
|
|
|
MerClientBuilder::__init();
|