Js.php 2.1 KB

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