1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
| <?php
namespace app\api\service;
use think\facade\Log; use WeChatPay\Builder; use WeChatPay\Crypto\Rsa; use WeChatPay\Formatter; use WeChatPay\Util\PemUtil;
class WechatPayServiceV3 { protected $instance;
public function __construct() { $this->_init(); }
public function _init() { $merchantId = config('wechat.merchantId', ''); $merchantPrivateKeyFilePath = "file://".config_path().'merchant/apiclient_key.pem'; $merchantPrivateKeyInstance = Rsa::from($merchantPrivateKeyFilePath, Rsa::KEY_TYPE_PRIVATE);
$merchantCertificateSerial = config('wechat.mchSerialNo', '');
$platformCertificateFilePath = "file://".config_path().'merchant/cert.pem'; $platformPublicKeyInstance = Rsa::from($platformCertificateFilePath, Rsa::KEY_TYPE_PUBLIC);
$platformCertificateSerial = PemUtil::parseCertificateSerialNo($platformCertificateFilePath);
$this->instance = Builder::factory([ 'mchid' => $merchantId, 'serial' => $merchantCertificateSerial, 'privateKey' => $merchantPrivateKeyInstance, 'certs' => [ $platformCertificateSerial => $platformPublicKeyInstance, ], ]); }
public function getPaySign($prepayId): array { $merchantPrivateKeyFilePath = "file://".config_path().'merchant/apiclient_key.pem'; $merchantPrivateKeyInstance = Rsa::from($merchantPrivateKeyFilePath); $params = [ 'appId' => config('wechat.appid', ''), 'timeStamp' => (string)Formatter::timestamp(), 'nonceStr' => Formatter::nonce(), 'prepay_id' => $prepayId, ]; $params += ['paySign' => Rsa::sign( Formatter::joinedByLineFeed(...array_values($params)), $merchantPrivateKeyInstance ), 'signType' => 'RSA']; return $params; }
public function pay($options, $notifyURL): array { try { $appid = config('wechat.appid', ''); $mchid = config('wechat.merchantId', ''); try { $params = [ 'json' => [ 'appid' => $appid, 'mchid' => $mchid, 'description' => $options['subject'], 'out_trade_no' => $options['outTradeNo'], 'notify_url' => $notifyURL, 'amount' => [ 'total' => intval($options['totalAmount'] * 100), 'currency' => 'CNY', ], ], ]; $resp = $this->instance->chain('v3/pay/transactions/app')->post($params); $resp = $resp->getBody()->getContents(); } catch (\GuzzleHttp\Exception\RequestException $e) { $r = $e->getResponse(); $resp = $r->getBody()->getContents(); Log::channel('wechat_notify')->error("微信支付创建订单 请求异常", ['StatusCode' => $r->getStatusCode() . ' ' . $r->getReasonPhrase(), 'Body' => $r->getBody(), 'outTradeNo' => $options['outTradeNo']]); } catch (\Exception $e) { Log::channel('wechat_notify')->error("微信支付创建订单 异常", ['description' => $options['subject'], 'outTradeNo' => $options['outTradeNo'], 'money' => $options['totalAmount'], 'TraceAsString' => $e->getTraceAsString(), 'msg' => $e->getMessage()]); throw $e; } $res = json_decode($resp, true); $paySign = $this->getPaySign($res['prepay_id']); return [ 'appid' => $appid, 'partnerid' => $mchid, 'prepayid' => $res['prepay_id'], 'package' => "Sign=WXPay", 'noncestr' => $paySign['nonceStr'], 'timestamp' => $paySign['timeStamp'], 'sign' => $paySign['paySign'], ];
} catch (\Exception $e) { if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) { $r = $e->getResponse(); } Log::channel('wechat_notify')->error("微信支付创建订单 异常". $e->getMessage()."|".$e->getLine()); throw new \Exception($e->getMessage()); } }
public function orderRefund($info): bool { $promise = $this->instance ->chain('v3/refund/domestic/refunds') ->postAsync([ 'json' => [ 'transaction_id' => (string)$info['trade_no'], 'out_refund_no' => (string)$info['order_sn'], 'amount' => [ 'refund' => $info['actual_price'] * 100, 'total' => $info['actual_price'] * 100, 'currency' => 'CNY', ], ], ]) ->then(static function($response) { echo $response->getBody(), PHP_EOL; return $response; }) ->otherwise(static function($e) { echo $e->getMessage(), PHP_EOL; if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) { $r = $e->getResponse(); echo $r->getStatusCode() . ' ' . $r->getReasonPhrase(), PHP_EOL; echo $r->getBody(), PHP_EOL, PHP_EOL, PHP_EOL; } echo $e->getTraceAsString(), PHP_EOL; }); $promise->wait(); Log::error("微信退款结果:".json_encode($promise)); $promise = json_decode($promise, true); if(isset($promise['status']) && $promise['status'] == 'SUCCESS'){ return true; } return false; }
public function analysisCallBackData(array $requestHead, array $requestData): array { Log::channel('wechat_notify')->info("requestHead:". json_encode($requestHead)); $inWechatpaySignature = $requestHead['wechatpay-signature']; $inWechatpayTimestamp = $requestHead['wechatpay-timestamp']; $inWechatpayNonce = $requestHead['wechatpay-nonce']; $inBody = file_get_contents('php://input'); Log::channel('wechat_notify')->info("inBody:". json_encode($inBody)); $apiv3Key = config('wechat.apiv3Key', '');
$wechatPaySerialFilePath = "file://".config_path().'merchant/cert.pem'; $platformPublicKeyInstance = Rsa::from($wechatPaySerialFilePath, Rsa::KEY_TYPE_PUBLIC); $timeOffsetStatus = 300 >= abs(Formatter::timestamp() - (int)$inWechatpayTimestamp); if (!$timeOffsetStatus) { Log::channel('wechat_notify')->info('超过5分钟才回调的信息'. json_encode(['requestHead' => $requestHead, 'requestData' => $requestData])); return []; } $verifiedStatus = Rsa::verify( // 构造验签名串 Formatter::joinedByLineFeed($inWechatpayTimestamp, $inWechatpayNonce, $inBody), $inWechatpaySignature, $platformPublicKeyInstance ); if (!$verifiedStatus) { Log::channel('wechat_notify')->info('验证签名失败'.json_encode(['requestHead' => $requestHead, 'requestData' => $requestData])); return []; } if ($timeOffsetStatus && $verifiedStatus) { $inBodyArray = (array)json_decode($inBody, true); ['resource' => [ 'ciphertext' => $ciphertext, 'nonce' => $nonce, 'associated_data' => $aad ]] = $inBodyArray; $inBodyResource = AesGcm::decrypt($ciphertext, $apiv3Key, $nonce, $aad); Log::channel("wechat_notify")->info("回调解密后的数据:".$inBodyResource); return (array)json_decode($inBodyResource, true);
} else { return []; } } }
public function wechatnotify() { $headers = $this->request->header(); $inBody = file_get_contents("php://input"); $parsedData = (new WechatPayServiceV3())->analysisCallBackData($headers, json_decode($inBody, true));
}
|