ThinkAdmin/app/wechat/service/FansService.php

64 lines
2.1 KiB
PHP
Raw Permalink 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
// +----------------------------------------------------------------------
// | Wechat Plugin for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2025 Anyon <zoujingli@qq.com>
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// | 免责声明 ( https://thinkadmin.top/disclaimer )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/think-plugs-wechat
// | github 代码仓库https://github.com/zoujingli/think-plugs-wechat
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\wechat\service;
use app\wechat\model\WechatFans;
use think\admin\Library;
use think\admin\Service;
/**
* 微信粉丝信息
* @class FansService
* @package app\wechat\service
*/
class FansService extends Service
{
/**
* 增加或更新粉丝信息
* @param array $user 粉丝信息
* @param string $appid 微信APPID
* @return boolean
*/
public static 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']);
foreach ($user as $k => $v) if ($v === '') unset($user[$k]);
Library::$sapp->event->trigger('WechatFansUpdate', $user);
return !!WechatFans::mUpdate($user, 'openid');
}
/**
* 获取粉丝信息
* @param string $openid
* @return array
*/
public static function get(string $openid): array
{
return WechatFans::mk()->where(['openid' => $openid])->findOrEmpty()->toArray();
}
}