Fans.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/framework
  12. // +----------------------------------------------------------------------
  13. namespace app\wechat\controller;
  14. use app\admin\service\QueueService;
  15. use app\wechat\queue\WechatQueue;
  16. use app\wechat\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. /**
  28. * 绑定数据表
  29. * @var string
  30. */
  31. protected $table = 'WechatFans';
  32. /**
  33. * 微信粉丝管理
  34. * @auth true
  35. * @menu true
  36. * @throws \think\Exception
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @throws \think\exception\DbException
  40. * @throws \think\exception\PDOException
  41. */
  42. public function index()
  43. {
  44. $this->title = '微信粉丝管理';
  45. $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
  46. $query->dateBetween('subscribe_at')->order('subscribe_time desc')->page();
  47. }
  48. /**
  49. * 列表数据处理
  50. * @param array $data
  51. */
  52. protected function _index_page_filter(array &$data)
  53. {
  54. $tags = Db::name('WechatFansTags')->column('id,name');
  55. foreach ($data as &$user) {
  56. $user['tags'] = [];
  57. foreach (explode(',', $user['tagid_list']) as $tagid) {
  58. if (isset($tags[$tagid])) $user['tags'][] = $tags[$tagid];
  59. }
  60. foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
  61. if (isset($user[$k])) $user[$k] = emoji_decode($user[$k]);
  62. }
  63. }
  64. }
  65. /**
  66. * 批量拉黑粉丝
  67. * @auth true
  68. */
  69. public function setBlack()
  70. {
  71. $this->applyCsrfToken();
  72. try {
  73. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  74. WechatService::WeChatUser()->batchBlackList($openids);
  75. Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']);
  76. }
  77. $this->success('拉黑粉丝信息成功!');
  78. } catch (HttpResponseException $exception) {
  79. throw $exception;
  80. } catch (\Exception $e) {
  81. $this->error("拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
  82. }
  83. }
  84. /**
  85. * 取消拉黑粉丝
  86. * @auth true
  87. */
  88. public function delBlack()
  89. {
  90. $this->applyCsrfToken();
  91. try {
  92. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  93. WechatService::WeChatUser()->batchUnblackList($openids);
  94. Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']);
  95. }
  96. $this->success('取消拉黑粉丝信息成功!');
  97. } catch (HttpResponseException $exception) {
  98. throw $exception;
  99. } catch (\Exception $e) {
  100. $this->error("取消拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
  101. }
  102. }
  103. /**
  104. * 同步粉丝列表
  105. * @auth true
  106. */
  107. public function sync()
  108. {
  109. try {
  110. sysoplog('微信管理', '创建微信粉丝同步任务');
  111. QueueService::add('同步粉丝列表', WechatQueue::URI, 0, [], 0);
  112. $this->success('创建同步粉丝任务成功,需要时间来完成。<br>请到系统任务管理查看进度!');
  113. } catch (HttpResponseException $exception) {
  114. throw $exception;
  115. } catch (\Exception $e) {
  116. $this->error("创建同步粉丝任务失败,请稍候再试!<br> {$e->getMessage()}");
  117. }
  118. }
  119. /**
  120. * 删除粉丝信息
  121. * @auth true
  122. */
  123. public function remove()
  124. {
  125. $this->applyCsrfToken();
  126. $this->_delete($this->table);
  127. }
  128. }