Fans.php 5.5 KB

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