Fans.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\wechat\controller;
  16. use app\wechat\model\WechatFans;
  17. use app\wechat\model\WechatFansTags;
  18. use app\wechat\service\WechatService;
  19. use think\admin\Controller;
  20. use think\admin\helper\QueryHelper;
  21. use think\exception\HttpResponseException;
  22. /**
  23. * 微信用户管理
  24. * Class Fans
  25. * @package app\wechat\controller
  26. */
  27. class Fans extends Controller
  28. {
  29. /**
  30. * 微信用户管理
  31. * @auth false
  32. * @menu false
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function index()
  38. {
  39. WechatFans::mQuery()->layTable(function () {
  40. $this->title = '微信用户管理';
  41. }, function (QueryHelper $query) {
  42. $query->where(['appid' => WechatService::getAppid()]);
  43. $query->like('nickname')->equal('subscribe,is_black')->dateBetween('subscribe_at');
  44. });
  45. }
  46. /**
  47. * 列表数据处理
  48. * @param array $data
  49. */
  50. protected function _index_page_filter(array &$data)
  51. {
  52. foreach ($data as &$vo) $vo['subscribe_at'] = format_datetime($vo['subscribe_at']);
  53. }
  54. /**
  55. * 同步用户数据
  56. * @auth false
  57. */
  58. public function sync()
  59. {
  60. sysoplog('微信授权配置', '创建粉丝用户同步任务');
  61. $this->_queue('同步微信用户数据', "xadmin:fansall");
  62. }
  63. /**
  64. * 黑名单列表操作
  65. * @auth false
  66. */
  67. public function black()
  68. {
  69. try {
  70. $data = $this->_vali([
  71. 'black.require' => '操作类型不能为空!',
  72. 'openid.require' => '操作用户不能为空!',
  73. ]);
  74. foreach (array_chunk(str2arr($data['openid']), 20) as $openids) {
  75. if ($data['black']) {
  76. WechatService::WeChatUser()->batchBlackList($openids);
  77. WechatFans::mk()->whereIn('openid', $openids)->update(['is_black' => 1]);
  78. } else {
  79. WechatService::WeChatUser()->batchUnblackList($openids);
  80. WechatFans::mk()->whereIn('openid', $openids)->update(['is_black' => 0]);
  81. }
  82. }
  83. if (empty($data['black'])) {
  84. $this->success('移出黑名单成功!');
  85. } else {
  86. $this->success('拉入黑名单成功!');
  87. }
  88. } catch (HttpResponseException $exception) {
  89. throw $exception;
  90. } catch (\Exception $exception) {
  91. $this->error("黑名单操作失败,请稍候再试!<br>{$exception->getMessage()}");
  92. }
  93. }
  94. /**
  95. * 删除用户信息
  96. * @auth false
  97. */
  98. public function remove()
  99. {
  100. WechatFans::mDelete();
  101. }
  102. /**
  103. * 清空用户数据
  104. * @auth false
  105. */
  106. public function truncate()
  107. {
  108. try {
  109. WechatFans::mQuery()->empty();
  110. WechatFansTags::mQuery()->empty();
  111. $this->success('清空用户数据成功!');
  112. } catch (HttpResponseException $exception) {
  113. throw $exception;
  114. } catch (\Exception $exception) {
  115. $this->error("清空用户数据失败,{$exception->getMessage()}");
  116. }
  117. }
  118. }