From eca01d957bede96670cd5d786a1794123b4499a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 16 May 2023 10:10:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=80=E6=AC=BE=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Refund.php | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/WePayV3/Refund.php b/WePayV3/Refund.php index e14ecb5..176ffae 100644 --- a/WePayV3/Refund.php +++ b/WePayV3/Refund.php @@ -16,13 +16,10 @@ namespace WePayV3; -use WeChat\Contracts\Tools; -use WeChat\Exceptions\InvalidDecryptException; -use WeChat\Exceptions\InvalidResponseException; use WePayV3\Contracts\BasicWePay; /** - * 电商接口 | 订单退款接口 + * 订单退款接口 * 注意:直连商户退款接口集成在 Order 中 * @deprecated * @class Refund @@ -38,7 +35,8 @@ class Refund extends BasicWePay */ public function create($data) { - return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true); + return Order::instance($this->config)->createRefund($data); + // return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true); } /** @@ -49,8 +47,9 @@ class Refund extends BasicWePay */ public function query($refundNo) { - $pathinfo = "/v3/ecommerce/refunds/out-refund-no/{$refundNo}"; - return $this->doRequest('GET', "{$pathinfo}?sub_mchid={$this->config['mch_id']}", '', true); + return Order::instance($this->config)->queryRefund($refundNo); + // $pathinfo = "/v3/ecommerce/refunds/out-refund-no/{$refundNo}"; + // return $this->doRequest('GET', "{$pathinfo}?sub_mchid={$this->config['mch_id']}", '', true); } /** @@ -63,18 +62,19 @@ class Refund extends BasicWePay */ public function notify($xml = '') { - $data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml); - if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') { - throw new InvalidResponseException('获取退款通知XML失败!'); - } - try { - $key = md5($this->config['mch_v3_key']); - $decrypt = base64_decode($data['req_info']); - $response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA); - $data['result'] = Tools::xml2arr($response); - return $data; - } catch (\Exception $exception) { - throw new InvalidDecryptException($exception->getMessage(), $exception->getCode()); - } + return Order::instance($this->config)->notifyRefund($xml); +// $data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml); +// if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') { +// throw new InvalidResponseException('获取退款通知XML失败!'); +// } +// try { +// $key = md5($this->config['mch_v3_key']); +// $decrypt = base64_decode($data['req_info']); +// $response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA); +// $data['result'] = Tools::xml2arr($response); +// return $data; +// } catch (\Exception $exception) { +// throw new InvalidDecryptException($exception->getMessage(), $exception->getCode()); +// } } } \ No newline at end of file