Js.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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\Response;
  18. /**
  19. * 前端JS获取控制器
  20. * Class Js
  21. * @package app\wechat\controller\api
  22. */
  23. class Js extends Controller
  24. {
  25. /** @var string */
  26. protected $params;
  27. /** @var string */
  28. protected $openid;
  29. /** @var string */
  30. protected $fansinfo;
  31. /**
  32. * 生成网页授权的JS内容
  33. * @return \think\Response
  34. * @throws \WeChat\Exceptions\InvalidResponseException
  35. * @throws \WeChat\Exceptions\LocalCacheException
  36. * @throws \think\Exception
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. */
  41. public function index(): Response
  42. {
  43. $mode = $this->request->get('mode', 1);
  44. $source = $this->request->server('http_referer') ?: $this->request->url(true);
  45. $userinfo = WechatService::instance()->getWebOauthInfo($source, $mode, false);
  46. if (empty($userinfo['openid'])) {
  47. $content = 'alert("Wechat webOauth failed.")';
  48. } else {
  49. $this->openid = $userinfo['openid'];
  50. $this->params = json_encode(WechatService::instance()->getWebJssdkSign($source));
  51. $this->fansinfo = json_encode($userinfo['fansinfo'] ?? [], JSON_UNESCAPED_UNICODE);
  52. // 生成数据授权令牌
  53. $this->token = uniqid('oauth') . rand(10000, 99999);
  54. $this->app->cache->set($this->openid, $this->token, 3600);
  55. // 生成前端JS变量代码
  56. $content = $this->_buildContent();
  57. }
  58. return Response::create($content)->contentType('application/x-javascript');
  59. }
  60. /**
  61. * 给指定地址创建签名参数
  62. * @throws \WeChat\Exceptions\InvalidResponseException
  63. * @throws \WeChat\Exceptions\LocalCacheException
  64. * @throws \think\Exception
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\DbException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. */
  69. public function sdk()
  70. {
  71. $data = $this->_vali(['url.require' => '签名地址不能为空!']);
  72. $this->success('获取签名参数', WechatService::instance()->getWebJssdkSign($data['url']));
  73. }
  74. /**
  75. * 生成授权内容
  76. * @return string
  77. */
  78. private function _buildContent(): string
  79. {
  80. return <<<EOF
  81. if(typeof wx === 'object'){
  82. wx.token="{$this->token}";
  83. wx.openid="{$this->openid}";
  84. wx.fansinfo={$this->fansinfo};
  85. wx.config({$this->params});
  86. wx.ready(function(){
  87. wx.hideOptionMenu();
  88. wx.hideAllNonBaseMenuItem();
  89. });
  90. }
  91. EOF;
  92. }
  93. }