mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 05:29:02 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
49 lines
2.4 KiB
TypeScript
49 lines
2.4 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { OB11User, OB11UserSex } from '@/napcat-onebot/index';
|
|
import { OB11Construct } from '@/napcat-onebot/helper/data';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { calcQQLevel } from 'napcat-common/src/helper';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
const SchemaData = Type.Object({
|
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
|
no_cache: Type.Union([Type.Boolean(), Type.String()], { default: false }),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export default class GoCQHTTPGetStrangerInfo extends OneBotAction<Payload, OB11User & { uid: string }> {
|
|
override actionName = ActionName.GoCQHTTP_GetStrangerInfo;
|
|
override payloadSchema = SchemaData;
|
|
async _handle (payload: Payload) {
|
|
const user_id = payload.user_id.toString();
|
|
const isNocache = typeof payload.no_cache === 'string' ? payload.no_cache === 'true' : !!payload.no_cache;
|
|
const extendData = await this.core.apis.UserApi.getUserDetailInfoByUin(user_id);
|
|
let uid = (await this.core.apis.UserApi.getUidByUinV2(user_id));
|
|
if (!uid) uid = extendData.detail.uid;
|
|
const info = (await this.core.apis.UserApi.getUserDetailInfo(uid, isNocache));
|
|
return {
|
|
...extendData.detail.simpleInfo.coreInfo,
|
|
...extendData.detail.commonExt ?? {},
|
|
...extendData.detail.simpleInfo.baseInfo,
|
|
...extendData.detail.simpleInfo.relationFlags ?? {},
|
|
...extendData.detail.simpleInfo.status ?? {},
|
|
user_id: parseInt(extendData.detail.uin) ?? 0,
|
|
uid: info.uid ?? uid,
|
|
nickname: extendData.detail.simpleInfo.coreInfo.nick ?? '',
|
|
age: extendData.detail.simpleInfo.baseInfo.age ?? info.age,
|
|
qid: extendData.detail.simpleInfo.baseInfo.qid,
|
|
qqLevel: calcQQLevel(extendData.detail.commonExt?.qqLevel ?? info.qqLevel),
|
|
sex: OB11Construct.sex(extendData.detail.simpleInfo.baseInfo.sex) ?? OB11UserSex.unknown,
|
|
long_nick: extendData.detail.simpleInfo.baseInfo.longNick ?? info.longNick,
|
|
reg_time: extendData.detail.commonExt?.regTime ?? info.regTime,
|
|
is_vip: extendData.detail.simpleInfo.vasInfo?.svipFlag,
|
|
is_years_vip: extendData.detail.simpleInfo.vasInfo?.yearVipFlag,
|
|
vip_level: extendData.detail.simpleInfo.vasInfo?.vipLevel,
|
|
remark: extendData.detail.simpleInfo.coreInfo.remark ?? info.remark,
|
|
status: extendData.detail.simpleInfo.status?.status ?? info.status,
|
|
login_days: 0, // 失效
|
|
};
|
|
}
|
|
}
|