mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | framework
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://framework.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/framework
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\wechat\service;
|
||
|
||
use think\Db;
|
||
|
||
/**
|
||
* 微信粉丝信息
|
||
* Class Fans
|
||
* @package app\wechat\service
|
||
*/
|
||
class Fans
|
||
{
|
||
|
||
/**
|
||
* 增加或更新粉丝信息
|
||
* @param array $user 粉丝信息
|
||
* @param string $appid 公众号APPID
|
||
* @return boolean
|
||
* @throws \think\Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public static function set(array $user, $appid = '')
|
||
{
|
||
if (!empty($user['subscribe_time'])) {
|
||
$user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
|
||
}
|
||
if (isset($user['tagid_list']) && is_array($user['tagid_list'])) {
|
||
$user['tagid_list'] = is_array($user['tagid_list']) ? join(',', $user['tagid_list']) : '';
|
||
}
|
||
foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
|
||
isset($user[$k]) && $user[$k] = emoji_encode($user[$k]);
|
||
}
|
||
if ($appid !== '') $user['appid'] = $appid;
|
||
unset($user['privilege'], $user['groupid']);
|
||
return data_save('WechatFans', $user, 'openid');
|
||
}
|
||
|
||
/**
|
||
* 获取粉丝信息
|
||
* @param string $openid
|
||
* @return array|null
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public static function get($openid)
|
||
{
|
||
$user = Db::name('WechatFans')->where(['openid' => $openid])->find();
|
||
foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) {
|
||
isset($user[$k]) && $user[$k] = emoji_decode($user[$k]);
|
||
}
|
||
return $user;
|
||
}
|
||
|
||
} |