更新分账退回

This commit is contained in:
承诺 2024-10-14 10:13:33 +08:00
parent 8c0a87252c
commit 9cc6dd350b
4 changed files with 24 additions and 11 deletions

View File

@ -92,13 +92,13 @@ class BasicWePay
/** /**
* 获取微信支付通知 * 获取微信支付通知
* @param string $xml * @param string|array $xml
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function getNotify($xml = '') public function getNotify($xml = '')
{ {
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml); $data = is_array($xml) ? $xml : Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
if (isset($data['sign']) && $this->getPaySign($data) === $data['sign']) { if (isset($data['sign']) && $this->getPaySign($data) === $data['sign']) {
return $data; return $data;
} }

View File

@ -57,14 +57,14 @@ class Refund extends BasicWePay
/** /**
* 获取退款通知 * 获取退款通知
* @param string $xml * @param string|array $xml
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidDecryptException * @throws \WeChat\Exceptions\InvalidDecryptException
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function getNotify($xml = '') public function getNotify($xml = '')
{ {
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml); $data = is_array($xml) ? $xml : Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') { if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
throw new InvalidResponseException('获取退款通知XML失败'); throw new InvalidResponseException('获取退款通知XML失败');
} }

View File

@ -180,7 +180,6 @@ abstract class BasicWePay
"Wechatpay-Serial: {$this->config['mp_cert_serial']}" "Wechatpay-Serial: {$this->config['mp_cert_serial']}"
], ],
]); ]);
if ($verify) { if ($verify) {
$headers = []; $headers = [];
foreach (explode("\n", $header) as $line) { foreach (explode("\n", $header) as $line) {

View File

@ -31,7 +31,7 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function create($options) public function create(array $options)
{ {
$options['appid'] = $this->config['appid']; $options['appid'] = $this->config['appid'];
return $this->doRequest('POST', '/v3/profitsharing/orders', json_encode($options, JSON_UNESCAPED_UNICODE), true); return $this->doRequest('POST', '/v3/profitsharing/orders', json_encode($options, JSON_UNESCAPED_UNICODE), true);
@ -45,7 +45,7 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function query($outOrderNo, $transactionId) public function query(string $outOrderNo, string $transactionId)
{ {
$pathinfo = "/v3/profitsharing/orders/{$outOrderNo}?&transaction_id={$transactionId}"; $pathinfo = "/v3/profitsharing/orders/{$outOrderNo}?&transaction_id={$transactionId}";
return $this->doRequest('GET', $pathinfo, '', true); return $this->doRequest('GET', $pathinfo, '', true);
@ -57,7 +57,7 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function unfreeze($options) public function unfreeze(array $options)
{ {
return $this->doRequest('POST', '/v3/profitsharing/orders/unfreeze', json_encode($options, JSON_UNESCAPED_UNICODE), true); return $this->doRequest('POST', '/v3/profitsharing/orders/unfreeze', json_encode($options, JSON_UNESCAPED_UNICODE), true);
} }
@ -68,7 +68,7 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function amounts($transactionId) public function amounts(string $transactionId)
{ {
$pathinfo = "/v3/profitsharing/transactions/{$transactionId}/amounts"; $pathinfo = "/v3/profitsharing/transactions/{$transactionId}/amounts";
return $this->doRequest('GET', $pathinfo, '', true); return $this->doRequest('GET', $pathinfo, '', true);
@ -80,9 +80,12 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function addReceiver($options) public function addReceiver(array $options)
{ {
$options['appid'] = $this->config['appid']; $options['appid'] = $this->config['appid'];
if (isset($options['name'])) {
$options['name'] = $this->rsaEncode($options['name']);
}
return $this->doRequest('POST', "/v3/profitsharing/receivers/add", json_encode($options, JSON_UNESCAPED_UNICODE), true); return $this->doRequest('POST', "/v3/profitsharing/receivers/add", json_encode($options, JSON_UNESCAPED_UNICODE), true);
} }
@ -92,9 +95,20 @@ class ProfitSharing extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function deleteReceiver($options) public function deleteReceiver(array $options)
{ {
$options['appid'] = $this->config['appid']; $options['appid'] = $this->config['appid'];
return $this->doRequest('POST', "/v3/profitsharing/receivers/delete", json_encode($options, JSON_UNESCAPED_UNICODE), true); return $this->doRequest('POST', "/v3/profitsharing/receivers/delete", json_encode($options, JSON_UNESCAPED_UNICODE), true);
} }
/**
* 请求分账回退
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
*/
public function backspace(array $options)
{
$options['appid'] = $this->config['appid'];
return $this->doRequest('POST', "/v3/profitsharing/return-orders", json_encode($options, JSON_UNESCAPED_UNICODE), true);
}
} }