Tools.php 8.7 KB

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