mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
支付退款通知异常处理
This commit is contained in:
parent
d5dfc08aee
commit
0c01bd0761
@ -16,6 +16,7 @@ namespace WePay;
|
|||||||
|
|
||||||
use WeChat\Contracts\BasicWePay;
|
use WeChat\Contracts\BasicWePay;
|
||||||
use WeChat\Contracts\Tools;
|
use WeChat\Contracts\Tools;
|
||||||
|
use WeChat\Exceptions\InvalidDecryptException;
|
||||||
use WeChat\Exceptions\InvalidResponseException;
|
use WeChat\Exceptions\InvalidResponseException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -55,6 +56,7 @@ class Refund extends BasicWePay
|
|||||||
/**
|
/**
|
||||||
* 获取退款通知
|
* 获取退款通知
|
||||||
* @return array
|
* @return array
|
||||||
|
* @throws InvalidDecryptException
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
*/
|
*/
|
||||||
public function getNotify()
|
public function getNotify()
|
||||||
@ -63,11 +65,14 @@ class Refund extends BasicWePay
|
|||||||
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失败!');
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
$key = md5($this->config->get('mch_key'));
|
$key = md5($this->config->get('mch_key'));
|
||||||
$decrypt = base64_decode($data['req_info']);
|
$decrypt = base64_decode($data['req_info']);
|
||||||
$response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
$response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
||||||
$data['result'] = Tools::xml2arr($response);
|
$data['result'] = Tools::xml2arr($response);
|
||||||
return $data;
|
return $data;
|
||||||
|
} catch (\Exception $exception) {
|
||||||
|
throw new InvalidDecryptException($exception->getMessage(), $exception->getCode());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user