diff --git a/WePayV3/Contracts/BasicWePay.php b/WePayV3/Contracts/BasicWePay.php index 53a3eb9..66b9487 100644 --- a/WePayV3/Contracts/BasicWePay.php +++ b/WePayV3/Contracts/BasicWePay.php @@ -107,13 +107,19 @@ abstract class BasicWePay public function doRequest($method, $pathinfo, $jsondata = '', $verify = false) { list($time, $nonce) = [time(), uniqid() . rand(1000, 9999)]; - $jsondata = join("\n", [$method, $pathinfo, $time, $nonce, $jsondata, '']); + $signstr = join("\n", [ + $method, $pathinfo, $time, $nonce, $jsondata, '', + ]); // 生成数据签名TOKEN $token = sprintf('mchid="%s",nonce_str="%s",timestamp="%d",serial_no="%s",signature="%s"', - $this->config['mch_id'], $nonce, $time, $this->config['cert_serial'], $this->signBuild($jsondata) + $this->config['mch_id'], $nonce, $time, $this->config['cert_serial'], $this->signBuild($signstr) ); - $header = ["Accept: application/json", 'User-Agent: https://thinkadmin.top', "Authorization: WECHATPAY2-SHA256-RSA2048 {$token}"]; - list($header, $result) = $this->_doRequestCurl($method, $this->base . $pathinfo, ['data' => $jsondata, 'header' => $header]); + list($header, $content) = $this->_doRequestCurl($method, $this->base . $pathinfo, [ + 'data' => $jsondata, 'header' => [ + "Accept: application/json", "Content-Type: application/json", + 'User-Agent: https://thinkadmin.top', "Authorization: WECHATPAY2-SHA256-RSA2048 {$token}", + ], + ]); if ($verify) { $headers = []; foreach (explode("\n", $header) as $line) { @@ -123,12 +129,12 @@ abstract class BasicWePay $headers[$keys] = trim($value); } } - $content = join("\n", [$headers['timestamp'], $headers['nonce'], $result, '']); - if (!$this->signVerify($content, $headers['signature'], $headers['serial'])) { + $string = join("\n", [$headers['timestamp'], $headers['nonce'], $content, '']); + if (!$this->signVerify($string, $headers['signature'], $headers['serial'])) { throw new InvalidResponseException("验证响应签名失败"); } } - return json_decode($result, true); + return json_decode($content, true); } /** @@ -141,15 +147,15 @@ abstract class BasicWePay private function _doRequestCurl($method, $location, $options = []) { $curl = curl_init(); - // CURL头信息设置 - if (!empty($options['header'])) { - curl_setopt($curl, CURLOPT_HTTPHEADER, $options['header']); - } // POST数据设置 if (strtolower($method) === 'post') { curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $options['data']); } + // CURL头信息设置 + if (!empty($options['header'])) { + curl_setopt($curl, CURLOPT_HTTPHEADER, $options['header']); + } curl_setopt($curl, CURLOPT_URL, $location); curl_setopt($curl, CURLOPT_HEADER, true); curl_setopt($curl, CURLOPT_TIMEOUT, 60); @@ -186,7 +192,10 @@ abstract class BasicWePay protected function signVerify($data, $sign, $serial = '') { $cert = $this->tmpFile($serial); - if (empty($cert)) Cert::instance($this->config)->download(); + if (empty($cert)) { + Cert::instance($this->config)->download(); + $cert = $this->tmpFile($serial); + } return openssl_verify($data, base64_decode($sign), openssl_x509_read($cert), 'sha256WithRSAEncryption'); } @@ -200,13 +209,12 @@ abstract class BasicWePay protected function tmpFile($name, $content = null) { if (is_null($content)) { - return Tools::getCache($name) ?: ''; + return base64_decode(Tools::getCache($name) ?: ''); } else { - return Tools::setCache($name, $content, 7200); + return Tools::setCache($name, base64_encode($content), 7200); } } - /** * 支付通知 * @return array diff --git a/_test/pay-v3-config-cert.php b/_test/pay-v3-config-cert.php new file mode 100644 index 0000000..47883d1 --- /dev/null +++ b/_test/pay-v3-config-cert.php @@ -0,0 +1,16 @@ +download(); + +} catch (\Exception $exception) { + // 出错啦,处理下吧 + echo $exception->getMessage() . PHP_EOL; +} \ No newline at end of file diff --git a/_test/pay-v3-config.php b/_test/pay-v3-config.php new file mode 100644 index 0000000..4cef5f3 --- /dev/null +++ b/_test/pay-v3-config.php @@ -0,0 +1,16 @@ + '您的商户编号', + 'mch_v3_key' => '您的V3接口密码', + 'cert_public' => << <<create('jsapi', json_encode([ + 'appid' => 'wx60a43dd8161666d4', + 'mchid' => $config['mch_id'], + 'description' => '商品描述', + 'out_trade_no' => date("YmdHis"), + 'notify_url' => 'https://thinkadmin.top', + 'payer' => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'], + 'amount' => ['total' => 1, 'currency' => 'CNY'], + ], JSON_UNESCAPED_UNICODE)); + + echo '
';
+    echo "\n--- 创建预支付码 ---\n";
+    var_export($result);
+
+} catch (\Exception $exception) {
+    // 出错啦,处理下吧
+    echo $exception->getMessage() . PHP_EOL;
+}
\ No newline at end of file