Js.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. use think\facade\Response;
  18. /**
  19. * 前端JS获取控制器
  20. * Class Js
  21. * @package app\wechat\controller\api
  22. */
  23. class Js extends Controller
  24. {
  25. /**
  26. * 返回生成的JS内容
  27. * @return \think\Response
  28. * @throws \WeChat\Exceptions\InvalidResponseException
  29. * @throws \WeChat\Exceptions\LocalCacheException
  30. * @throws \think\Exception
  31. * @throws \think\exception\PDOException
  32. */
  33. public function index()
  34. {
  35. $url = $this->request->server('http_referer', $this->request->url(true), null);
  36. $wechat = WechatService::getWebOauthInfo($url, $this->request->get('mode', 1), false);
  37. $openid = isset($wechat['openid']) ? $wechat['openid'] : '';
  38. $unionid = empty($wechat['fansinfo']['unionid']) ? '' : $wechat['fansinfo']['unionid'];
  39. $configJson = json_encode(WechatService::getWebJssdkSign($url), JSON_UNESCAPED_UNICODE);
  40. $fansinfoJson = json_encode(isset($wechat['fansinfo']) ? $wechat['fansinfo'] : [], JSON_UNESCAPED_UNICODE);
  41. $html = <<<EOF
  42. if(typeof wx === 'object'){
  43. wx.openid="{$openid}";
  44. wx.unionid="{$unionid}";
  45. wx.config({$configJson});
  46. wx.fansinfo={$fansinfoJson};
  47. wx.ready(function(){
  48. wx.hideOptionMenu();
  49. wx.hideAllNonBaseMenuItem();
  50. });
  51. }
  52. EOF;
  53. return Response::create($html)->contentType('application/x-javascript');
  54. }
  55. }