Index.php 4.9 KB

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