Tools.php 8.6 KB

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