ThinkAdmin/app/data/service/UserAdminService.php
2021-09-13 12:11:44 +08:00

150 lines
4.8 KiB
PHP

<?php
namespace app\data\service;
use app\data\model\DataUser;
use app\data\model\DataUserToken;
use think\admin\Exception;
use think\admin\Service;
/**
* 用户数据管理服务
* Class UserAdminService
* @package app\data\service
*/
class UserAdminService extends Service
{
const API_TYPE_WAP = 'wap';
const API_TYPE_WEB = 'web';
const API_TYPE_WXAPP = 'wxapp';
const API_TYPE_WECHAT = 'wechat';
const API_TYPE_IOSAPP = 'iosapp';
const API_TYPE_ANDROID = 'android';
const TYPES = [
// 接口支付配置(不需要的直接注释)
self::API_TYPE_WAP => [
'name' => '手机浏览器',
'auth' => 'phone',
],
self::API_TYPE_WEB => [
'name' => '电脑浏览器',
'auth' => 'phone',
],
self::API_TYPE_WXAPP => [
'name' => '微信小程序',
'auth' => 'openid1',
],
self::API_TYPE_WECHAT => [
'name' => '微信服务号',
'auth' => 'openid2',
],
self::API_TYPE_IOSAPP => [
'name' => '苹果APP应用',
'auth' => 'phone',
],
self::API_TYPE_ANDROID => [
'name' => '安卓APP应用',
'auth' => 'phone',
],
];
/**
* 更新用户用户参数
* @param array $map 查询条件
* @param array $data 更新数据
* @param string $type 接口类型
* @param boolean $force 强刷令牌
* @return array
* @throws \think\admin\Exception
* @throws \think\db\exception\DbException
*/
public function set(array $map, array $data, string $type, bool $force = false): array
{
unset($data['id'], $data['deleted'], $data['create_at']);
if ($uuid = DataUser::mk()->where($map)->where(['deleted' => 0])->value('id')) {
if (!empty($data)) {
$map = ['id' => $uuid, 'deleted' => 0];
DataUser::mk()->strict(false)->where($map)->update($data);
}
} else {
$uuid = DataUser::mk()->strict(false)->insertGetId($data);
}
if ($force) {
UserTokenService::instance()->token(intval($uuid), $type);
}
return $this->get($uuid, $type);
}
/**
* 获取用户数据
* @param integer $uuid 用户UID
* @param ?string $type 接口类型
* @return array
* @throws \think\admin\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function get(int $uuid, ?string $type = null): array
{
$user = DataUser::mk()->where(['id' => $uuid, 'deleted' => 0])->find();
if (empty($user)) throw new Exception('指定UID用户不存在');
if (!is_null($type)) {
$map = ['uuid' => $uuid, 'type' => $type];
$data = DataUserToken::mk()->where($map)->find();
if (empty($data)) {
[$state, $info, $data] = UserTokenService::instance()->token($uuid, $type);
if (empty($state) || empty($data)) throw new Exception($info);
}
$user['token'] = ['token' => $data['token'], 'expire' => $data['time']];
}
unset($user['deleted'], $user['password']);
return $user;
}
/**
* 获取用户数据统计
* @param int $uuid 用户UID
* @return array
*/
public function total(int $uuid): array
{
return ['my_invite' => DataUser::mk()->where(['pid1' => $uuid])->count()];
}
/**
* 获取用户查询条件
* @param string $field 认证字段
* @param string $openid 用户OPENID值
* @param string $unionid 用户UNIONID值
* @return array
*/
public function getUserUniMap(string $field, string $openid, string $unionid = ''): array
{
if (!empty($unionid)) {
[$map1, $map2] = [[['unionid', '=', $unionid]], [[$field, '=', $openid]]];
if ($uuid = DataUser::mk()->whereOr([$map1, $map2])->value('id')) {
return ['id' => $uuid];
}
}
return [$field => $openid];
}
/**
* 列表绑定用户数据
* @param array $list 原数据列表
* @param string $keys 用户UID字段
* @param string $bind 绑定字段名称
* @param string $cols 返回用户字段
* @return array
*/
public function buildByUid(array &$list, string $keys = 'uuid', string $bind = 'user', string $cols = '*'): array
{
if (count($list) < 1) return $list;
$uids = array_unique(array_column($list, $keys));
$users = DataUser::mk()->whereIn('id', $uids)->column($cols, 'id');
foreach ($list as &$vo) $vo[$bind] = $users[$vo[$keys]] ?? [];
return $list;
}
}