diff --git a/WeChat/Contracts/BasicWePay.php b/WeChat/Contracts/BasicWePay.php index 5697485..097b0ab 100644 --- a/WeChat/Contracts/BasicWePay.php +++ b/WeChat/Contracts/BasicWePay.php @@ -92,13 +92,13 @@ class BasicWePay /** * 获取微信支付通知 - * @param string $xml + * @param string|array $xml * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ 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']) { return $data; } diff --git a/WePay/Refund.php b/WePay/Refund.php index 14c61b0..4f068cb 100644 --- a/WePay/Refund.php +++ b/WePay/Refund.php @@ -57,14 +57,14 @@ class Refund extends BasicWePay /** * 获取退款通知 - * @param string $xml + * @param string|array $xml * @return array * @throws \WeChat\Exceptions\InvalidDecryptException * @throws \WeChat\Exceptions\InvalidResponseException */ 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') { throw new InvalidResponseException('获取退款通知XML失败!'); } diff --git a/WePayV3/Complaints.php b/WePayV3/Complaints.php new file mode 100644 index 0000000..588370b --- /dev/null +++ b/WePayV3/Complaints.php @@ -0,0 +1,144 @@ +config['mch_id']; + $pathinfo = "/v3/merchant-service/complaints-v2?limit={$limit}&offset={$offset}&begin_date={$begin_date}&end_date={$end_date}&complainted_mchid={$mchId}"; + return $this->doRequest('GET', $pathinfo,'', true); + } + + /** + * 查询投诉详情 + * @param String $complaint_id 被投诉单号 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function complaintDetails(String $complaint_id) + { + $pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}"; + return $this->doRequest('GET', $pathinfo,'', true); + } + + /** + * 查询投诉协商历史 + * @param String $complaint_id 被投诉单号 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function negotiationHistory(String $complaint_id) + { + $pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/negotiation-historys"; + return $this->doRequest('GET', $pathinfo,'', true); + } + + /** + * 创建投诉通知回调地址 + * @param String $url 回调通知地址 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function CreateComplaintsNotify(String $url) + { + return $this->doRequest('POST', '/v3/merchant-service/complaint-notifications', json_encode(['url' => $url],JSON_UNESCAPED_UNICODE), true); + + } + + /** + * 查询投诉通知回调地址 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function queryComplaintsNotify() + { + return $this->doRequest('GET', '/v3/merchant-service/complaint-notifications', '', true); + + } + + /** + * 更新投诉通知回调地址 + * @param String $url 回调通知地址 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function updateComplaintsNotify(String $url){ + return $this->doRequest('PUT', '/v3/merchant-service/complaint-notifications', json_encode(['url' => $url],JSON_UNESCAPED_UNICODE), true); + } + + /** + * 删除投诉通知回调地址 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function deleteComplaintsNotify(){ + return $this->doRequest('DELETE', '/v3/merchant-service/complaint-notifications', '', true); + } + + /** + * 回复投诉 + * @param String $complaint_id 被投诉单号 + * @param String $content 回复内容 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function replyInfo(String $complaint_id, array $content) + { + $content['complainted_mchid'] = $this->config['mch_id']; + $pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/response"; + return $this->doRequest('POST', $pathinfo, json_encode($content,JSON_UNESCAPED_UNICODE), true); + } + + /** + * 反馈处理完成 + * @param string $complaint_id 被投诉单号 + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function completeComplaints(string $complaint_id) + { + $mchId = $this->config['mch_id']; + $pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/complete"; + return $this->doRequest('POST', $pathinfo, json_encode(['complainted_mchid' => $mchId],JSON_UNESCAPED_UNICODE),true); + } + + /** + * 图片请求接口 + * @param $pathinfo + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function downLoadImg(string $pathinfo) + { + return $this->doRequest('GET', $pathinfo, '',true,false); + } + /** + * 图片上传接口 + * @param $imginfo + * @return array|string + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function uploadImg(array $imginfo) + { + return $this->doRequest('POST', '/v3/merchant-service/images/upload', json_encode($imginfo,JSON_UNESCAPED_UNICODE),true); + } + +} \ No newline at end of file diff --git a/WePayV3/Contracts/BasicWePay.php b/WePayV3/Contracts/BasicWePay.php index c271c4c..9e7e0fd 100644 --- a/WePayV3/Contracts/BasicWePay.php +++ b/WePayV3/Contracts/BasicWePay.php @@ -180,7 +180,6 @@ abstract class BasicWePay "Wechatpay-Serial: {$this->config['mp_cert_serial']}" ], ]); - if ($verify) { $headers = []; foreach (explode("\n", $header) as $line) { diff --git a/WePayV3/ProfitSharing.php b/WePayV3/ProfitSharing.php index 81b5cf5..aa2e405 100644 --- a/WePayV3/ProfitSharing.php +++ b/WePayV3/ProfitSharing.php @@ -31,7 +31,7 @@ class ProfitSharing extends BasicWePay * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function create($options) + public function create(array $options) { $options['appid'] = $this->config['appid']; return $this->doRequest('POST', '/v3/profitsharing/orders', json_encode($options, JSON_UNESCAPED_UNICODE), true); @@ -45,7 +45,7 @@ class ProfitSharing extends BasicWePay * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function query($outOrderNo, $transactionId) + public function query(string $outOrderNo, string $transactionId) { $pathinfo = "/v3/profitsharing/orders/{$outOrderNo}?&transaction_id={$transactionId}"; return $this->doRequest('GET', $pathinfo, '', true); @@ -57,7 +57,7 @@ class ProfitSharing extends BasicWePay * @return array * @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); } @@ -68,7 +68,7 @@ class ProfitSharing extends BasicWePay * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function amounts($transactionId) + public function amounts(string $transactionId) { $pathinfo = "/v3/profitsharing/transactions/{$transactionId}/amounts"; return $this->doRequest('GET', $pathinfo, '', true); @@ -80,9 +80,12 @@ class ProfitSharing extends BasicWePay * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function addReceiver($options) + public function addReceiver(array $options) { $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); } @@ -92,9 +95,20 @@ class ProfitSharing extends BasicWePay * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function deleteReceiver($options) + public function deleteReceiver(array $options) { $options['appid'] = $this->config['appid']; 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); + } }