2017-04-22 13:30:57 +08:00

64 lines
2.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Think.Admin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/Think.Admin
// +----------------------------------------------------------------------
namespace app\wechat\controller;
use controller\BasicAdmin;
use service\LogService;
use service\WechatService;
use think\Db;
/**
* 微信粉丝管理
* Class Fans
* @package app\wechat\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/03/27 14:43
*/
class Fans extends BasicAdmin {
/**
* 定义当前默认数据表
* @var string
*/
protected $table = 'WechatFans';
/**
* 显示粉丝列表
* @return array|string
*/
public function index() {
$this->title = '微信粉丝管理';
$db = Db::name($this->table);
$get = $this->request->get();
if (isset($get['nickname']) && $get['nickname'] !== '') {
$db->where('nickname', 'like', "%{$get['nickname']}%");
}
return parent::_list($db);
}
/**
* 同步粉丝列表
*/
public function sync() {
Db::name($this->table)->where('1=1')->delete();
if (WechatService::syncAllFans('')) {
LogService::write('微信管理', '同步全部微信粉丝成功');
$this->success('同步获取所有粉丝成功!', '');
}
$this->error('同步获取粉丝失败,请稍候再试!');
}
}