Fans.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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\wechat\service\WechatService;
  16. use think\admin\Controller;
  17. use think\exception\HttpResponseException;
  18. /**
  19. * 微信用户管理
  20. * Class Fans
  21. * @package app\wechat\controller
  22. */
  23. class Fans extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. private $table = 'WechatFans';
  30. /**
  31. * 微信用户管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. */
  39. public function index()
  40. {
  41. $this->title = '微信用户管理';
  42. $this->where = ['appid' => WechatService::instance()->getAppid()];
  43. $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
  44. $query->dateBetween('subscribe_at')->where($this->where)->order('subscribe_time desc');
  45. if (input('output') === 'json') {
  46. $this->success('获取数据成功', $query->page(true, false));
  47. } else {
  48. $query->page();
  49. }
  50. }
  51. /**
  52. * 列表数据处理
  53. * @param array $data
  54. */
  55. protected function _index_page_filter(array &$data)
  56. {
  57. $tags = $this->app->db->name('WechatFansTags')->column('name', 'id');
  58. foreach ($data as &$vo) {
  59. $vo['tags'] = [];
  60. foreach (explode(',', $vo['tagid_list']) as $tagid) {
  61. if (isset($tags[$tagid])) $vo['tags'][] = $tags[$tagid];
  62. }
  63. }
  64. }
  65. /**
  66. * 同步用户数据
  67. * @auth true
  68. */
  69. public function sync()
  70. {
  71. sysoplog('微信授权配置', '创建粉丝用户同步任务');
  72. $this->_queue('同步微信用户数据', "xadmin:fansall");
  73. }
  74. /**
  75. * 删除用户信息
  76. * @auth true
  77. * @throws \think\db\exception\DbException
  78. */
  79. public function remove()
  80. {
  81. $this->_applyFormToken();
  82. $this->_delete($this->table);
  83. }
  84. /**
  85. * 用户拉入黑名单
  86. * @auth true
  87. */
  88. public function blackAdd()
  89. {
  90. try {
  91. $this->_applyFormToken();
  92. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  93. WechatService::WeChatUser()->batchBlackList($openids);
  94. $this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']);
  95. }
  96. $this->success('拉入黑名单成功!');
  97. } catch (HttpResponseException $exception) {
  98. throw $exception;
  99. } catch (\Exception $exception) {
  100. $this->error("拉入黑名单失败,请稍候再试!<br>{$exception->getMessage()}");
  101. }
  102. }
  103. /**
  104. * 用户移出黑名单
  105. * @auth true
  106. */
  107. public function blackDel()
  108. {
  109. try {
  110. $this->_applyFormToken();
  111. foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
  112. WechatService::WeChatUser()->batchUnblackList($openids);
  113. $this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']);
  114. }
  115. $this->success('移出黑名单成功!');
  116. } catch (HttpResponseException $exception) {
  117. throw $exception;
  118. } catch (\Exception $exception) {
  119. $this->error("移出黑名单失败,请稍候再试!<br>{$exception->getMessage()}");
  120. }
  121. }
  122. }