first commit
This commit is contained in:
@@ -0,0 +1,121 @@
|
||||
<?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 RegisterContributeMerchantRequestMarshaller implements RequestMarshaller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var RegisterContributeMerchantRequestMarshaller
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
public static function __init()
|
||||
{
|
||||
self::$instance = new RegisterContributeMerchantRequestMarshaller();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return RegisterContributeMerchantRequestMarshaller
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $serviceName = 'Mer';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $httpMethod = 'POST';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $resourcePath = '/rest/v2.0/mer/register/contribute/merchant';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $contentType = 'application/x-www-form-urlencoded';
|
||||
|
||||
/**
|
||||
* @param RegisterContributeMerchantRequest $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->getBusinessRole() != null) {
|
||||
$internalRequest->addParameter('businessRole',
|
||||
ObjectSerializer::sanitizeForSerialization($request->getBusinessRole(), 'string'));
|
||||
}
|
||||
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->getSettlementAccountInfo() != null) {
|
||||
$internalRequest->addParameter('settlementAccountInfo',
|
||||
ObjectSerializer::sanitizeForSerialization($request->getSettlementAccountInfo(), 'string'));
|
||||
}
|
||||
if ($request->getNotifyUrl() != null) {
|
||||
$internalRequest->addParameter('notifyUrl',
|
||||
ObjectSerializer::sanitizeForSerialization($request->getNotifyUrl(), 'string'));
|
||||
}
|
||||
if ($request->getProductInfo() != null) {
|
||||
$internalRequest->addParameter('productInfo',
|
||||
ObjectSerializer::sanitizeForSerialization($request->getProductInfo(), 'string'));
|
||||
}
|
||||
if ($request->getProductQualificationInfo() != null) {
|
||||
$internalRequest->addParameter('productQualificationInfo',
|
||||
ObjectSerializer::sanitizeForSerialization($request->getProductQualificationInfo(), 'string'));
|
||||
}
|
||||
$internalRequest->addHeader(Headers::CONTENT_TYPE, $this->contentType);
|
||||
|
||||
return $internalRequest;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
RegisterContributeMerchantRequestMarshaller::__init();
|
||||
Reference in New Issue
Block a user