mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
67 lines
2.3 KiB
PHP
67 lines
2.3 KiB
PHP
<?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\service;
|
||
|
||
use app\wechat\model\WechatFans;
|
||
use think\admin\Service;
|
||
|
||
/**
|
||
* 微信粉丝信息
|
||
* Class FansService
|
||
* @package app\wechat\service
|
||
*/
|
||
class FansService extends Service
|
||
{
|
||
|
||
/**
|
||
* 增加或更新粉丝信息
|
||
* @param array $user 粉丝信息
|
||
* @param string $appid 微信APPID
|
||
* @return boolean
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function set(array $user, string $appid = ''): bool
|
||
{
|
||
if (isset($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'] = arr2str($user['tagid_list'] ?? []);
|
||
}
|
||
if ($appid !== '') $user['appid'] = $appid;
|
||
unset($user['privilege'], $user['groupid']);
|
||
$this->app->event->trigger('WechatFansUpdate', $user);
|
||
return !!data_save(WechatFans::class, $user, 'openid');
|
||
}
|
||
|
||
/**
|
||
* 获取粉丝信息
|
||
* @param string $openid
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function get(string $openid): array
|
||
{
|
||
$user = WechatFans::mk()->where(['openid' => $openid])->find();
|
||
return empty($user) ? [] : $user->toArray();
|
||
}
|
||
}
|