123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: https://thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // | 免费声明 ( https://thinkadmin.top/disclaimer )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\wechat\controller;
- use app\wechat\model\WechatFans;
- use app\wechat\model\WechatFansTags;
- use app\wechat\service\WechatService;
- use think\admin\Controller;
- use think\admin\helper\QueryHelper;
- use think\exception\HttpResponseException;
- /**
- * 微信用户管理
- * Class Fans
- * @package app\wechat\controller
- */
- class Fans extends Controller
- {
- /**
- * 微信用户管理
- * @auth false
- * @menu false
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- WechatFans::mQuery()->layTable(function () {
- $this->title = '微信用户管理';
- }, function (QueryHelper $query) {
- $query->where(['appid' => WechatService::getAppid()]);
- $query->like('nickname')->equal('subscribe,is_black')->dateBetween('subscribe_at');
- });
- }
- /**
- * 列表数据处理
- * @param array $data
- */
- protected function _index_page_filter(array &$data)
- {
- foreach ($data as &$vo) $vo['subscribe_at'] = format_datetime($vo['subscribe_at']);
- }
- /**
- * 同步用户数据
- * @auth false
- */
- public function sync()
- {
- sysoplog('微信授权配置', '创建粉丝用户同步任务');
- $this->_queue('同步微信用户数据', "xadmin:fansall");
- }
- /**
- * 黑名单列表操作
- * @auth false
- */
- public function black()
- {
- try {
- $data = $this->_vali([
- 'black.require' => '操作类型不能为空!',
- 'openid.require' => '操作用户不能为空!',
- ]);
- foreach (array_chunk(str2arr($data['openid']), 20) as $openids) {
- if ($data['black']) {
- WechatService::WeChatUser()->batchBlackList($openids);
- WechatFans::mk()->whereIn('openid', $openids)->update(['is_black' => 1]);
- } else {
- WechatService::WeChatUser()->batchUnblackList($openids);
- WechatFans::mk()->whereIn('openid', $openids)->update(['is_black' => 0]);
- }
- }
- if (empty($data['black'])) {
- $this->success('移出黑名单成功!');
- } else {
- $this->success('拉入黑名单成功!');
- }
- } catch (HttpResponseException $exception) {
- throw $exception;
- } catch (\Exception $exception) {
- $this->error("黑名单操作失败,请稍候再试!<br>{$exception->getMessage()}");
- }
- }
- /**
- * 删除用户信息
- * @auth false
- */
- public function remove()
- {
- WechatFans::mDelete();
- }
- /**
- * 清空用户数据
- * @auth false
- */
- public function truncate()
- {
- try {
- WechatFans::mQuery()->empty();
- WechatFansTags::mQuery()->empty();
- $this->success('清空用户数据成功!');
- } catch (HttpResponseException $exception) {
- throw $exception;
- } catch (\Exception $exception) {
- $this->error("清空用户数据失败,{$exception->getMessage()}");
- }
- }
- }
|