From 1f73aad17d5e376bfabfda44e6631a00bcf5765f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 5 May 2023 21:56:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E6=AC=BE=E9=80=9A=E7=9F=A5=E8=BF=81?= =?UTF-8?q?=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Order.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 9aa5cba..489f386 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -18,6 +18,7 @@ namespace WePayV3; use WeChat\Contracts\Tools; use WeChat\Exceptions\InvalidArgumentException; +use WeChat\Exceptions\InvalidDecryptException; use WeChat\Exceptions\InvalidResponseException; use WePayV3\Contracts\BasicWePay; use WePayV3\Contracts\DecryptAes; @@ -152,6 +153,30 @@ class Order extends BasicWePay return $this->doRequest('GET', $path, '', true); } + /** + * 获取退款通知 + * @param string $xml + * @return array + * @return array + * @throws \WeChat\Exceptions\InvalidDecryptException + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function notifyRefund($xml = '') + { + $data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml); + if (empty($data['return_code']) || $data['return_code'] !== 'SUCCESS') { + throw new InvalidResponseException('获取退款通知失败!'); + } + try { + $decrypt = base64_decode($data['req_info']); + $response = openssl_decrypt($decrypt, 'aes-256-ecb', md5($this->config['mch_v3_key']), OPENSSL_RAW_DATA); + $data['result'] = Tools::xml2arr($response); + return $data; + } catch (\Exception $exception) { + throw new InvalidDecryptException($exception->getMessage(), $exception->getCode()); + } + } + /** * 申请交易账单 * @param array|string $params