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
| <?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; } }
|