Wechat.php 5.1 KB

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