Test.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\wechat\controller\api;
  15. use app\wechat\service\WechatService;
  16. use think\admin\Controller;
  17. use think\admin\extend\CodeExtend;
  18. use think\Response;
  19. use WeChat\Contracts\Tools;
  20. /**
  21. * 微信测试工具
  22. * Class Test
  23. * @package app\wechat\controller\api
  24. */
  25. class Test extends Controller
  26. {
  27. /**
  28. * 微信JSAPI支付二维码
  29. * @return Response
  30. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  31. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  32. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  33. */
  34. public function jsapiQrc(): Response
  35. {
  36. $this->url = sysuri('wechat/api.test/jsapi', [], false, true);
  37. return $this->_buildQrcResponse($this->url);
  38. }
  39. /**
  40. * 显示网页授权二维码
  41. * @return Response
  42. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  43. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  44. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  45. */
  46. public function oauthQrc(): Response
  47. {
  48. $this->url = sysuri('wechat/api.test/oauth', [], false, true);
  49. return $this->_buildQrcResponse($this->url);
  50. }
  51. /**
  52. * 显示网页授权二维码
  53. * @return Response
  54. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  55. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  56. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  57. */
  58. public function jssdkQrc(): Response
  59. {
  60. $this->url = sysuri('wechat/api.test/jssdk', [], false, true);
  61. return $this->_buildQrcResponse($this->url);
  62. }
  63. /**
  64. * 微信扫码支付模式一二维码显示
  65. * @return Response
  66. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  67. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  68. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  69. */
  70. public function scanOneQrc(): Response
  71. {
  72. $pay = WechatService::WePayOrder();
  73. return $this->_buildQrcResponse($pay->qrcParams('8888888'));
  74. }
  75. /**
  76. * 扫码支付模式二测试二维码
  77. * @return Response
  78. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  79. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  80. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  81. * @throws \WeChat\Exceptions\InvalidResponseException
  82. * @throws \WeChat\Exceptions\LocalCacheException
  83. */
  84. public function scanTwoQrc(): Response
  85. {
  86. $result = WechatService::WePayOrder()->create([
  87. 'body' => '测试商品',
  88. 'total_fee' => '1',
  89. 'trade_type' => 'NATIVE',
  90. 'notify_url' => sysuri('wechat/api.test/notify', [], false, true),
  91. 'out_trade_no' => CodeExtend::uniqidNumber(18),
  92. 'spbill_create_ip' => $this->request->ip(),
  93. ]);
  94. return $this->_buildQrcResponse($result['code_url']);
  95. }
  96. /**
  97. * 网页授权测试
  98. * @throws \WeChat\Exceptions\InvalidResponseException
  99. * @throws \WeChat\Exceptions\LocalCacheException
  100. * @throws \think\Exception
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\DbException
  103. * @throws \think\db\exception\ModelNotFoundException
  104. */
  105. public function oauth()
  106. {
  107. $this->url = $this->request->url(true);
  108. $this->fans = WechatService::instance()->getWebOauthInfo($this->url, 1);
  109. $this->fetch();
  110. }
  111. /**
  112. * JSSDK测试
  113. * @throws \WeChat\Exceptions\InvalidResponseException
  114. * @throws \WeChat\Exceptions\LocalCacheException
  115. * @throws \think\Exception
  116. * @throws \think\db\exception\DataNotFoundException
  117. * @throws \think\db\exception\DbException
  118. * @throws \think\db\exception\ModelNotFoundException
  119. */
  120. public function jssdk()
  121. {
  122. $this->options = WechatService::instance()->getWebJssdkSign();
  123. $this->fetch();
  124. }
  125. /**
  126. * 微信扫码支付模式一通知处理
  127. * -- 注意,需要在微信商户配置支付通知地址
  128. * @return string
  129. * @throws \WeChat\Exceptions\InvalidResponseException
  130. * @throws \WeChat\Exceptions\LocalCacheException
  131. */
  132. public function scanOneNotify(): string
  133. {
  134. $pay = WechatService::WePayOrder();
  135. $notify = $pay->getNotify();
  136. p('======= 来自扫码支付1的数据 ======');
  137. p($notify);
  138. // 微信统一下单处理
  139. $options = [
  140. 'body' => "测试商品,产品ID:{$notify['product_id']}",
  141. 'total_fee' => '1',
  142. 'trade_type' => 'NATIVE',
  143. 'notify_url' => sysuri('wechat/api.test/notify', [], false, true),
  144. 'out_trade_no' => CodeExtend::uniqidDate(18),
  145. 'spbill_create_ip' => $this->request->ip(),
  146. ];
  147. p('======= 来自扫码支付1统一下单结果 ======');
  148. p($order = $pay->create($options));
  149. // 回复XML文本
  150. $result = [
  151. 'return_code' => 'SUCCESS',
  152. 'return_msg' => '处理成功',
  153. 'appid' => $notify['appid'],
  154. 'mch_id' => $notify['mch_id'],
  155. 'nonce_str' => Tools::createNoncestr(),
  156. 'prepay_id' => $order['prepay_id'],
  157. 'result_code' => 'SUCCESS',
  158. ];
  159. $result['sign'] = $pay->getPaySign($result);
  160. p('======= 来自扫码支付1返回的结果 ======');
  161. p($result);
  162. return Tools::arr2xml($result);
  163. }
  164. /**
  165. * 微信JSAPI支付测试
  166. * @throws \WeChat\Exceptions\InvalidResponseException
  167. * @throws \WeChat\Exceptions\LocalCacheException
  168. * @throws \think\Exception
  169. * @throws \think\db\exception\DataNotFoundException
  170. * @throws \think\db\exception\DbException
  171. * @throws \think\db\exception\ModelNotFoundException
  172. */
  173. public function jsapi()
  174. {
  175. $this->url = $this->request->url(true);
  176. $this->pay = WechatService::WePayOrder();
  177. $user = WechatService::instance()->getWebOauthInfo($this->url, 0);
  178. if (empty($user['openid'])) return '<h3>网页授权获取OPENID失败!</h3>';
  179. // 生成预支付码
  180. $result = $this->pay->create([
  181. 'body' => '测试商品',
  182. 'openid' => $user['openid'],
  183. 'total_fee' => '1',
  184. 'trade_type' => 'JSAPI',
  185. 'notify_url' => sysuri('wechat/api.test/notify', [], false, true),
  186. 'out_trade_no' => CodeExtend::uniqidDate(18),
  187. 'spbill_create_ip' => $this->request->ip(),
  188. ]);
  189. // 创建JSAPI参数签名
  190. $options = $this->pay->jsapiParams($result['prepay_id']);
  191. // JSSDK 签名配置
  192. $optionJSON = json_encode($options, JSON_UNESCAPED_UNICODE);
  193. $configJSON = json_encode(WechatService::instance()->getWebJssdkSign(), JSON_UNESCAPED_UNICODE);
  194. echo '<pre>';
  195. echo "当前用户OPENID: {$user['openid']}";
  196. echo "\n--- 创建预支付码 ---\n";
  197. var_export($result);
  198. echo "\n\n--- JSAPI 及 H5 参数 ---\n";
  199. var_export($options);
  200. echo '</pre>';
  201. echo "<button id='paytest' type='button'>JSAPI支付测试</button>";
  202. echo "
  203. <script src='//res.wx.qq.com/open/js/jweixin-1.2.0.js'></script>
  204. <script>
  205. wx.config($configJSON);
  206. document.getElementById('paytest').onclick = function(){
  207. var options = $optionJSON;
  208. options.success = function(){
  209. alert('支付成功');
  210. }
  211. wx.chooseWXPay(options);
  212. }
  213. </script>";
  214. }
  215. /**
  216. * 支付通知接收处理
  217. * @return string
  218. * @throws \WeChat\Exceptions\InvalidResponseException
  219. */
  220. public function notify(): string
  221. {
  222. $wechat = WechatService::WePayOrder();
  223. p($wechat->getNotify());
  224. return 'SUCCESS';
  225. }
  226. /**
  227. * 创建二维码响应对应
  228. * @param string $url 二维码内容
  229. * @return Response
  230. * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
  231. * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
  232. * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
  233. */
  234. private function _buildQrcResponse(string $url): Response
  235. {
  236. $qrCode = new \Endroid\QrCode\QrCode();
  237. $qrCode->setText($url)->setSize(300)->setPadding(20)->setImageType('png');
  238. return response($qrCode->get(), 200, ['Content-Type' => 'image/png']);
  239. }
  240. }