Merge pull request #80 from voilaf/master

WechatPayV3和Alipay支付回调应支持外部传入参数
This commit is contained in:
邹景立 2022-11-05 11:07:41 +08:00 committed by GitHub
commit a18961eb39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 5 deletions

View File

@ -150,13 +150,16 @@ abstract class BasicAliPay
/** /**
* 获取通知数据 * 获取通知数据
*
* @param boolean $needSignType 是否需要sign_type字段 * @param boolean $needSignType 是否需要sign_type字段
* @param array $parameters
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function notify($needSignType = false) public function notify($needSignType = false, array $parameters = [])
{ {
$data = $_POST; $data = empty($parameters) ? $_POST : $parameters;
if (empty($data) || empty($data['sign'])) { if (empty($data) || empty($data['sign'])) {
throw new InvalidResponseException('Illegal push request.', 0, $data); throw new InvalidResponseException('Illegal push request.', 0, $data);
} }

View File

@ -86,10 +86,15 @@ class Order extends BasicWePay
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidDecryptException * @throws \WeChat\Exceptions\InvalidDecryptException
*/ */
public function notify() public function notify(array $parameters = [])
{ {
$body = file_get_contents('php://input'); if (empty($parameters)) {
$data = json_decode($body, true); $body = file_get_contents('php://input');
$data = json_decode($body, true);
} else {
$data = $parameters;
}
if (isset($data['resource'])) { if (isset($data['resource'])) {
$aes = new DecryptAes($this->config['mch_v3_key']); $aes = new DecryptAes($this->config['mch_v3_key']);
$data['result'] = $aes->decryptToString( $data['result'] = $aes->decryptToString(