Wechat.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\UserService;
  4. use app\wechat\service\WechatService;
  5. use think\admin\Controller;
  6. use think\Response;
  7. /**
  8. * 微信服务号入口
  9. * Class Wechat
  10. * @package app\data\controller\api
  11. * @example 域名请修改为自己的地址,放到网页代码合适位置
  12. * <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  13. * <script src="https://your.domain.com/data/api.wechat/oauth?mode=1"></script>
  14. *
  15. * 授权模式支持两种模块,参数 mode=0 时为静默授权,mode=1 时为完整授权
  16. * 注意:回跳地址默认从 Header 中的 http_referer 获取,也可以传 source 参数
  17. */
  18. class Wechat extends Controller
  19. {
  20. /**
  21. * 接口认证类型
  22. * @var string
  23. */
  24. private $type = UserService::APITYPE_WECHAT;
  25. /**
  26. * 唯一绑定字段
  27. * @var string
  28. */
  29. private $field;
  30. /**
  31. * 控制器初始化
  32. * @return $this
  33. */
  34. protected function initialize(): Wechat
  35. {
  36. if (empty(UserService::TYPES[$this->type]['auth'])) {
  37. $this->error("接口类型[{$this->type}]没有定义规则");
  38. } else {
  39. $this->field = UserService::TYPES[$this->type]['auth'];
  40. }
  41. return $this;
  42. }
  43. /**
  44. * 获取 JSSDK 签名
  45. * @throws \WeChat\Exceptions\InvalidResponseException
  46. * @throws \WeChat\Exceptions\LocalCacheException
  47. * @throws \think\admin\Exception
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. */
  52. public function jssdk()
  53. {
  54. $url = input('source') ?: $this->request->server('http_referer');
  55. $this->success('获取签名参数', WechatService::instance()->getWebJssdkSign($url));
  56. }
  57. /**
  58. * 加载网页授权数据
  59. * @return \think\Response
  60. * @throws \think\db\exception\DbException
  61. */
  62. public function oauth(): Response
  63. {
  64. [$script, $wechat] = [[], WechatService::instance()];
  65. $source = input('source') ?: $this->request->server('http_referer');
  66. $result = $wechat->getWebOauthInfo($source ?: $this->request->url(true), input('mode', 1), false);
  67. if (empty($result['openid'])) {
  68. $script[] = 'alert("Wechat WebOauth failed.")';
  69. } else {
  70. $data = $result['fansinfo'] ?? [];
  71. $data['openid2'] = $data['openid'];
  72. $data['base_sex'] = ['未知', '男', '女'][$data['sex']] ?? '未知';
  73. if (isset($data['headimgurl'])) $data['headimg'] = $data['headimgurl'];
  74. $map = isset($data['unionid']) ? ['unionid' => $data['unionid']] : [$this->field => $result['openid']];
  75. $result['userinfo'] = UserService::instance()->set($map, array_merge($map, $data), $this->type, true);
  76. $script[] = "window.WeChatOpenid='{$result['openid']}'";
  77. $script[] = 'window.WeChatFansInfo=' . json_encode($result['fansinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
  78. $script[] = 'window.WeChatUserInfo=' . json_encode($result['userinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
  79. }
  80. $script[] = '';
  81. return Response::create(join(";\n", $script))->contentType('application/x-javascript');
  82. }
  83. }