Fans.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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\queue\WechatQueue;
  16. use app\service\service\WechatService;
  17. use library\Controller;
  18. use think\Db;
  19. use think\exception\HttpResponseException;
  20. /**
  21. * 微信粉丝管理
  22. * Class Fans
  23. * @package app\wechat\controller
  24. */
  25. class Fans extends Controller
  26. {
  27. protected $appid = '';
  28. /**
  29. * 绑定数据表
  30. * @var string
  31. */
  32. protected $table = 'WechatFans';
  33. /**
  34. * 初始化函数
  35. * @return Controller|void
  36. */
  37. protected function initialize()
  38. {
  39. $this->appid = input('appid', session('current_appid'));
  40. if (empty($this->appid)) {
  41. $this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0', 'verify_type' => '0'];
  42. $this->appid = Db::name('WechatServiceConfig')->where($this->where)->value('authorizer_appid');
  43. }
  44. if (empty($this->appid)) {
  45. $this->fetch('/not-auth');
  46. } else {
  47. session('current_appid', $this->appid);
  48. }
  49. if ($this->request->isGet()) {
  50. $this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0', 'verify_type' => '0'];
  51. $this->wechats = Db::name('WechatServiceConfig')->where($this->where)->order('id desc')->column('authorizer_appid,nick_name');
  52. }
  53. }
  54. /**
  55. * 微信粉丝管理
  56. * @auth true
  57. * @menu true
  58. */
  59. public function index()
  60. {
  61. $this->title = '微信粉丝管理';
  62. $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
  63. $query->dateBetween('subscribe_at')->where(['appid' => $this->appid])->order('subscribe_time desc')->page();
  64. }
  65. /**
  66. * 列表数据处理
  67. * @param array $data
  68. */
  69. protected function _index_page_filter(array &$data)
  70. {
  71. $tags = Db::name('WechatFansTags')->column('id,name');
  72. foreach ($data as &$user) {
  73. $user['tags'] = [];
  74. foreach (explode(',', $user['tagid_list']) as $tagid) {
  75. if (isset($tags[$tagid])) $user['tags'][] = $tags[$tagid];
  76. }
  77. }
  78. }
  79. /**
  80. * 批量拉黑粉丝
  81. * @auth true
  82. */
  83. public function setBlack()
  84. {
  85. try {
  86. $this->applyCsrfToken();
  87. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  88. WechatService::WeChatUser($this->appid)->batchBlackList($openids);
  89. Db::name('WechatFans')->where(['appid' => $this->appid])->whereIn('openid', $openids)->update(['is_black' => '1']);
  90. }
  91. $this->success('拉黑粉丝信息成功!');
  92. } catch (HttpResponseException $exception) {
  93. throw $exception;
  94. } catch (\Exception $e) {
  95. $this->error("拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
  96. }
  97. }
  98. /**
  99. * 取消拉黑粉丝
  100. * @auth true
  101. */
  102. public function delBlack()
  103. {
  104. try {
  105. $this->applyCsrfToken();
  106. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  107. WechatService::WeChatUser($this->appid)->batchUnblackList($openids);
  108. Db::name('WechatFans')->where(['appid' => $this->appid])->whereIn('openid', $openids)->update(['is_black' => '0']);
  109. }
  110. $this->success('取消拉黑粉丝信息成功!');
  111. } catch (HttpResponseException $exception) {
  112. throw $exception;
  113. } catch (\Exception $e) {
  114. $this->error("取消拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
  115. }
  116. }
  117. /**
  118. * 同步粉丝列表
  119. * @auth true
  120. */
  121. public function sync()
  122. {
  123. try {
  124. sysoplog('微信管理', "创建微信[{$this->appid}]粉丝同步任务");
  125. sysqueue("同步[{$this->appid}]粉丝列表", WechatQueue::URI, 0, ['appid' => $this->appid], 0);
  126. $this->success('创建同步粉丝任务成功,需要时间来完成。<br>请到 系统管理 > 任务管理 查看执行进度!');
  127. } catch (HttpResponseException $exception) {
  128. throw $exception;
  129. } catch (\Exception $e) {
  130. $this->error("创建同步粉丝任务失败,请稍候再试!<br> {$e->getMessage()}");
  131. }
  132. }
  133. /**
  134. * 删除粉丝信息
  135. * @auth true
  136. * @throws \think\Exception
  137. * @throws \think\exception\PDOException
  138. */
  139. public function remove()
  140. {
  141. $this->applyCsrfToken();
  142. $this->_delete($this->table);
  143. }
  144. }