Fans.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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\wechat\controller;
  15. use app\admin\service\QueueService;
  16. use app\wechat\queue\WechatQueue;
  17. use app\wechat\service\WechatService;
  18. use library\Controller;
  19. use think\Db;
  20. use think\exception\HttpResponseException;
  21. /**
  22. * 微信粉丝管理
  23. * Class Fans
  24. * @package app\wechat\controller
  25. */
  26. class Fans extends Controller
  27. {
  28. /**
  29. * 绑定数据表
  30. * @var string
  31. */
  32. protected $table = 'WechatFans';
  33. /**
  34. * 微信粉丝管理
  35. * @auth true
  36. * @menu true
  37. * @throws \think\Exception
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. * @throws \think\exception\PDOException
  42. */
  43. public function index()
  44. {
  45. $this->title = '微信粉丝管理';
  46. $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
  47. $query->dateBetween('subscribe_at')->order('subscribe_time desc')->page();
  48. }
  49. /**
  50. * 列表数据处理
  51. * @param array $data
  52. */
  53. protected function _index_page_filter(array &$data)
  54. {
  55. $tags = Db::name('WechatFansTags')->column('id,name');
  56. foreach ($data as &$user) {
  57. $user['tags'] = [];
  58. foreach (explode(',', $user['tagid_list']) as $tagid) {
  59. if (isset($tags[$tagid])) $user['tags'][] = $tags[$tagid];
  60. }
  61. foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
  62. if (isset($user[$k])) $user[$k] = emoji_decode($user[$k]);
  63. }
  64. }
  65. }
  66. /**
  67. * 批量拉黑粉丝
  68. * @auth true
  69. */
  70. public function setBlack()
  71. {
  72. $this->applyCsrfToken();
  73. try {
  74. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  75. WechatService::WeChatUser()->batchBlackList($openids);
  76. Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']);
  77. }
  78. $this->success('拉黑粉丝信息成功!');
  79. } catch (HttpResponseException $exception) {
  80. throw $exception;
  81. } catch (\Exception $e) {
  82. $this->error("拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
  83. }
  84. }
  85. /**
  86. * 取消拉黑粉丝
  87. * @auth true
  88. */
  89. public function delBlack()
  90. {
  91. $this->applyCsrfToken();
  92. try {
  93. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  94. WechatService::WeChatUser()->batchUnblackList($openids);
  95. Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']);
  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 sync()
  109. {
  110. try {
  111. sysoplog('微信管理', '创建微信粉丝同步任务');
  112. QueueService::add('同步粉丝列表', WechatQueue::URI, 0, [], 0);
  113. $this->success('创建同步粉丝任务成功,需要时间来完成。<br>请到系统任务管理查看进度!');
  114. } catch (HttpResponseException $exception) {
  115. throw $exception;
  116. } catch (\Exception $e) {
  117. $this->error("创建同步粉丝任务失败,请稍候再试!<br> {$e->getMessage()}");
  118. }
  119. }
  120. /**
  121. * 删除粉丝信息
  122. * @auth true
  123. */
  124. public function remove()
  125. {
  126. $this->applyCsrfToken();
  127. $this->_delete($this->table);
  128. }
  129. }