Index.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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\controller;
  15. use app\service\service\BuildService;
  16. use app\service\service\WechatService;
  17. use library\Controller;
  18. use think\Db;
  19. use think\exception\HttpResponseException;
  20. /**
  21. * 公众授权管理
  22. * @package app\service\controller
  23. */
  24. class Index extends Controller
  25. {
  26. /**
  27. * 绑定数据表
  28. * @var string
  29. */
  30. public $table = 'WechatServiceConfig';
  31. /**
  32. * 公众授权管理
  33. * @auth true
  34. * @menu true
  35. * @return string
  36. * @throws \think\Exception
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @throws \think\exception\DbException
  40. */
  41. public function index()
  42. {
  43. $this->applyCsrfToken();
  44. $this->title = '公众授权管理';
  45. $query = $this->_query($this->table)->like('authorizer_appid,nick_name,principal_name');
  46. $query = $query->equal('service_type,status')->dateBetween('create_at');
  47. $query->where(['is_deleted' => '0'])->order('id desc')->page();
  48. }
  49. /**
  50. * 清理调用次数
  51. * @auth true
  52. * @throws \WeChat\Exceptions\InvalidResponseException
  53. * @throws \WeChat\Exceptions\LocalCacheException
  54. */
  55. public function clearQuota()
  56. {
  57. $appid = input('appid');
  58. $result = WechatService::WeChatLimit($appid)->clearQuota();
  59. if (empty($result['errcode']) && $result['errmsg'] === 'ok') {
  60. $this->success('接口调用次数清零成功!');
  61. } elseif (isset($result['errmsg'])) {
  62. $this->error('接口调用次数清零失败,请稍候再试!' . $result['errmsg']);
  63. } else {
  64. $this->error('接口调用次数清零失败,请稍候再试!');
  65. }
  66. }
  67. /**
  68. * 同步指定授权公众号
  69. * @auth true
  70. */
  71. public function sync()
  72. {
  73. try {
  74. $appid = $this->request->get('appid');
  75. $where = ['authorizer_appid' => $appid, 'is_deleted' => '0', 'status' => '1'];
  76. $author = Db::name('WechatServiceConfig')->where($where)->find();
  77. if (empty($author)) $this->error('无效的授权信息,请同步其它公众号!');
  78. $data = BuildService::filter(WechatService::service()->getAuthorizerInfo($appid));
  79. $data['authorizer_appid'] = $appid;
  80. $where = ['authorizer_appid' => $data['authorizer_appid']];
  81. $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
  82. if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
  83. if (data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
  84. $this->success('更新公众号授权成功!', '');
  85. }
  86. } catch (HttpResponseException $exception) {
  87. throw $exception;
  88. } catch (\Exception $e) {
  89. $this->error("获取授权信息失败,请稍候再试!<br>{$e->getMessage()}");
  90. }
  91. }
  92. /**
  93. * 同步所有授权公众号
  94. * @auth true
  95. */
  96. public function syncall()
  97. {
  98. try {
  99. $wechat = WechatService::service();
  100. $result = $wechat->getAuthorizerList();
  101. foreach ($result['list'] as $item) if (!empty($item['refresh_token']) && !empty($item['auth_time'])) {
  102. $data = BuildService::filter($wechat->getAuthorizerInfo($item['authorizer_appid']));
  103. $data['is_deleted'] = '0';
  104. $data['authorizer_appid'] = $item['authorizer_appid'];
  105. $data['authorizer_refresh_token'] = $item['refresh_token'];
  106. $data['create_at'] = date('Y-m-d H:i:s', $item['auth_time']);
  107. $where = ['authorizer_appid' => $data['authorizer_appid']];
  108. $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
  109. if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
  110. if (!data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
  111. $this->error('获取授权信息失败,请稍候再试!', '');
  112. }
  113. }
  114. $this->success('同步所有授权信息成功!', '');
  115. } catch (HttpResponseException $exception) {
  116. throw $exception;
  117. } catch (\Exception $e) {
  118. $this->error("同步授权失败,请稍候再试!<br>{$e->getMessage()}");
  119. }
  120. }
  121. /**
  122. * 删除公众号授权
  123. * @auth true
  124. * @throws \think\Exception
  125. * @throws \think\exception\PDOException
  126. */
  127. public function remove()
  128. {
  129. $this->applyCsrfToken();
  130. $this->_delete($this->table);
  131. }
  132. /**
  133. * 禁用公众号授权
  134. * @auth true
  135. * @throws \think\Exception
  136. * @throws \think\exception\PDOException
  137. */
  138. public function forbid()
  139. {
  140. $this->applyCsrfToken();
  141. $this->_save($this->table, ['status' => '0']);
  142. }
  143. /**
  144. * 启用公众号授权
  145. * @auth true
  146. * @throws \think\Exception
  147. * @throws \think\exception\PDOException
  148. */
  149. public function resume()
  150. {
  151. $this->applyCsrfToken();
  152. $this->_save($this->table, ['status' => '1']);
  153. }
  154. }