WechatHandler.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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\service\handler;
  15. use app\service\service\WechatService as WechatLogic;
  16. use think\Db;
  17. /**
  18. * 微信网页授权接口
  19. * Class WechatHandler
  20. * @package app\wechat\handler
  21. * @author Anyon <zoujingli@qq.com>
  22. */
  23. class WechatHandler
  24. {
  25. /**
  26. * 当前微信APPID
  27. * @var string
  28. */
  29. protected $appid;
  30. /**
  31. * 当前微信配置
  32. * @var array
  33. */
  34. protected $config;
  35. /**
  36. * 错误消息
  37. * @var string
  38. */
  39. protected $message;
  40. /**
  41. * Wechat constructor.
  42. * @param array $config
  43. */
  44. public function __construct($config = [])
  45. {
  46. $this->config = $config;
  47. $this->appid = isset($config['authorizer_appid']) ? $config['authorizer_appid'] : '';
  48. }
  49. /**
  50. * 检查微信配置服务初始化状态
  51. * @return boolean
  52. * @throws \think\Exception
  53. */
  54. private function checkInit()
  55. {
  56. if (!empty($this->config)) return true;
  57. throw new \think\Exception('Wechat Please bind Wechat first');
  58. }
  59. /**
  60. * 获取当前公众号配置
  61. * @return array|boolean
  62. * @throws \think\Exception
  63. */
  64. public function getConfig()
  65. {
  66. $this->checkInit();
  67. $info = Db::name('WechatServiceConfig')->where(['authorizer_appid' => $this->appid])->find();
  68. if (empty($info)) return false;
  69. if (isset($info['id'])) unset($info['id']);
  70. return $info;
  71. }
  72. /**
  73. * 设置微信接口通知URL地址
  74. * @param string $notifyUri 接口通知URL地址
  75. * @return boolean
  76. * @throws \think\Exception
  77. * @throws \think\exception\PDOException
  78. */
  79. public function setApiNotifyUri($notifyUri)
  80. {
  81. $this->checkInit();
  82. if (empty($notifyUri)) throw new \think\Exception('请传入微信通知URL');
  83. list($where, $data) = [['authorizer_appid' => $this->appid], ['appuri' => $notifyUri]];
  84. return Db::name('WechatServiceConfig')->where($where)->update($data) !== false;
  85. }
  86. /**
  87. * 更新接口Appkey(成功返回新的Appkey)
  88. * @return bool|string
  89. * @throws \think\Exception
  90. * @throws \think\exception\PDOException
  91. */
  92. public function updateApiAppkey()
  93. {
  94. $this->checkInit();
  95. $data = ['appkey' => md5(uniqid())];
  96. Db::name('WechatServiceConfig')->where(['authorizer_appid' => $this->appid])->update($data);
  97. return $data['appkey'];
  98. }
  99. /**
  100. * 获取公众号的配置参数
  101. * @param string $name 参数名称
  102. * @return array|string
  103. * @throws \think\Exception
  104. */
  105. public function config($name = null)
  106. {
  107. $this->checkInit();
  108. return WechatLogic::WeChatScript($this->appid)->config->get($name);
  109. }
  110. /**
  111. * 微信网页授权
  112. * @param string $sessid 当前会话id(可用session_id()获取)
  113. * @param string $selfUrl 当前会话URL地址(需包含域名的完整URL地址)
  114. * @param int $fullMode 网页授权模式(0静默模式,1高级授权)
  115. * @return array|bool
  116. * @throws \think\Exception
  117. */
  118. public function oauth($sessid, $selfUrl, $fullMode = 0)
  119. {
  120. $this->checkInit();
  121. $fans = cache("{$this->appid}_{$sessid}_fans");
  122. $openid = cache("{$this->appid}_{$sessid}_openid");
  123. if (!empty($openid) && (empty($fullMode) || !empty($fans))) {
  124. return ['openid' => $openid, 'fans' => $fans, 'url' => ''];
  125. }
  126. $service = WechatLogic::service();
  127. $mode = empty($fullMode) ? 'snsapi_base' : 'snsapi_userinfo';
  128. $url = url('@service/api.push/oauth', '', true, true);
  129. $params = ['mode' => $fullMode, 'sessid' => $sessid, 'enurl' => encode($selfUrl)];
  130. $authurl = $service->getOauthRedirect($this->appid, $url . '?' . http_build_query($params), $mode);
  131. return ['openid' => $openid, 'fans' => $fans, 'url' => $authurl];
  132. }
  133. /**
  134. * 微信网页JS签名
  135. * @param string $url 当前会话URL地址(需包含域名的完整URL地址)
  136. * @return array|boolean
  137. * @throws \WeChat\Exceptions\InvalidResponseException
  138. * @throws \WeChat\Exceptions\LocalCacheException
  139. * @throws \think\Exception
  140. */
  141. public function jsSign($url)
  142. {
  143. $this->checkInit();
  144. return WechatLogic::WeChatScript($this->appid)->getJsSign($url);
  145. }
  146. }