mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
Compare commits
39 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b2e0cab702 | ||
![]() |
3e3609e0f2 | ||
![]() |
83e73d9842 | ||
![]() |
673a175ddf | ||
![]() |
12eacd3530 | ||
![]() |
030f0551fd | ||
![]() |
47f5947410 | ||
![]() |
aaefa2e83c | ||
![]() |
f8e92f7c8d | ||
![]() |
b6430e6eb6 | ||
![]() |
e60605c7bb | ||
![]() |
58d2bd3c81 | ||
![]() |
6534d05b76 | ||
![]() |
2d7de174c5 | ||
![]() |
79aa1dc67f | ||
![]() |
7792ad9ea0 | ||
![]() |
be6671923b | ||
![]() |
0fa1b3f044 | ||
![]() |
4ab751696b | ||
![]() |
dce4eedf7d | ||
![]() |
129b67b751 | ||
![]() |
9ab776d53a | ||
![]() |
2759a34d96 | ||
![]() |
2f9f42750e | ||
![]() |
30abd1f904 | ||
![]() |
008075466e | ||
![]() |
5b4035c320 | ||
![]() |
e3feb6a73c | ||
![]() |
40fe73317d | ||
![]() |
073745030c | ||
![]() |
c523437506 | ||
![]() |
9eef570d37 | ||
![]() |
be37b8cbbd | ||
![]() |
c635496677 | ||
![]() |
8753ecfd92 | ||
![]() |
5eda1f2870 | ||
![]() |
d5a60074f7 | ||
![]() |
91df57d932 | ||
![]() |
e27d4c4302 |
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@@ -6,5 +6,7 @@
|
|||||||
"tsconfig.json": "tsconfig.*.json, env.d.ts, vite.config.ts",
|
"tsconfig.json": "tsconfig.*.json, env.d.ts, vite.config.ts",
|
||||||
"package.json": "package-lock.json, eslint*, .prettier*, .editorconfig, manifest.json, logo.png, .gitignore, LICENSE"
|
"package.json": "package-lock.json, eslint*, .prettier*, .editorconfig, manifest.json, logo.png, .gitignore, LICENSE"
|
||||||
},
|
},
|
||||||
"css.customData": [".vscode/tailwindcss.json"],
|
"css.customData": [
|
||||||
|
".vscode/tailwindcss.json"
|
||||||
|
],
|
||||||
}
|
}
|
@@ -4,7 +4,7 @@
|
|||||||
"name": "NapCatQQ",
|
"name": "NapCatQQ",
|
||||||
"slug": "NapCat.Framework",
|
"slug": "NapCat.Framework",
|
||||||
"description": "高性能的 OneBot 11 协议实现",
|
"description": "高性能的 OneBot 11 协议实现",
|
||||||
"version": "4.7.0",
|
"version": "4.7.9",
|
||||||
"icon": "./logo.png",
|
"icon": "./logo.png",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
"name": "napcat",
|
"name": "napcat",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "4.7.0",
|
"version": "4.7.9",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:universal": "npm run build:webui && vite build --mode universal || exit 1",
|
"build:universal": "npm run build:webui && vite build --mode universal || exit 1",
|
||||||
"build:framework": "npm run build:webui && vite build --mode framework || exit 1",
|
"build:framework": "npm run build:webui && vite build --mode framework || exit 1",
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"esbuild": "0.25.0",
|
"esbuild": "0.25.0",
|
||||||
"eslint": "^9.14.0",
|
"eslint": "^9.14.0",
|
||||||
"eslint-import-resolver-typescript": "^3.6.1",
|
"eslint-import-resolver-typescript": "^4.0.0",
|
||||||
"eslint-plugin-import": "^2.29.1",
|
"eslint-plugin-import": "^2.29.1",
|
||||||
"express-rate-limit": "^7.5.0",
|
"express-rate-limit": "^7.5.0",
|
||||||
"fast-xml-parser": "^4.3.6",
|
"fast-xml-parser": "^4.3.6",
|
||||||
|
@@ -1 +1 @@
|
|||||||
export const napCatVersion = '4.7.0';
|
export const napCatVersion = '4.7.9';
|
||||||
|
@@ -5,6 +5,9 @@ export async function runTask<T, R>(workerScript: string, taskData: T): Promise<
|
|||||||
try {
|
try {
|
||||||
return await new Promise<R>((resolve, reject) => {
|
return await new Promise<R>((resolve, reject) => {
|
||||||
worker.on('message', (result: R) => {
|
worker.on('message', (result: R) => {
|
||||||
|
if ((result as any)?.error) {
|
||||||
|
reject(new Error((result as { error: string }).error));
|
||||||
|
}
|
||||||
resolve(result);
|
resolve(result);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -90,7 +90,30 @@ export class NTQQUserApi {
|
|||||||
() => true,
|
() => true,
|
||||||
(profile) => profile.uid === uid,
|
(profile) => profile.uid === uid,
|
||||||
);
|
);
|
||||||
const RetUser: User = {
|
return profile;
|
||||||
|
}
|
||||||
|
|
||||||
|
async getUserDetailInfo(uid: string, no_cache: boolean = false): Promise<User> {
|
||||||
|
let profile = await solveAsyncProblem(async (uid) => this.fetchUserDetailInfo(uid, no_cache ? UserDetailSource.KSERVER : UserDetailSource.KDB), uid);
|
||||||
|
if (profile && profile.uin !== '0' && profile.commonExt) {
|
||||||
|
return {
|
||||||
|
...profile.simpleInfo.status,
|
||||||
|
...profile.simpleInfo.vasInfo,
|
||||||
|
...profile.commonExt,
|
||||||
|
...profile.simpleInfo.baseInfo,
|
||||||
|
...profile.simpleInfo.coreInfo,
|
||||||
|
qqLevel: profile.commonExt?.qqLevel,
|
||||||
|
age: profile.simpleInfo.baseInfo.age,
|
||||||
|
pendantId: '',
|
||||||
|
nick: profile.simpleInfo.coreInfo.nick || '',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
this.context.logger.logDebug('[NapCat] [Mark] getUserDetailInfo Mode1 Failed.');
|
||||||
|
profile = await this.fetchUserDetailInfo(uid, UserDetailSource.KSERVER);
|
||||||
|
if (profile && profile.uin === '0') {
|
||||||
|
profile.uin = await this.core.apis.UserApi.getUidByUinV2(uid) ?? '0';
|
||||||
|
}
|
||||||
|
return {
|
||||||
...profile.simpleInfo.status,
|
...profile.simpleInfo.status,
|
||||||
...profile.simpleInfo.vasInfo,
|
...profile.simpleInfo.vasInfo,
|
||||||
...profile.commonExt,
|
...profile.commonExt,
|
||||||
@@ -101,33 +124,6 @@ export class NTQQUserApi {
|
|||||||
pendantId: '',
|
pendantId: '',
|
||||||
nick: profile.simpleInfo.coreInfo.nick || '',
|
nick: profile.simpleInfo.coreInfo.nick || '',
|
||||||
};
|
};
|
||||||
return RetUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getUserDetailInfo(uid: string): Promise<User> {
|
|
||||||
let retUser = await solveAsyncProblem(async (uid) => this.fetchUserDetailInfo(uid, UserDetailSource.KDB), uid);
|
|
||||||
if (retUser && retUser.uin !== '0') {
|
|
||||||
return retUser;
|
|
||||||
}
|
|
||||||
this.context.logger.logDebug('[NapCat] [Mark] getUserDetailInfo Mode1 Failed.');
|
|
||||||
retUser = await this.fetchUserDetailInfo(uid, UserDetailSource.KSERVER);
|
|
||||||
if (retUser && retUser.uin === '0') {
|
|
||||||
retUser.uin = await this.core.apis.UserApi.getUidByUinV2(uid) ?? '0';
|
|
||||||
}
|
|
||||||
return retUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getUserDetailInfoV2(uid: string): Promise<User> {
|
|
||||||
const fallback = new Fallback<User>((user) => FallbackUtil.boolchecker(user, user !== undefined && user.uin !== '0'))
|
|
||||||
.add(() => this.fetchUserDetailInfo(uid, UserDetailSource.KDB))
|
|
||||||
.add(() => this.fetchUserDetailInfo(uid, UserDetailSource.KSERVER));
|
|
||||||
const retUser = await fallback.run().then(async (user) => {
|
|
||||||
if (user && user.uin === '0') {
|
|
||||||
user.uin = await this.core.apis.UserApi.getUidByUinV2(uid) ?? '0';
|
|
||||||
}
|
|
||||||
return user;
|
|
||||||
});
|
|
||||||
return retUser;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async modifySelfProfile(param: ModifyProfileParams) {
|
async modifySelfProfile(param: ModifyProfileParams) {
|
||||||
|
8
src/core/external/appid.json
vendored
8
src/core/external/appid.json
vendored
@@ -218,5 +218,13 @@
|
|||||||
"9.9.18-32869": {
|
"9.9.18-32869": {
|
||||||
"appid": 537271294,
|
"appid": 537271294,
|
||||||
"qua": "V1_WIN_NQ_9.9.18_32869_GW_B"
|
"qua": "V1_WIN_NQ_9.9.18_32869_GW_B"
|
||||||
|
},
|
||||||
|
"3.2.16-33139": {
|
||||||
|
"appid": 537273909,
|
||||||
|
"qua": "V1_LNX_NQ_3.2.16_33139_GW_B"
|
||||||
|
},
|
||||||
|
"9.9.18-33139": {
|
||||||
|
"appid": 537273874,
|
||||||
|
"qua": "V1_WIN_NQ_9.9.18_33139_GW_B"
|
||||||
}
|
}
|
||||||
}
|
}
|
12
src/core/external/offset.json
vendored
12
src/core/external/offset.json
vendored
@@ -290,5 +290,17 @@
|
|||||||
"3.2.16-32869-arm64": {
|
"3.2.16-32869-arm64": {
|
||||||
"send": "7226630",
|
"send": "7226630",
|
||||||
"recv": "7229F60"
|
"recv": "7229F60"
|
||||||
|
},
|
||||||
|
"9.9.18-33139-x64": {
|
||||||
|
"send": "39F5870",
|
||||||
|
"recv": "39FA070"
|
||||||
|
},
|
||||||
|
"3.2.16-33139-x64": {
|
||||||
|
"send": "A634F60",
|
||||||
|
"recv": "A638980"
|
||||||
|
},
|
||||||
|
"3.2.16-33139-arm64": {
|
||||||
|
"send": "7262BB0",
|
||||||
|
"recv": "72664E0"
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -38,12 +38,12 @@ export class NativePacketClient extends IPacketClient {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
async init(pid: number, recv: string, send: string): Promise<void> {
|
async init(_pid: number, recv: string, send: string): Promise<void> {
|
||||||
const platform = process.platform + '.' + process.arch;
|
const platform = process.platform + '.' + process.arch;
|
||||||
const moehoo_path = path.join(dirname(fileURLToPath(import.meta.url)), './moehoo/MoeHoo.' + platform + '.node');
|
const moehoo_path = path.join(dirname(fileURLToPath(import.meta.url)), './moehoo/MoeHoo.' + platform + '.node');
|
||||||
process.dlopen(this.MoeHooExport, moehoo_path, constants.dlopen.RTLD_LAZY);
|
process.dlopen(this.MoeHooExport, moehoo_path, constants.dlopen.RTLD_LAZY);
|
||||||
|
|
||||||
this.MoeHooExport.exports.InitHook?.(send, recv, (type: number, uin: string, cmd: string, seq: number, hex_data: string) => {
|
this.MoeHooExport.exports.InitHook?.(send, recv, (type: number, _uin: string, cmd: string, seq: number, hex_data: string) => {
|
||||||
const trace_id = createHash('md5').update(Buffer.from(hex_data, 'hex')).digest('hex');
|
const trace_id = createHash('md5').update(Buffer.from(hex_data, 'hex')).digest('hex');
|
||||||
if (type === 0 && this.cb.get(trace_id + 'recv')) {
|
if (type === 0 && this.cb.get(trace_id + 'recv')) {
|
||||||
//此时为send 提取seq
|
//此时为send 提取seq
|
||||||
|
@@ -1,113 +0,0 @@
|
|||||||
import { Data, WebSocket, ErrorEvent } from 'ws';
|
|
||||||
import { IPacketClient, RecvPacket } from '@/core/packet/client/baseClient';
|
|
||||||
import { LogStack } from '@/core/packet/context/clientContext';
|
|
||||||
import { NapCoreContext } from '@/core/packet/context/napCoreContext';
|
|
||||||
import { PacketLogger } from '@/core/packet/context/loggerContext';
|
|
||||||
|
|
||||||
export class WsPacketClient extends IPacketClient {
|
|
||||||
private websocket: WebSocket | null = null;
|
|
||||||
private reconnectAttempts: number = 0;
|
|
||||||
private readonly maxReconnectAttempts: number = 60; // 现在暂时不可配置
|
|
||||||
private readonly clientUrl: string;
|
|
||||||
private readonly clientUrlWrap: (url: string) => string = (url: string) => `ws://${url}/ws`;
|
|
||||||
|
|
||||||
private isInitialized: boolean = false;
|
|
||||||
private initPayload: { pid: number, recv: string, send: string } | null = null;
|
|
||||||
|
|
||||||
constructor(napCore: NapCoreContext, logger: PacketLogger, logStack: LogStack) {
|
|
||||||
super(napCore, logger, logStack);
|
|
||||||
this.clientUrl = this.napcore.config.packetServer
|
|
||||||
? this.clientUrlWrap(this.napcore.config.packetServer)
|
|
||||||
: this.clientUrlWrap('127.0.0.1:8083');
|
|
||||||
}
|
|
||||||
|
|
||||||
check(): boolean {
|
|
||||||
if (!this.napcore.config.packetServer) {
|
|
||||||
this.logStack.pushLogWarn('wsPacketClient 未配置服务器地址');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
async init(pid: number, recv: string, send: string): Promise<void> {
|
|
||||||
this.initPayload = { pid, recv, send };
|
|
||||||
await this.connectWithRetry();
|
|
||||||
}
|
|
||||||
|
|
||||||
sendCommandImpl(cmd: string, data: string, trace_id: string): void {
|
|
||||||
if (this.websocket && this.websocket.readyState === WebSocket.OPEN) {
|
|
||||||
this.websocket.send(JSON.stringify({
|
|
||||||
action: 'send',
|
|
||||||
cmd,
|
|
||||||
data,
|
|
||||||
trace_id
|
|
||||||
}));
|
|
||||||
} else {
|
|
||||||
this.logStack.pushLogWarn(`WebSocket 未连接,无法发送命令: ${cmd}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async connectWithRetry(): Promise<void> {
|
|
||||||
while (this.reconnectAttempts < this.maxReconnectAttempts) {
|
|
||||||
try {
|
|
||||||
await this.connect();
|
|
||||||
return;
|
|
||||||
} catch {
|
|
||||||
this.reconnectAttempts++;
|
|
||||||
this.logStack.pushLogWarn(`第 ${this.reconnectAttempts}/${this.maxReconnectAttempts} 次尝试重连失败!`);
|
|
||||||
await this.delay(5000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.logStack.pushLogError(`wsPacketClient 在 ${this.clientUrl} 达到最大重连次数 (${this.maxReconnectAttempts})!`);
|
|
||||||
throw new Error(`无法连接到 WebSocket 服务器:${this.clientUrl}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
private connect(): Promise<void> {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
this.websocket = new WebSocket(this.clientUrl);
|
|
||||||
this.websocket.onopen = () => {
|
|
||||||
this.available = true;
|
|
||||||
this.reconnectAttempts = 0;
|
|
||||||
this.logger.info(`wsPacketClient 已连接到 ${this.clientUrl}`);
|
|
||||||
if (!this.isInitialized && this.initPayload) {
|
|
||||||
this.websocket!.send(JSON.stringify({
|
|
||||||
action: 'init',
|
|
||||||
...this.initPayload
|
|
||||||
}));
|
|
||||||
this.isInitialized = true;
|
|
||||||
}
|
|
||||||
resolve();
|
|
||||||
};
|
|
||||||
this.websocket.onclose = () => {
|
|
||||||
this.available = false;
|
|
||||||
this.logger.warn('WebSocket 连接关闭,尝试重连...');
|
|
||||||
reject(new Error('WebSocket 连接关闭'));
|
|
||||||
};
|
|
||||||
this.websocket.onmessage = (event) => this.handleMessage(event.data).catch(err => {
|
|
||||||
this.logger.error(`处理消息时出错: ${err}`);
|
|
||||||
});
|
|
||||||
this.websocket.onerror = (event: ErrorEvent) => {
|
|
||||||
this.available = false;
|
|
||||||
this.logger.error(`WebSocket 出错: ${event.message}`);
|
|
||||||
this.websocket?.close();
|
|
||||||
reject(new Error(`WebSocket 出错: ${event.message}`));
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private delay(ms: number): Promise<void> {
|
|
||||||
return new Promise(resolve => setTimeout(resolve, ms));
|
|
||||||
}
|
|
||||||
|
|
||||||
private async handleMessage(message: Data): Promise<void> {
|
|
||||||
try {
|
|
||||||
const json: RecvPacket = JSON.parse(message.toString());
|
|
||||||
const trace_id_md5 = json.trace_id_md5;
|
|
||||||
const action = json?.type ?? 'init';
|
|
||||||
const event = this.cb.get(`${trace_id_md5}${action}`);
|
|
||||||
if (event) await event(json.data);
|
|
||||||
} catch (error) {
|
|
||||||
this.logger.error(`解析ws消息时出错: ${(error as Error).message}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,6 +1,5 @@
|
|||||||
import { IPacketClient } from '@/core/packet/client/baseClient';
|
import { IPacketClient } from '@/core/packet/client/baseClient';
|
||||||
import { NativePacketClient } from '@/core/packet/client/nativeClient';
|
import { NativePacketClient } from '@/core/packet/client/nativeClient';
|
||||||
import { WsPacketClient } from '@/core/packet/client/wsClient';
|
|
||||||
import { OidbPacket } from '@/core/packet/transformer/base';
|
import { OidbPacket } from '@/core/packet/transformer/base';
|
||||||
import { PacketLogger } from '@/core/packet/context/loggerContext';
|
import { PacketLogger } from '@/core/packet/context/loggerContext';
|
||||||
import { NapCoreContext } from '@/core/packet/context/napCoreContext';
|
import { NapCoreContext } from '@/core/packet/context/napCoreContext';
|
||||||
@@ -10,8 +9,7 @@ type clientPriorityType = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const clientPriority: clientPriorityType = {
|
const clientPriority: clientPriorityType = {
|
||||||
10: (napCore: NapCoreContext, logger: PacketLogger, logStack: LogStack) => new NativePacketClient(napCore, logger, logStack),
|
10: (napCore: NapCoreContext, logger: PacketLogger, logStack: LogStack) => new NativePacketClient(napCore, logger, logStack)
|
||||||
1: (napCore: NapCoreContext, logger: PacketLogger, logStack: LogStack) => new WsPacketClient(napCore, logger, logStack),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export class LogStack {
|
export class LogStack {
|
||||||
@@ -88,10 +86,6 @@ export class PacketClientContext {
|
|||||||
this.logger.info('使用指定的 NativePacketClient 作为后端');
|
this.logger.info('使用指定的 NativePacketClient 作为后端');
|
||||||
client = new NativePacketClient(this.napCore, this.logger, this.logStack);
|
client = new NativePacketClient(this.napCore, this.logger, this.logStack);
|
||||||
break;
|
break;
|
||||||
case 'frida':
|
|
||||||
this.logger.info('[Core] [Packet] 使用指定的 FridaPacketClient 作为后端');
|
|
||||||
client = new WsPacketClient(this.napCore, this.logger, this.logStack);
|
|
||||||
break;
|
|
||||||
case 'auto':
|
case 'auto':
|
||||||
case undefined:
|
case undefined:
|
||||||
client = this.judgeClient();
|
client = this.judgeClient();
|
||||||
|
@@ -9,15 +9,14 @@ class SetSpecialTitle extends PacketTransformer<typeof proto.OidbSvcTrpcTcpBase>
|
|||||||
}
|
}
|
||||||
|
|
||||||
build(groupCode: number, uid: string, tittle: string): OidbPacket {
|
build(groupCode: number, uid: string, tittle: string): OidbPacket {
|
||||||
const oidb_0x8FC_2_body = new NapProtoMsg(proto.OidbSvcTrpcTcp0X8FC_2_Body).encode({
|
|
||||||
targetUid: uid,
|
|
||||||
specialTitle: tittle,
|
|
||||||
expiredTime: -1,
|
|
||||||
uinName: tittle
|
|
||||||
});
|
|
||||||
const oidb_0x8FC_2 = new NapProtoMsg(proto.OidbSvcTrpcTcp0X8FC_2).encode({
|
const oidb_0x8FC_2 = new NapProtoMsg(proto.OidbSvcTrpcTcp0X8FC_2).encode({
|
||||||
groupUin: +groupCode,
|
groupUin: +groupCode,
|
||||||
body: oidb_0x8FC_2_body
|
body: {
|
||||||
|
targetUid: uid,
|
||||||
|
specialTitle: tittle,
|
||||||
|
expiredTime: -1,
|
||||||
|
uinName: tittle
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return OidbBase.build(0x8FC, 2, oidb_0x8FC_2, false, false);
|
return OidbBase.build(0x8FC, 2, oidb_0x8FC_2, false, false);
|
||||||
}
|
}
|
||||||
|
@@ -4,12 +4,12 @@ import { ProtoField, ScalarType } from '@napneko/nap-proto-core';
|
|||||||
//设置群头衔 OidbSvcTrpcTcp.0x8fc_2
|
//设置群头衔 OidbSvcTrpcTcp.0x8fc_2
|
||||||
export const OidbSvcTrpcTcp0X8FC_2_Body = {
|
export const OidbSvcTrpcTcp0X8FC_2_Body = {
|
||||||
targetUid: ProtoField(1, ScalarType.STRING),
|
targetUid: ProtoField(1, ScalarType.STRING),
|
||||||
specialTitle: ProtoField(5, ScalarType.STRING),
|
specialTitle: ProtoField(5, ScalarType.STRING, true),
|
||||||
expiredTime: ProtoField(6, ScalarType.SINT32),
|
expiredTime: ProtoField(6, ScalarType.INT32),
|
||||||
uinName: ProtoField(7, ScalarType.STRING),
|
uinName: ProtoField(7, ScalarType.STRING, true),
|
||||||
targetName: ProtoField(8, ScalarType.STRING),
|
targetName: ProtoField(8, ScalarType.STRING),
|
||||||
};
|
};
|
||||||
export const OidbSvcTrpcTcp0X8FC_2 = {
|
export const OidbSvcTrpcTcp0X8FC_2 = {
|
||||||
groupUin: ProtoField(1, ScalarType.UINT32),
|
groupUin: ProtoField(1, ScalarType.UINT32),
|
||||||
body: ProtoField(3, ScalarType.BYTES),
|
body: ProtoField(3, () => OidbSvcTrpcTcp0X8FC_2_Body),
|
||||||
};
|
};
|
||||||
|
@@ -16,7 +16,7 @@ export interface NodeIKernelBuddyService {
|
|||||||
|
|
||||||
getBuddyListFromCache(reqType: BuddyListReqType): Promise<Array<
|
getBuddyListFromCache(reqType: BuddyListReqType): Promise<Array<
|
||||||
{
|
{
|
||||||
categoryId: number,//9999应该跳过 那是兜底数据吧
|
categoryId: number,//9999为特别关心
|
||||||
categorySortId: number,//排序方式
|
categorySortId: number,//排序方式
|
||||||
categroyName: string,//分类名
|
categroyName: string,//分类名
|
||||||
categroyMbCount: number,//不懂
|
categroyMbCount: number,//不懂
|
||||||
|
@@ -207,6 +207,7 @@ interface PhotoWall {
|
|||||||
|
|
||||||
// 简单信息
|
// 简单信息
|
||||||
export interface SimpleInfo {
|
export interface SimpleInfo {
|
||||||
|
qqLevel?: QQLevel;//临时添加
|
||||||
uid?: string;
|
uid?: string;
|
||||||
uin?: string;
|
uin?: string;
|
||||||
coreInfo: CoreInfo;
|
coreInfo: CoreInfo;
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -20,6 +20,7 @@ class GetGroupInfo extends OneBotAction<Payload, OB11Group> {
|
|||||||
const data = await this.core.apis.GroupApi.fetchGroupDetail(payload.group_id.toString());
|
const data = await this.core.apis.GroupApi.fetchGroupDetail(payload.group_id.toString());
|
||||||
return {
|
return {
|
||||||
...data,
|
...data,
|
||||||
|
group_remark: '',
|
||||||
group_id: +payload.group_id,
|
group_id: +payload.group_id,
|
||||||
group_name: data.groupName,
|
group_name: data.groupName,
|
||||||
member_count: data.memberNum,
|
member_count: data.memberNum,
|
||||||
|
@@ -14,8 +14,22 @@ export default class GetFriendList extends OneBotAction<Payload, OB11User[]> {
|
|||||||
override actionName = ActionName.GetFriendList;
|
override actionName = ActionName.GetFriendList;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(_payload: Payload) {
|
||||||
//全新逻辑
|
const buddyMap = await this.core.apis.FriendApi.getBuddyV2SimpleInfoMap();
|
||||||
return OB11Construct.friends(await this.core.apis.FriendApi.getBuddy(typeof payload.no_cache === 'string' ? payload.no_cache === 'true' : !!payload.no_cache));
|
|
||||||
|
await Promise.all(
|
||||||
|
Array.from(buddyMap.values()).map(async (buddyInfo) => {
|
||||||
|
try {
|
||||||
|
const userDetail = await this.core.apis.UserApi.getUserDetailInfo(buddyInfo.coreInfo.uid);
|
||||||
|
const data = buddyMap.get(buddyInfo.coreInfo.uid);
|
||||||
|
if (data) {
|
||||||
|
data.qqLevel = userDetail.qqLevel;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
this.core.context.logger.logError('获取好友详细信息失败', error);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
|
return OB11Construct.friends(Array.from(buddyMap.values()));
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -20,16 +20,36 @@ export class OB11Construct {
|
|||||||
|
|
||||||
static friends(friends: FriendV2[]): OB11User[] {
|
static friends(friends: FriendV2[]): OB11User[] {
|
||||||
return friends.map(rawFriend => ({
|
return friends.map(rawFriend => ({
|
||||||
...rawFriend.baseInfo,
|
birthday_year: rawFriend.baseInfo.birthday_year,
|
||||||
...rawFriend.coreInfo,
|
birthday_month: rawFriend.baseInfo.birthday_month,
|
||||||
|
birthday_day: rawFriend.baseInfo.birthday_day,
|
||||||
user_id: parseInt(rawFriend.coreInfo.uin),
|
user_id: parseInt(rawFriend.coreInfo.uin),
|
||||||
|
age: rawFriend.baseInfo.age,
|
||||||
|
phone_num: rawFriend.baseInfo.phoneNum,
|
||||||
|
email: rawFriend.baseInfo.eMail,
|
||||||
|
category_id: rawFriend.baseInfo.categoryId,
|
||||||
nickname: rawFriend.coreInfo.nick ?? '',
|
nickname: rawFriend.coreInfo.nick ?? '',
|
||||||
remark: rawFriend.coreInfo.remark ?? rawFriend.coreInfo.nick,
|
remark: rawFriend.coreInfo.remark ?? rawFriend.coreInfo.nick,
|
||||||
sex: this.sex(rawFriend.baseInfo.sex),
|
sex: this.sex(rawFriend.baseInfo.sex),
|
||||||
level: 0,
|
level: rawFriend.qqLevel && calcQQLevel(rawFriend.qqLevel) || 0,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
static friend(friends: FriendV2): OB11User {
|
||||||
|
return {
|
||||||
|
birthday_year: friends.baseInfo.birthday_year,
|
||||||
|
birthday_month: friends.baseInfo.birthday_month,
|
||||||
|
birthday_day: friends.baseInfo.birthday_day,
|
||||||
|
user_id: parseInt(friends.coreInfo.uin),
|
||||||
|
age: friends.baseInfo.age,
|
||||||
|
phone_num: friends.baseInfo.phoneNum,
|
||||||
|
email: friends.baseInfo.eMail,
|
||||||
|
category_id: friends.baseInfo.categoryId,
|
||||||
|
nickname: friends.coreInfo.nick ?? '',
|
||||||
|
remark: friends.coreInfo.remark ?? friends.coreInfo.nick,
|
||||||
|
sex: this.sex(friends.baseInfo.sex),
|
||||||
|
level: 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
static groupMemberRole(role: number): OB11GroupMemberRole | undefined {
|
static groupMemberRole(role: number): OB11GroupMemberRole | undefined {
|
||||||
return {
|
return {
|
||||||
4: OB11GroupMemberRole.owner,
|
4: OB11GroupMemberRole.owner,
|
||||||
@@ -73,6 +93,7 @@ export class OB11Construct {
|
|||||||
|
|
||||||
static group(group: Group): OB11Group {
|
static group(group: Group): OB11Group {
|
||||||
return {
|
return {
|
||||||
|
group_remark: group.remarkName,
|
||||||
group_id: +group.groupCode,
|
group_id: +group.groupCode,
|
||||||
group_name: group.groupName,
|
group_name: group.groupName,
|
||||||
member_count: group.memberCount,
|
member_count: group.memberCount,
|
||||||
|
@@ -1,4 +1,10 @@
|
|||||||
export interface OB11User {
|
export interface OB11User {
|
||||||
|
birthday_year?: number; // 生日
|
||||||
|
birthday_month?: number; // 生日
|
||||||
|
birthday_day?: number; // 生日
|
||||||
|
phone_num?: string; // 手机号
|
||||||
|
email?: string; // 邮箱
|
||||||
|
category_id?: number; // 分组ID
|
||||||
user_id: number; // 用户ID
|
user_id: number; // 用户ID
|
||||||
nickname: string; // 昵称
|
nickname: string; // 昵称
|
||||||
remark?: string; // 备注
|
remark?: string; // 备注
|
||||||
@@ -57,6 +63,7 @@ export interface OB11GroupMember {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface OB11Group {
|
export interface OB11Group {
|
||||||
|
group_remark: string; // 群备注
|
||||||
group_id: number; // 群ID
|
group_id: number; // 群ID
|
||||||
group_name: string; // 群名称
|
group_name: string; // 群名称
|
||||||
member_count?: number; // 成员数量
|
member_count?: number; // 成员数量
|
||||||
|
@@ -31,6 +31,7 @@ import { WebUiDataRuntime } from '@/webui/src/helper/Data';
|
|||||||
import { napCatVersion } from '@/common/version';
|
import { napCatVersion } from '@/common/version';
|
||||||
import { NodeIO3MiscListener } from '@/core/listeners/NodeIO3MiscListener';
|
import { NodeIO3MiscListener } from '@/core/listeners/NodeIO3MiscListener';
|
||||||
import { sleep } from '@/common/helper';
|
import { sleep } from '@/common/helper';
|
||||||
|
|
||||||
// NapCat Shell App ES 入口文件
|
// NapCat Shell App ES 入口文件
|
||||||
async function handleUncaughtExceptions(logger: LogWrapper) {
|
async function handleUncaughtExceptions(logger: LogWrapper) {
|
||||||
process.on('uncaughtException', (err) => {
|
process.on('uncaughtException', (err) => {
|
||||||
@@ -114,18 +115,19 @@ async function handleLogin(
|
|||||||
quickLoginUin: string | undefined,
|
quickLoginUin: string | undefined,
|
||||||
historyLoginList: LoginListItem[]
|
historyLoginList: LoginListItem[]
|
||||||
): Promise<SelfInfo> {
|
): Promise<SelfInfo> {
|
||||||
|
let context = { isLogined: false };
|
||||||
let inner_resolve: (value: SelfInfo) => void;
|
let inner_resolve: (value: SelfInfo) => void;
|
||||||
let selfInfo: Promise<SelfInfo> = new Promise((resolve) => {
|
let selfInfo: Promise<SelfInfo> = new Promise((resolve) => {
|
||||||
inner_resolve = resolve;
|
inner_resolve = resolve;
|
||||||
});
|
});
|
||||||
// 连接服务
|
// 连接服务
|
||||||
let isLogined = false;
|
|
||||||
const loginListener = new NodeIKernelLoginListener();
|
const loginListener = new NodeIKernelLoginListener();
|
||||||
loginListener.onUserLoggedIn = (userid: string) => {
|
loginListener.onUserLoggedIn = (userid: string) => {
|
||||||
logger.logError(`当前账号(${userid})已登录,无法重复登录`);
|
logger.logError(`当前账号(${userid})已登录,无法重复登录`);
|
||||||
};
|
};
|
||||||
loginListener.onQRCodeLoginSucceed = async (loginResult) => {
|
loginListener.onQRCodeLoginSucceed = async (loginResult) => {
|
||||||
isLogined = true;
|
context.isLogined = true;
|
||||||
inner_resolve({
|
inner_resolve({
|
||||||
uid: loginResult.uid,
|
uid: loginResult.uid,
|
||||||
uin: loginResult.uin,
|
uin: loginResult.uin,
|
||||||
@@ -134,7 +136,11 @@ async function handleLogin(
|
|||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
loginListener.onLoginConnected = () => {
|
||||||
|
waitForNetworkConnection(loginService, logger).then(() => {
|
||||||
|
handleLoginInner(context, logger, loginService, quickLoginUin, historyLoginList).then().catch(e => logger.logError(e));
|
||||||
|
});
|
||||||
|
}
|
||||||
loginListener.onQRCodeGetPicture = ({ pngBase64QrcodeData, qrcodeUrl }) => {
|
loginListener.onQRCodeGetPicture = ({ pngBase64QrcodeData, qrcodeUrl }) => {
|
||||||
WebUiDataRuntime.setQQLoginQrcodeURL(qrcodeUrl);
|
WebUiDataRuntime.setQQLoginQrcodeURL(qrcodeUrl);
|
||||||
|
|
||||||
@@ -156,7 +162,7 @@ async function handleLogin(
|
|||||||
};
|
};
|
||||||
|
|
||||||
loginListener.onQRCodeSessionFailed = (errType: number, errCode: number) => {
|
loginListener.onQRCodeSessionFailed = (errType: number, errCode: number) => {
|
||||||
if (!isLogined) {
|
if (!context.isLogined) {
|
||||||
logger.logError('[Core] [Login] Login Error,ErrType: ', errType, ' ErrCode:', errCode);
|
logger.logError('[Core] [Login] Login Error,ErrType: ', errType, ' ErrCode:', errCode);
|
||||||
if (errType == 1 && errCode == 3) {
|
if (errType == 1 && errCode == 3) {
|
||||||
// 二维码过期刷新
|
// 二维码过期刷新
|
||||||
@@ -168,10 +174,12 @@ async function handleLogin(
|
|||||||
loginListener.onLoginFailed = (...args) => {
|
loginListener.onLoginFailed = (...args) => {
|
||||||
logger.logError('[Core] [Login] Login Error , ErrInfo: ', JSON.stringify(args));
|
logger.logError('[Core] [Login] Login Error , ErrInfo: ', JSON.stringify(args));
|
||||||
};
|
};
|
||||||
|
|
||||||
loginService.addKernelLoginListener(proxiedListenerOf(loginListener, logger));
|
loginService.addKernelLoginListener(proxiedListenerOf(loginListener, logger));
|
||||||
loginService.connect();
|
loginService.connect();
|
||||||
await waitForNetworkConnection(loginService, logger);
|
return await selfInfo;
|
||||||
// 等待网络
|
}
|
||||||
|
async function handleLoginInner(context: { isLogined: boolean }, logger: LogWrapper, loginService: NodeIKernelLoginService, quickLoginUin: string | undefined, historyLoginList: LoginListItem[]) {
|
||||||
WebUiDataRuntime.setQuickLoginCall(async (uin: string) => {
|
WebUiDataRuntime.setQuickLoginCall(async (uin: string) => {
|
||||||
return await new Promise((resolve) => {
|
return await new Promise((resolve) => {
|
||||||
if (uin) {
|
if (uin) {
|
||||||
@@ -197,13 +205,13 @@ async function handleLogin(
|
|||||||
.then(result => {
|
.then(result => {
|
||||||
if (result.loginErrorInfo.errMsg) {
|
if (result.loginErrorInfo.errMsg) {
|
||||||
logger.logError('快速登录错误:', result.loginErrorInfo.errMsg);
|
logger.logError('快速登录错误:', result.loginErrorInfo.errMsg);
|
||||||
if (!isLogined) loginService.getQRCodePicture();
|
if (!context.isLogined) loginService.getQRCodePicture();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch();
|
.catch();
|
||||||
} else {
|
} else {
|
||||||
logger.logError('快速登录失败,未找到该 QQ 历史登录记录,将使用二维码登录方式');
|
logger.logError('快速登录失败,未找到该 QQ 历史登录记录,将使用二维码登录方式');
|
||||||
if (!isLogined) loginService.getQRCodePicture();
|
if (!context.isLogined) loginService.getQRCodePicture();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.log('没有 -q 指令指定快速登录,将使用二维码登录方式');
|
logger.log('没有 -q 指令指定快速登录,将使用二维码登录方式');
|
||||||
@@ -222,8 +230,6 @@ async function handleLogin(
|
|||||||
WebUiDataRuntime.setQQQuickLoginList(list.map((item) => item.uin.toString()));
|
WebUiDataRuntime.setQQQuickLoginList(list.map((item) => item.uin.toString()));
|
||||||
WebUiDataRuntime.setQQNewLoginList(list);
|
WebUiDataRuntime.setQQNewLoginList(list);
|
||||||
});
|
});
|
||||||
|
|
||||||
return await selfInfo;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function initializeSession(
|
async function initializeSession(
|
||||||
@@ -285,7 +291,7 @@ async function waitForNetworkConnection(loginService: NodeIKernelLoginService, l
|
|||||||
let network_ok = false;
|
let network_ok = false;
|
||||||
let tryCount = 0;
|
let tryCount = 0;
|
||||||
while (!network_ok) {
|
while (!network_ok) {
|
||||||
network_ok = loginService.getMsfStatus() === 0;
|
network_ok = loginService.getMsfStatus() !== 3;// win 11 0连接 1未连接
|
||||||
logger.log('等待网络连接...');
|
logger.log('等待网络连接...');
|
||||||
await sleep(500);
|
await sleep(500);
|
||||||
tryCount++;
|
tryCount++;
|
||||||
|
Reference in New Issue
Block a user