108 lines
4.1 KiB
PHP
108 lines
4.1 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
|
|
|
|
|
use Yeepay\Yop\Sdk\Http\Headers;
|
|
use Yeepay\Yop\Sdk\Internal\DefaultRequest;
|
|
use Yeepay\Yop\Sdk\Internal\Request;
|
|
use Yeepay\Yop\Sdk\Model\Transform\RequestMarshaller;
|
|
use Yeepay\Yop\Sdk\Utils\ObjectSerializer;
|
|
use Yeepay\Yop\Sdk\Utils\UUIDUtils;
|
|
|
|
class MerchantInfoModifyRequestMarshaller implements RequestMarshaller
|
|
{
|
|
/**
|
|
* @var MerchantInfoModifyRequestMarshaller
|
|
*/
|
|
private static $instance;
|
|
|
|
public static function __init()
|
|
{
|
|
self::$instance = new MerchantInfoModifyRequestMarshaller();
|
|
}
|
|
|
|
/**
|
|
* @return MerchantInfoModifyRequestMarshaller
|
|
*/
|
|
public static function getInstance()
|
|
{
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $serviceName = 'Mer';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $httpMethod = 'POST';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $resourcePath = '/rest/v1.0/mer/merchant/info/modify';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $contentType = 'application/x-www-form-urlencoded';
|
|
|
|
|
|
/**
|
|
* @param MerchantInfoModifyRequest $request
|
|
* @return Request
|
|
*/
|
|
public function marshal($request)
|
|
{
|
|
$internalRequest = new DefaultRequest($this->serviceName);
|
|
$internalRequest->setResourcePath($this->resourcePath);
|
|
$internalRequest->setHttpMethod($this->httpMethod);
|
|
if (!empty($request->getRequestConfig()) && !empty($request->getRequestConfig()->getCustomRequestHeaders())) {
|
|
foreach ($request->getRequestConfig()->getCustomRequestHeaders() as $name => $value) {
|
|
$internalRequest->addHeader($name, $value);
|
|
}
|
|
}
|
|
if (!isset($internalRequest->getHeaders()[Headers::YOP_REQUEST_ID])) {
|
|
$internalRequest->addHeader(Headers::YOP_REQUEST_ID, UUIDUtils::uuid());
|
|
}
|
|
if($request->getRequestNo() != null){
|
|
$internalRequest->addParameter('requestNo', ObjectSerializer::sanitizeForSerialization($request->getRequestNo(), 'string'));
|
|
}
|
|
if($request->getMerchantNo() != null){
|
|
$internalRequest->addParameter('merchantNo', ObjectSerializer::sanitizeForSerialization($request->getMerchantNo(), 'string'));
|
|
}
|
|
if($request->getNotifyUrl() != null){
|
|
$internalRequest->addParameter('notifyUrl', ObjectSerializer::sanitizeForSerialization($request->getNotifyUrl(), 'string', 'url'));
|
|
}
|
|
if($request->getMerchantSubjectInfo() != null){
|
|
$internalRequest->addParameter('merchantSubjectInfo', ObjectSerializer::sanitizeForSerialization($request->getMerchantSubjectInfo(), 'string'));
|
|
}
|
|
if($request->getMerchantCorporationInfo() != null){
|
|
$internalRequest->addParameter('merchantCorporationInfo', ObjectSerializer::sanitizeForSerialization($request->getMerchantCorporationInfo(), 'string'));
|
|
}
|
|
if($request->getMerchantContactInfo() != null){
|
|
$internalRequest->addParameter('merchantContactInfo', ObjectSerializer::sanitizeForSerialization($request->getMerchantContactInfo(), 'string'));
|
|
}
|
|
if($request->getIndustryCategoryInfo() != null){
|
|
$internalRequest->addParameter('industryCategoryInfo', ObjectSerializer::sanitizeForSerialization($request->getIndustryCategoryInfo(), 'string'));
|
|
}
|
|
if($request->getBusinessAddressInfo() != null){
|
|
$internalRequest->addParameter('businessAddressInfo', ObjectSerializer::sanitizeForSerialization($request->getBusinessAddressInfo(), 'string'));
|
|
}
|
|
if($request->getAccountInfo() != null){
|
|
$internalRequest->addParameter('accountInfo', ObjectSerializer::sanitizeForSerialization($request->getAccountInfo(), 'string'));
|
|
}
|
|
if($request->getBankToken() != null){
|
|
$internalRequest->addParameter('bankToken', ObjectSerializer::sanitizeForSerialization($request->getBankToken(), 'string'));
|
|
}
|
|
$internalRequest->addHeader(Headers::CONTENT_TYPE, $this->contentType);
|
|
|
|
return $internalRequest;
|
|
}
|
|
}
|
|
MerchantInfoModifyRequestMarshaller::__init();
|