mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
143 lines
4.6 KiB
PHP
143 lines
4.6 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\wechat\controller;
|
||
|
||
use app\wechat\service\WechatService;
|
||
use think\admin\Controller;
|
||
use think\admin\Exception;
|
||
use think\exception\HttpResponseException;
|
||
|
||
/**
|
||
* 微信用户管理
|
||
* Class Fans
|
||
* @package app\wechat\controller
|
||
*/
|
||
class Fans extends Controller
|
||
{
|
||
/**
|
||
* 绑定数据表
|
||
* @var string
|
||
*/
|
||
protected $table = 'WechatFans';
|
||
|
||
/**
|
||
* 微信用户管理
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\Exception
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '微信用户管理';
|
||
$this->where = ['appid' => WechatService::instance()->getAppid()];
|
||
$query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
|
||
$query->dateBetween('subscribe_at')->where($this->where)->order('subscribe_time desc')->page();
|
||
}
|
||
|
||
/**
|
||
* 列表数据处理
|
||
* @param array $data
|
||
*/
|
||
protected function _index_page_filter(array &$data)
|
||
{
|
||
$tags = $this->app->db->name('WechatFansTags')->column('name', 'id');
|
||
foreach ($data as &$vo) {
|
||
$vo['tags'] = [];
|
||
foreach (explode(',', $vo['tagid_list']) as $tagid) {
|
||
if (isset($tags[$tagid])) $vo['tags'][] = $tags[$tagid];
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 同步用户数据
|
||
* @auth true
|
||
*/
|
||
public function sync()
|
||
{
|
||
try {
|
||
$code = sysqueue('同步微信用户数据', "xadmin:fansall", 1, [], 0);
|
||
$this->success('创建任务成功,请等待完成!', $code);
|
||
} catch (HttpResponseException $exception) {
|
||
throw $exception;
|
||
} catch (Exception $exception) {
|
||
$queue = $exception->getData();
|
||
if (isset($queue['code'])) {
|
||
$this->success('任务已经存在,无需再次创建!', $queue['code']);
|
||
} else {
|
||
$this->error($exception->getMessage());
|
||
}
|
||
} catch (\Exception $exception) {
|
||
$this->error("创建任务失败,{$exception->getMessage()}");
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 用户拉入黑名单
|
||
* @auth true
|
||
*/
|
||
public function black_add()
|
||
{
|
||
try {
|
||
$this->_applyFormToken();
|
||
foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
|
||
WechatService::WeChatUser()->batchBlackList($openids);
|
||
$this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']);
|
||
}
|
||
$this->success('拉入黑名单成功!');
|
||
} catch (HttpResponseException $exception) {
|
||
throw $exception;
|
||
} catch (\Exception $e) {
|
||
$this->error("拉入黑名单失败,请稍候再试!<br>{$e->getMessage()}");
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 用户移出黑名单
|
||
* @auth true
|
||
*/
|
||
public function black_del()
|
||
{
|
||
try {
|
||
$this->_applyFormToken();
|
||
foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
|
||
WechatService::WeChatUser()->batchUnblackList($openids);
|
||
$this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']);
|
||
}
|
||
$this->success('移出黑名单成功!');
|
||
} catch (HttpResponseException $exception) {
|
||
throw $exception;
|
||
} catch (\Exception $e) {
|
||
$this->error("移出黑名单失败,请稍候再试!<br>{$e->getMessage()}");
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 删除用户信息
|
||
* @auth true
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function remove()
|
||
{
|
||
$this->_applyFormToken();
|
||
$this->_delete($this->table);
|
||
}
|
||
|
||
}
|