mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
Compare commits
29 Commits
v4.7.31
...
forward-fi
Author | SHA1 | Date | |
---|---|---|---|
![]() |
acccb7fce8 | ||
![]() |
a47af60f58 | ||
![]() |
35f24eb806 | ||
![]() |
36e3119d34 | ||
![]() |
8ff3ad824e | ||
![]() |
556000c002 | ||
![]() |
fda050d3fe | ||
![]() |
b1047309c9 | ||
![]() |
d766c4945e | ||
![]() |
43c98c45b9 | ||
![]() |
f7556b5af3 | ||
![]() |
cd781c4cf6 | ||
![]() |
cd8698b157 | ||
![]() |
d921dcddf1 | ||
![]() |
9f318ddaef | ||
![]() |
5c35ea11c3 | ||
![]() |
3b16effff0 | ||
![]() |
d3a27ad701 | ||
![]() |
2a4589e268 | ||
![]() |
80a34c82b9 | ||
![]() |
fca7a65ee0 | ||
![]() |
30a75bc581 | ||
![]() |
7b365367f7 | ||
![]() |
3ed5f543e2 | ||
![]() |
ceea50b116 | ||
![]() |
a5455e27d1 | ||
![]() |
6f83d01321 | ||
![]() |
c453b82e9f | ||
![]() |
b7da316447 |
@@ -4,7 +4,7 @@
|
|||||||
"name": "NapCatQQ",
|
"name": "NapCatQQ",
|
||||||
"slug": "NapCat.Framework",
|
"slug": "NapCat.Framework",
|
||||||
"description": "高性能的 OneBot 11 协议实现",
|
"description": "高性能的 OneBot 11 协议实现",
|
||||||
"version": "4.7.30",
|
"version": "4.7.33",
|
||||||
"icon": "./logo.png",
|
"icon": "./logo.png",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
|
@@ -55,6 +55,7 @@
|
|||||||
"ahooks": "^3.8.4",
|
"ahooks": "^3.8.4",
|
||||||
"axios": "^1.7.9",
|
"axios": "^1.7.9",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
|
"crypto-js": "^4.2.0",
|
||||||
"echarts": "^5.5.1",
|
"echarts": "^5.5.1",
|
||||||
"event-source-polyfill": "^1.0.31",
|
"event-source-polyfill": "^1.0.31",
|
||||||
"framer-motion": "^12.0.6",
|
"framer-motion": "^12.0.6",
|
||||||
@@ -88,6 +89,7 @@
|
|||||||
"@eslint/js": "^9.19.0",
|
"@eslint/js": "^9.19.0",
|
||||||
"@react-types/shared": "^3.26.0",
|
"@react-types/shared": "^3.26.0",
|
||||||
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
||||||
|
"@types/crypto-js": "^4.2.2",
|
||||||
"@types/event-source-polyfill": "^1.0.5",
|
"@types/event-source-polyfill": "^1.0.5",
|
||||||
"@types/fabric": "^5.3.9",
|
"@types/fabric": "^5.3.9",
|
||||||
"@types/node": "^22.12.0",
|
"@types/node": "^22.12.0",
|
||||||
|
@@ -3,7 +3,7 @@ import { EventSourcePolyfill } from 'event-source-polyfill'
|
|||||||
import { LogLevel } from '@/const/enum'
|
import { LogLevel } from '@/const/enum'
|
||||||
|
|
||||||
import { serverRequest } from '@/utils/request'
|
import { serverRequest } from '@/utils/request'
|
||||||
|
import CryptoJS from "crypto-js";
|
||||||
export interface Log {
|
export interface Log {
|
||||||
level: LogLevel
|
level: LogLevel
|
||||||
message: string
|
message: string
|
||||||
@@ -17,9 +17,10 @@ export default class WebUIManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static async loginWithToken(token: string) {
|
public static async loginWithToken(token: string) {
|
||||||
|
const sha256 = CryptoJS.SHA256(token + '.napcat').toString();
|
||||||
const { data } = await serverRequest.post<ServerResponse<AuthResponse>>(
|
const { data } = await serverRequest.post<ServerResponse<AuthResponse>>(
|
||||||
'/auth/login',
|
'/auth/login',
|
||||||
{ token }
|
{ hash: sha256 }
|
||||||
)
|
)
|
||||||
return data.data.Credential
|
return data.data.Credential
|
||||||
}
|
}
|
||||||
|
@@ -47,6 +47,22 @@ export default function WebLoginPage() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 处理全局键盘事件
|
||||||
|
const handleKeyDown = (e: KeyboardEvent) => {
|
||||||
|
if (e.key === 'Enter' && !isLoading) {
|
||||||
|
onSubmit()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
document.addEventListener('keydown', handleKeyDown)
|
||||||
|
|
||||||
|
// 清理函数
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener('keydown', handleKeyDown)
|
||||||
|
}
|
||||||
|
}, [tokenValue, isLoading]) // 依赖项包含用于登录的状态
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (token) {
|
if (token) {
|
||||||
onSubmit()
|
onSubmit()
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
"name": "napcat",
|
"name": "napcat",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "4.7.30",
|
"version": "4.7.33",
|
||||||
"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",
|
||||||
@@ -26,6 +26,7 @@
|
|||||||
"@napneko/nap-proto-core": "^0.0.4",
|
"@napneko/nap-proto-core": "^0.0.4",
|
||||||
"@rollup/plugin-node-resolve": "^16.0.0",
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
||||||
"@rollup/plugin-typescript": "^12.1.2",
|
"@rollup/plugin-typescript": "^12.1.2",
|
||||||
|
"@sinclair/typebox": "^0.34.9",
|
||||||
"@types/cors": "^2.8.17",
|
"@types/cors": "^2.8.17",
|
||||||
"@types/express": "^5.0.0",
|
"@types/express": "^5.0.0",
|
||||||
"@types/multer": "^1.4.12",
|
"@types/multer": "^1.4.12",
|
||||||
@@ -37,9 +38,9 @@
|
|||||||
"@types/ws": "^8.5.12",
|
"@types/ws": "^8.5.12",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
||||||
"@typescript-eslint/parser": "^8.3.0",
|
"@typescript-eslint/parser": "^8.3.0",
|
||||||
|
"ajv": "^8.13.0",
|
||||||
"async-mutex": "^0.5.0",
|
"async-mutex": "^0.5.0",
|
||||||
"commander": "^13.0.0",
|
"commander": "^13.0.0",
|
||||||
"compressing": "^1.10.1",
|
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"esbuild": "0.25.0",
|
"esbuild": "0.25.0",
|
||||||
"eslint": "^9.14.0",
|
"eslint": "^9.14.0",
|
||||||
@@ -52,14 +53,14 @@
|
|||||||
"image-size": "^1.1.1",
|
"image-size": "^1.1.1",
|
||||||
"json5": "^2.2.3",
|
"json5": "^2.2.3",
|
||||||
"multer": "^1.4.5-lts.1",
|
"multer": "^1.4.5-lts.1",
|
||||||
"napcat.protobuf": "^1.1.4",
|
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.3.3",
|
||||||
"typescript-eslint": "^8.13.0",
|
"typescript-eslint": "^8.13.0",
|
||||||
"vite": "^6.0.1",
|
"vite": "^6.0.1",
|
||||||
"vite-plugin-cp": "^6.0.0",
|
"vite-plugin-cp": "^6.0.0",
|
||||||
"vite-tsconfig-paths": "^5.1.0",
|
"vite-tsconfig-paths": "^5.1.0",
|
||||||
|
"napcat.protobuf": "^1.1.4",
|
||||||
"winston": "^3.17.0",
|
"winston": "^3.17.0",
|
||||||
"zod": "^3.24.2"
|
"compressing": "^1.10.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "^5.0.0",
|
"express": "^5.0.0",
|
||||||
|
@@ -1,26 +0,0 @@
|
|||||||
import { z } from 'zod';
|
|
||||||
|
|
||||||
const boolean = () => z.preprocess(
|
|
||||||
val => val === null || val === undefined
|
|
||||||
? val
|
|
||||||
: typeof val === 'string' && (val.toLowerCase() === 'false' || val === '0')
|
|
||||||
? false
|
|
||||||
: Boolean(val),
|
|
||||||
z.boolean()
|
|
||||||
);
|
|
||||||
|
|
||||||
const number = () => z.preprocess(
|
|
||||||
val => val === null || val === undefined
|
|
||||||
? val
|
|
||||||
: typeof val !== 'number' ? Number(val) : val,
|
|
||||||
z.number()
|
|
||||||
);
|
|
||||||
|
|
||||||
const string = () => z.preprocess(
|
|
||||||
val => val === null || val === undefined
|
|
||||||
? val
|
|
||||||
: typeof val !== 'string' ? String(val) : val,
|
|
||||||
z.string()
|
|
||||||
);
|
|
||||||
|
|
||||||
export const coerce = { boolean, number, string };
|
|
@@ -2,20 +2,22 @@ import path from 'node:path';
|
|||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
import type { NapCatCore } from '@/core';
|
import type { NapCatCore } from '@/core';
|
||||||
import json5 from 'json5';
|
import json5 from 'json5';
|
||||||
import { z } from 'zod';
|
import Ajv, { AnySchema, ValidateFunction } from 'ajv';
|
||||||
|
|
||||||
export abstract class ConfigBase<T> {
|
export abstract class ConfigBase<T> {
|
||||||
name: string;
|
name: string;
|
||||||
core: NapCatCore;
|
core: NapCatCore;
|
||||||
configPath: string;
|
configPath: string;
|
||||||
configData: T = {} as T;
|
configData: T = {} as T;
|
||||||
schema: z.ZodType<T>;
|
ajv: Ajv;
|
||||||
|
validate: ValidateFunction<T>;
|
||||||
|
|
||||||
protected constructor(name: string, core: NapCatCore, configPath: string, schema: z.ZodType<T>) {
|
protected constructor(name: string, core: NapCatCore, configPath: string, ConfigSchema: AnySchema) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.core = core;
|
this.core = core;
|
||||||
this.configPath = configPath;
|
this.configPath = configPath;
|
||||||
this.schema = schema;
|
this.ajv = new Ajv({ useDefaults: true, coerceTypes: true });
|
||||||
|
this.validate = this.ajv.compile<T>(ConfigSchema);
|
||||||
fs.mkdirSync(this.configPath, { recursive: true });
|
fs.mkdirSync(this.configPath, { recursive: true });
|
||||||
this.read();
|
this.read();
|
||||||
}
|
}
|
||||||
@@ -40,16 +42,11 @@ export abstract class ConfigBase<T> {
|
|||||||
|
|
||||||
private loadConfig(configPath: string): T {
|
private loadConfig(configPath: string): T {
|
||||||
try {
|
try {
|
||||||
let configData = json5.parse(fs.readFileSync(configPath, 'utf-8'));
|
let newConfigData = json5.parse(fs.readFileSync(configPath, 'utf-8'));
|
||||||
const result = this.schema.safeParse(configData);
|
this.validate(newConfigData);
|
||||||
|
this.configData = newConfigData;
|
||||||
if (result.success) {
|
this.core.context.logger.logDebug(`[Core] [Config] 配置文件${configPath}加载`, this.configData);
|
||||||
this.configData = result.data;
|
return this.configData;
|
||||||
this.core.context.logger.logDebug(`[Core] [Config] 配置文件${configPath}加载`, this.configData);
|
|
||||||
return this.configData;
|
|
||||||
} else {
|
|
||||||
throw new Error(`配置文件验证失败: ${result.error.message}`);
|
|
||||||
}
|
|
||||||
} catch (e: unknown) {
|
} catch (e: unknown) {
|
||||||
this.handleError(e, '读取配置文件时发生错误');
|
this.handleError(e, '读取配置文件时发生错误');
|
||||||
return {} as T;
|
return {} as T;
|
||||||
@@ -58,14 +55,10 @@ export abstract class ConfigBase<T> {
|
|||||||
|
|
||||||
save(newConfigData: T = this.configData): void {
|
save(newConfigData: T = this.configData): void {
|
||||||
const configPath = this.getConfigPath(this.core.selfInfo.uin);
|
const configPath = this.getConfigPath(this.core.selfInfo.uin);
|
||||||
|
this.validate(newConfigData);
|
||||||
|
this.configData = newConfigData;
|
||||||
try {
|
try {
|
||||||
const result = this.schema.safeParse(newConfigData);
|
fs.writeFileSync(configPath, JSON.stringify(this.configData, null, 2));
|
||||||
if (result.success) {
|
|
||||||
this.configData = result.data;
|
|
||||||
fs.writeFileSync(configPath, JSON.stringify(this.configData, null, 2));
|
|
||||||
} else {
|
|
||||||
throw new Error(`配置文件验证失败: ${result.error.message}`);
|
|
||||||
}
|
|
||||||
} catch (e: unknown) {
|
} catch (e: unknown) {
|
||||||
this.handleError(e, `保存配置文件 ${configPath} 时发生错误:`);
|
this.handleError(e, `保存配置文件 ${configPath} 时发生错误:`);
|
||||||
}
|
}
|
||||||
@@ -74,8 +67,6 @@ export abstract class ConfigBase<T> {
|
|||||||
private handleError(e: unknown, message: string): void {
|
private handleError(e: unknown, message: string): void {
|
||||||
if (e instanceof SyntaxError) {
|
if (e instanceof SyntaxError) {
|
||||||
this.core.context.logger.logError('[Core] [Config] 操作配置文件格式错误,请检查配置文件:', e.message);
|
this.core.context.logger.logError('[Core] [Config] 操作配置文件格式错误,请检查配置文件:', e.message);
|
||||||
} else if (e instanceof z.ZodError) {
|
|
||||||
this.core.context.logger.logError('[Core] [Config] 配置文件验证错误:', e.message);
|
|
||||||
} else {
|
} else {
|
||||||
this.core.context.logger.logError(`[Core] [Config] ${message}:`, (e as Error).message);
|
this.core.context.logger.logError(`[Core] [Config] ${message}:`, (e as Error).message);
|
||||||
}
|
}
|
||||||
|
@@ -182,28 +182,28 @@ export async function uriToLocalFile(dir: string, uri: string, filename: string
|
|||||||
const filePath = path.join(dir, filename);
|
const filePath = path.join(dir, filename);
|
||||||
|
|
||||||
switch (UriType) {
|
switch (UriType) {
|
||||||
case FileUriType.Local: {
|
case FileUriType.Local: {
|
||||||
const fileExt = path.extname(HandledUri);
|
const fileExt = path.extname(HandledUri);
|
||||||
const localFileName = path.basename(HandledUri, fileExt) + fileExt;
|
const localFileName = path.basename(HandledUri, fileExt) + fileExt;
|
||||||
const tempFilePath = path.join(dir, filename + fileExt);
|
const tempFilePath = path.join(dir, filename + fileExt);
|
||||||
fs.copyFileSync(HandledUri, tempFilePath);
|
fs.copyFileSync(HandledUri, tempFilePath);
|
||||||
return { success: true, errMsg: '', fileName: localFileName, path: tempFilePath };
|
return { success: true, errMsg: '', fileName: localFileName, path: tempFilePath };
|
||||||
}
|
}
|
||||||
|
|
||||||
case FileUriType.Remote: {
|
case FileUriType.Remote: {
|
||||||
const buffer = await httpDownload({ url: HandledUri, headers: headers ?? {} });
|
const buffer = await httpDownload({ url: HandledUri, headers: headers ?? {} });
|
||||||
fs.writeFileSync(filePath, buffer);
|
fs.writeFileSync(filePath, buffer);
|
||||||
return { success: true, errMsg: '', fileName: filename, path: filePath };
|
return { success: true, errMsg: '', fileName: filename, path: filePath };
|
||||||
}
|
}
|
||||||
|
|
||||||
case FileUriType.Base64: {
|
case FileUriType.Base64: {
|
||||||
const base64 = HandledUri.replace(/^base64:\/\//, '');
|
const base64 = HandledUri.replace(/^base64:\/\//, '');
|
||||||
const base64Buffer = Buffer.from(base64, 'base64');
|
const base64Buffer = Buffer.from(base64, 'base64');
|
||||||
fs.writeFileSync(filePath, base64Buffer);
|
fs.writeFileSync(filePath, base64Buffer);
|
||||||
return { success: true, errMsg: '', fileName: filename, path: filePath };
|
return { success: true, errMsg: '', fileName: filename, path: filePath };
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return { success: false, errMsg: `识别URL失败, uri= ${uri}`, fileName: '', path: '' };
|
return { success: false, errMsg: `识别URL失败, uri= ${uri}`, fileName: '', path: '' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1 +1 @@
|
|||||||
export const napCatVersion = '4.7.30';
|
export const napCatVersion = '4.7.33';
|
||||||
|
@@ -9,7 +9,7 @@ export async function runTask<T, R>(workerScript: string, taskData: T): Promise<
|
|||||||
console.error('Worker Log--->:', (result as { log: string }).log);
|
console.error('Worker Log--->:', (result as { log: string }).log);
|
||||||
}
|
}
|
||||||
if ((result as any)?.error) {
|
if ((result as any)?.error) {
|
||||||
reject(new Error('Worker error: ' + (result as { error: string }).error));
|
reject(new Error("Worker error: " + (result as { error: string }).error));
|
||||||
}
|
}
|
||||||
resolve(result);
|
resolve(result);
|
||||||
});
|
});
|
||||||
|
@@ -44,7 +44,7 @@ export class NTQQFileApi {
|
|||||||
'https://secret-service.bietiaop.com/rkeys',
|
'https://secret-service.bietiaop.com/rkeys',
|
||||||
'http://ss.xingzhige.com/music_card/rkey',
|
'http://ss.xingzhige.com/music_card/rkey',
|
||||||
],
|
],
|
||||||
this.context.logger
|
this.context.logger
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -308,18 +308,18 @@ export class NTQQFileApi {
|
|||||||
element.elementType === ElementType.FILE
|
element.elementType === ElementType.FILE
|
||||||
) {
|
) {
|
||||||
switch (element.elementType) {
|
switch (element.elementType) {
|
||||||
case ElementType.PIC:
|
case ElementType.PIC:
|
||||||
element.picElement!.sourcePath = elementResults?.[elementIndex] ?? '';
|
element.picElement!.sourcePath = elementResults?.[elementIndex] ?? '';
|
||||||
break;
|
break;
|
||||||
case ElementType.VIDEO:
|
case ElementType.VIDEO:
|
||||||
element.videoElement!.filePath = elementResults?.[elementIndex] ?? '';
|
element.videoElement!.filePath = elementResults?.[elementIndex] ?? '';
|
||||||
break;
|
break;
|
||||||
case ElementType.PTT:
|
case ElementType.PTT:
|
||||||
element.pttElement!.filePath = elementResults?.[elementIndex] ?? '';
|
element.pttElement!.filePath = elementResults?.[elementIndex] ?? '';
|
||||||
break;
|
break;
|
||||||
case ElementType.FILE:
|
case ElementType.FILE:
|
||||||
element.fileElement!.filePath = elementResults?.[elementIndex] ?? '';
|
element.fileElement!.filePath = elementResults?.[elementIndex] ?? '';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
elementIndex++;
|
elementIndex++;
|
||||||
}
|
}
|
||||||
|
12
src/core/external/appid.json
vendored
12
src/core/external/appid.json
vendored
@@ -246,5 +246,17 @@
|
|||||||
"9.9.19-34362": {
|
"9.9.19-34362": {
|
||||||
"appid": 537279260,
|
"appid": 537279260,
|
||||||
"qua": "V1_WIN_NQ_9.9.19_34362_GW_B"
|
"qua": "V1_WIN_NQ_9.9.19_34362_GW_B"
|
||||||
|
},
|
||||||
|
"3.2.17-34362": {
|
||||||
|
"appid": 537279296,
|
||||||
|
"qua": "V1_LNX_NQ_3.2.17_34362_GW_B"
|
||||||
|
},
|
||||||
|
"9.9.19-34467": {
|
||||||
|
"appid": 537282256,
|
||||||
|
"qua": "V1_WIN_NQ_9.9.19_34467_GW_B"
|
||||||
|
},
|
||||||
|
"3.2.17-34467": {
|
||||||
|
"appid": 537282292,
|
||||||
|
"qua": "V1_LNX_NQ_3.2.17_34467_GW_B"
|
||||||
}
|
}
|
||||||
}
|
}
|
4
src/core/external/offset.json
vendored
4
src/core/external/offset.json
vendored
@@ -330,5 +330,9 @@
|
|||||||
"9.9.19-34362-x64":{
|
"9.9.19-34362-x64":{
|
||||||
"send": "3BD80D0",
|
"send": "3BD80D0",
|
||||||
"recv": "3BDC8D0"
|
"recv": "3BDC8D0"
|
||||||
|
},
|
||||||
|
"9.9.19-34467-x64": {
|
||||||
|
"send": "3BD8690",
|
||||||
|
"recv": "3BDCE90"
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,22 +1,22 @@
|
|||||||
import { ConfigBase } from '@/common/config-base';
|
import { ConfigBase } from '@/common/config-base';
|
||||||
import { NapCatCore } from '@/core';
|
import { NapCatCore } from '@/core';
|
||||||
import { coerce } from '@/common/coerce';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { z } from 'zod';
|
import { AnySchema } from 'ajv';
|
||||||
|
|
||||||
export const NapcatConfigSchema = z.object({
|
export const NapcatConfigSchema = Type.Object({
|
||||||
fileLog: coerce.boolean().default(false),
|
fileLog: Type.Boolean({ default: false }),
|
||||||
consoleLog: coerce.boolean().default(true),
|
consoleLog: Type.Boolean({ default: true }),
|
||||||
fileLogLevel: coerce.string().default('debug'),
|
fileLogLevel: Type.String({ default: 'debug' }),
|
||||||
consoleLogLevel: coerce.string().default('info'),
|
consoleLogLevel: Type.String({ default: 'info' }),
|
||||||
packetBackend: coerce.string().default('auto'),
|
packetBackend: Type.String({ default: 'auto' }),
|
||||||
packetServer: coerce.string().default(''),
|
packetServer: Type.String({ default: '' }),
|
||||||
o3HookMode: coerce.number().default(0),
|
o3HookMode: Type.Number({ default: 0 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
export type NapcatConfig = z.infer<typeof NapcatConfigSchema>;
|
export type NapcatConfig = Static<typeof NapcatConfigSchema>;
|
||||||
|
|
||||||
export class NapCatConfigLoader extends ConfigBase<NapcatConfig> {
|
export class NapCatConfigLoader extends ConfigBase<NapcatConfig> {
|
||||||
constructor(core: NapCatCore, configPath: string, schema: z.ZodType<any>) {
|
constructor(core: NapCatCore, configPath: string, schema: AnySchema) {
|
||||||
super('napcat', core, configPath, schema);
|
super('napcat', core, configPath, schema);
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -38,13 +38,15 @@ export async function NCoreInitFramework(
|
|||||||
const logger = new LogWrapper(pathWrapper.logsPath);
|
const logger = new LogWrapper(pathWrapper.logsPath);
|
||||||
const basicInfoWrapper = new QQBasicInfoWrapper({ logger });
|
const basicInfoWrapper = new QQBasicInfoWrapper({ logger });
|
||||||
const wrapper = loadQQWrapper(basicInfoWrapper.getFullQQVesion());
|
const wrapper = loadQQWrapper(basicInfoWrapper.getFullQQVesion());
|
||||||
downloadFFmpegIfNotExists(logger).then(({ path, reset }) => {
|
if (!process.env['NAPCAT_DISABLE_FFMPEG_DOWNLOAD']) {
|
||||||
if (reset && path) {
|
downloadFFmpegIfNotExists(logger).then(({ path, reset }) => {
|
||||||
FFmpegService.setFfmpegPath(path,logger);
|
if (reset && path) {
|
||||||
}
|
FFmpegService.setFfmpegPath(path, logger);
|
||||||
}).catch(e => {
|
}
|
||||||
logger.logError('[Ffmpeg] Error:', e);
|
}).catch(e => {
|
||||||
});
|
logger.logError('[Ffmpeg] Error:', e);
|
||||||
|
});
|
||||||
|
}
|
||||||
//直到登录成功后,执行下一步
|
//直到登录成功后,执行下一步
|
||||||
const selfInfo = await new Promise<SelfInfo>((resolveSelfInfo) => {
|
const selfInfo = await new Promise<SelfInfo>((resolveSelfInfo) => {
|
||||||
const loginListener = new NodeIKernelLoginListener();
|
const loginListener = new NodeIKernelLoginListener();
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
import { ActionName, BaseCheckResult } from './router';
|
import { ActionName, BaseCheckResult } from './router';
|
||||||
|
import Ajv, { ErrorObject, ValidateFunction } from 'ajv';
|
||||||
import { NapCatCore } from '@/core';
|
import { NapCatCore } from '@/core';
|
||||||
import { NapCatOneBot11Adapter, OB11Return } from '@/onebot';
|
import { NapCatOneBot11Adapter, OB11Return } from '@/onebot';
|
||||||
import { NetworkAdapterConfig } from '../config/config';
|
import { NetworkAdapterConfig } from '../config/config';
|
||||||
import { z } from 'zod';
|
import { TSchema } from '@sinclair/typebox';
|
||||||
|
|
||||||
export class OB11Response {
|
export class OB11Response {
|
||||||
private static createResponse<T>(data: T, status: string, retcode: number, message: string = '', echo: unknown = null): OB11Return<T> {
|
private static createResponse<T>(data: T, status: string, retcode: number, message: string = '', echo: unknown = null): OB11Return<T> {
|
||||||
@@ -32,7 +33,8 @@ export class OB11Response {
|
|||||||
export abstract class OneBotAction<PayloadType, ReturnDataType> {
|
export abstract class OneBotAction<PayloadType, ReturnDataType> {
|
||||||
actionName: typeof ActionName[keyof typeof ActionName] = ActionName.Unknown;
|
actionName: typeof ActionName[keyof typeof ActionName] = ActionName.Unknown;
|
||||||
core: NapCatCore;
|
core: NapCatCore;
|
||||||
payloadSchema?: z.ZodType<PayloadType, z.ZodTypeDef, unknown> = undefined;
|
private validate?: ValidateFunction<unknown> = undefined;
|
||||||
|
payloadSchema?: TSchema = undefined;
|
||||||
obContext: NapCatOneBot11Adapter;
|
obContext: NapCatOneBot11Adapter;
|
||||||
|
|
||||||
constructor(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
|
constructor(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
|
||||||
@@ -40,39 +42,28 @@ export abstract class OneBotAction<PayloadType, ReturnDataType> {
|
|||||||
this.core = core;
|
this.core = core;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected async check(payload: unknown): Promise<BaseCheckResult & { parsedPayload?: PayloadType }> {
|
protected async check(payload: PayloadType): Promise<BaseCheckResult> {
|
||||||
if (!this.payloadSchema) {
|
if (this.payloadSchema) {
|
||||||
return { valid: true, parsedPayload: payload as PayloadType };
|
this.validate = new Ajv({ allowUnionTypes: true, useDefaults: true, coerceTypes: true }).compile(this.payloadSchema);
|
||||||
}
|
}
|
||||||
|
if (this.validate && !this.validate(payload)) {
|
||||||
try {
|
const errors = this.validate.errors as ErrorObject[];
|
||||||
// 使用 zod 验证并转换数据,并返回解析后的数据
|
const errorMessages = errors.map(e => `Key: ${e.instancePath.split('/').slice(1).join('.')}, Message: ${e.message}`);
|
||||||
const parsedPayload = this.payloadSchema.parse(payload) as PayloadType;
|
|
||||||
return { valid: true, parsedPayload };
|
|
||||||
} catch (error) {
|
|
||||||
if (error instanceof z.ZodError) {
|
|
||||||
const errorMessages = error.errors.map(e =>
|
|
||||||
`Key: ${e.path.join('.')}, Message: ${e.message}`
|
|
||||||
);
|
|
||||||
return {
|
|
||||||
valid: false,
|
|
||||||
message: errorMessages.join('\n') || '未知错误',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
valid: false,
|
valid: false,
|
||||||
message: '验证过程中发生未知错误'
|
message: errorMessages.join('\n') ?? '未知错误',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
return { valid: true };
|
||||||
}
|
}
|
||||||
|
|
||||||
public async handle(payload: unknown, adaptername: string, config: NetworkAdapterConfig): Promise<OB11Return<ReturnDataType | null>> {
|
public async handle(payload: PayloadType, adaptername: string, config: NetworkAdapterConfig): Promise<OB11Return<ReturnDataType | null>> {
|
||||||
const result = await this.check(payload);
|
const result = await this.check(payload);
|
||||||
if (!result.valid) {
|
if (!result.valid) {
|
||||||
return OB11Response.error(result.message!, 400);
|
return OB11Response.error(result.message, 400);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const resData = await this._handle(result.parsedPayload as PayloadType, adaptername, config);
|
const resData = await this._handle(payload, adaptername, config);
|
||||||
return OB11Response.ok(resData);
|
return OB11Response.ok(resData);
|
||||||
} catch (e: unknown) {
|
} catch (e: unknown) {
|
||||||
this.core.context.logger.logError('发生错误', e);
|
this.core.context.logger.logError('发生错误', e);
|
||||||
@@ -80,13 +71,13 @@ export abstract class OneBotAction<PayloadType, ReturnDataType> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async websocketHandle(payload: unknown, echo: unknown, adaptername: string, config: NetworkAdapterConfig): Promise<OB11Return<ReturnDataType | null>> {
|
public async websocketHandle(payload: PayloadType, echo: unknown, adaptername: string, config: NetworkAdapterConfig): Promise<OB11Return<ReturnDataType | null>> {
|
||||||
const result = await this.check(payload);
|
const result = await this.check(payload);
|
||||||
if (!result.valid) {
|
if (!result.valid) {
|
||||||
return OB11Response.error(result.message!, 1400, echo);
|
return OB11Response.error(result.message, 1400, echo);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const resData = await this._handle(result.parsedPayload as PayloadType, adaptername, config);
|
const resData = await this._handle(payload, adaptername, config);
|
||||||
return OB11Response.ok(resData, echo);
|
return OB11Response.ok(resData, echo);
|
||||||
} catch (e: unknown) {
|
} catch (e: unknown) {
|
||||||
this.core.context.logger.logError('发生错误', e);
|
this.core.context.logger.logError('发生错误', e);
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OneBotAction } from '../OneBotAction';
|
import { OneBotAction } from '../OneBotAction';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
bot_appid: coerce.string(),
|
bot_appid: Type.String(),
|
||||||
button_id: coerce.string().default(''),
|
button_id: Type.String({ default: '' }),
|
||||||
callback_data: coerce.string().default(''),
|
callback_data: Type.String({ default: '' }),
|
||||||
msg_seq: coerce.string().default('10086'),
|
msg_seq: Type.String({ default: '10086' }),
|
||||||
});
|
});
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
|
||||||
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class ClickInlineKeyboardButton extends OneBotAction<Payload, unknown> {
|
export class ClickInlineKeyboardButton extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.ClickInlineKeyboardButton;
|
override actionName = ActionName.ClickInlineKeyboardButton;
|
||||||
@@ -25,6 +25,6 @@ export class ClickInlineKeyboardButton extends OneBotAction<Payload, unknown> {
|
|||||||
callback_data: payload.callback_data,
|
callback_data: payload.callback_data,
|
||||||
dmFlag: 0,
|
dmFlag: 0,
|
||||||
chatType: 2
|
chatType: 2
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
rawData: coerce.string(),
|
rawData: Type.String(),
|
||||||
brief: coerce.string(),
|
brief: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class CreateCollection extends OneBotAction<Payload, unknown> {
|
export class CreateCollection extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.CreateCollection;
|
override actionName = ActionName.CreateCollection;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
count: coerce.number().default(48),
|
count: Type.Union([Type.Number(), Type.String()], { default: 48 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class FetchCustomFace extends OneBotAction<Payload, string[]> {
|
export class FetchCustomFace extends OneBotAction<Payload, string[]> {
|
||||||
override actionName = ActionName.FetchCustomFace;
|
override actionName = ActionName.FetchCustomFace;
|
||||||
|
@@ -1,17 +1,17 @@
|
|||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { type NTQQMsgApi } from '@/core/apis';
|
import { type NTQQMsgApi } from '@/core/apis';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
emojiId: coerce.string(),
|
emojiId: Type.Union([Type.Number(), Type.String()]),
|
||||||
emojiType: coerce.string(),
|
emojiType: Type.Union([Type.Number(), Type.String()]),
|
||||||
count: coerce.number().default(20),
|
count: Type.Union([Type.Number(), Type.String()], { default: 20 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class FetchEmojiLike extends OneBotAction<Payload, Awaited<ReturnType<NTQQMsgApi['getMsgEmojiLikesList']>>> {
|
export class FetchEmojiLike extends OneBotAction<Payload, Awaited<ReturnType<NTQQMsgApi['getMsgEmojiLikesList']>>> {
|
||||||
override actionName = ActionName.FetchEmojiLike;
|
override actionName = ActionName.FetchEmojiLike;
|
||||||
@@ -23,7 +23,7 @@ export class FetchEmojiLike extends OneBotAction<Payload, Awaited<ReturnType<NTQ
|
|||||||
const msg = (await this.core.apis.MsgApi.getMsgsByMsgId(msgIdPeer.Peer, [msgIdPeer.MsgId])).msgList[0];
|
const msg = (await this.core.apis.MsgApi.getMsgsByMsgId(msgIdPeer.Peer, [msgIdPeer.MsgId])).msgList[0];
|
||||||
if (!msg) throw new Error('消息不存在');
|
if (!msg) throw new Error('消息不存在');
|
||||||
return await this.core.apis.MsgApi.getMsgEmojiLikesList(
|
return await this.core.apis.MsgApi.getMsgEmojiLikesList(
|
||||||
msgIdPeer.Peer, msg.msgSeq, payload.emojiId, payload.emojiType, +payload.count
|
msgIdPeer.Peer, msg.msgSeq, payload.emojiId.toString(), payload.emojiType.toString(), +payload.count
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
chat_type: coerce.number().default(1),
|
chat_type: Type.Union([Type.Union([Type.Number(), Type.String()])], { default: 1 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface GetAiCharactersResponse {
|
interface GetAiCharactersResponse {
|
||||||
type: string;
|
type: string;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { type NTQQCollectionApi } from '@/core/apis/collection';
|
import { type NTQQCollectionApi } from '@/core/apis/collection';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
category: coerce.number(),
|
category: Type.Union([Type.Number(), Type.String()]),
|
||||||
count: coerce.number().default(1),
|
count: Type.Union([Type.Union([Type.Number(), Type.String()])], { default: 1 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetCollectionList extends OneBotAction<Payload, Awaited<ReturnType<NTQQCollectionApi['getAllCollection']>>> {
|
export class GetCollectionList extends OneBotAction<Payload, Awaited<ReturnType<NTQQCollectionApi['getAllCollection']>>> {
|
||||||
override actionName = ActionName.GetCollectionList;
|
override actionName = ActionName.GetCollectionList;
|
||||||
|
@@ -1,18 +1,17 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
const SchemaData = Type.Object({
|
||||||
const SchemaData = z.object({
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
group_id: coerce.string(),
|
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupInfoEx extends OneBotAction<Payload, unknown> {
|
export class GetGroupInfoEx extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.GetGroupInfoEx;
|
override actionName = ActionName.GetGroupInfoEx;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
return (await this.core.apis.GroupApi.getGroupExtFE0Info([payload.group_id])).result.groupExtInfos.get(payload.group_id);
|
return (await this.core.apis.GroupApi.getGroupExtFE0Info([payload.group_id.toString()])).result.groupExtInfos.get(payload.group_id.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,38 +2,38 @@ import { ActionName } from '@/onebot/action/router';
|
|||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { MiniAppInfo, MiniAppInfoHelper } from '@/core/packet/utils/helper/miniAppHelper';
|
import { MiniAppInfo, MiniAppInfoHelper } from '@/core/packet/utils/helper/miniAppHelper';
|
||||||
import { MiniAppData, MiniAppRawData, MiniAppReqCustomParams, MiniAppReqParams } from '@/core/packet/entities/miniApp';
|
import { MiniAppData, MiniAppRawData, MiniAppReqCustomParams, MiniAppReqParams } from '@/core/packet/entities/miniApp';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.union([
|
const SchemaData = Type.Union([
|
||||||
z.object({
|
Type.Object({
|
||||||
type: z.union([z.literal('bili'), z.literal('weibo')]),
|
type: Type.Union([Type.Literal('bili'), Type.Literal('weibo')]),
|
||||||
title: coerce.string(),
|
title: Type.String(),
|
||||||
desc: coerce.string(),
|
desc: Type.String(),
|
||||||
picUrl: coerce.string(),
|
picUrl: Type.String(),
|
||||||
jumpUrl: coerce.string(),
|
jumpUrl: Type.String(),
|
||||||
webUrl: coerce.string().optional(),
|
webUrl: Type.Optional(Type.String()),
|
||||||
rawArkData: coerce.string().optional()
|
rawArkData: Type.Optional(Type.Union([Type.String()]))
|
||||||
}),
|
}),
|
||||||
z.object({
|
Type.Object({
|
||||||
title: coerce.string(),
|
title: Type.String(),
|
||||||
desc: coerce.string(),
|
desc: Type.String(),
|
||||||
picUrl: coerce.string(),
|
picUrl: Type.String(),
|
||||||
jumpUrl: coerce.string(),
|
jumpUrl: Type.String(),
|
||||||
iconUrl: coerce.string(),
|
iconUrl: Type.String(),
|
||||||
webUrl: coerce.string().optional(),
|
webUrl: Type.Optional(Type.String()),
|
||||||
appId: coerce.string(),
|
appId: Type.String(),
|
||||||
scene: z.union([coerce.number(), coerce.string()]),
|
scene: Type.Union([Type.Number(), Type.String()]),
|
||||||
templateType: z.union([coerce.number(), coerce.string()]),
|
templateType: Type.Union([Type.Number(), Type.String()]),
|
||||||
businessType: z.union([coerce.number(), coerce.string()]),
|
businessType: Type.Union([Type.Number(), Type.String()]),
|
||||||
verType: z.union([coerce.number(), coerce.string()]),
|
verType: Type.Union([Type.Number(), Type.String()]),
|
||||||
shareType: z.union([coerce.number(), coerce.string()]),
|
shareType: Type.Union([Type.Number(), Type.String()]),
|
||||||
versionId: coerce.string(),
|
versionId: Type.String(),
|
||||||
sdkId: coerce.string(),
|
sdkId: Type.String(),
|
||||||
withShareTicket: z.union([coerce.number(), coerce.string()]),
|
withShareTicket: Type.Union([Type.Number(), Type.String()]),
|
||||||
rawArkData: coerce.string().optional()
|
rawArkData: Type.Optional(Type.Union([Type.String()]))
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetMiniAppArk extends GetPacketStatusDepends<Payload, {
|
export class GetMiniAppArk extends GetPacketStatusDepends<Payload, {
|
||||||
data: MiniAppData | MiniAppRawData
|
data: MiniAppData | MiniAppRawData
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { NTVoteInfo } from '@/core';
|
import { NTVoteInfo } from '@/core';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Type, Static } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string().optional(),
|
user_id: Type.Optional(Type.Union([Type.Number(), Type.String()])),
|
||||||
start: coerce.number().default(0),
|
start: Type.Union([Type.Number(), Type.String()], { default: 0 }),
|
||||||
count: coerce.number().default(10),
|
count: Type.Union([Type.Number(), Type.String()], { default: 10 })
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetProfileLike extends OneBotAction<Payload, {
|
export class GetProfileLike extends OneBotAction<Payload, {
|
||||||
uid: string;
|
uid: string;
|
||||||
|
@@ -36,7 +36,7 @@ export class GetUnidirectionalFriendList extends OneBotAction<void, Friend[]> {
|
|||||||
uint64_uin: self_id,
|
uint64_uin: self_id,
|
||||||
uint64_top: 0,
|
uint64_top: 0,
|
||||||
uint32_req_num: 99,
|
uint32_req_num: 99,
|
||||||
bytes_cookies: ''
|
bytes_cookies: ""
|
||||||
};
|
};
|
||||||
const packed_data = await this.pack_data(JSON.stringify(req_json));
|
const packed_data = await this.pack_data(JSON.stringify(req_json));
|
||||||
const data = Buffer.from(packed_data).toString('hex');
|
const data = Buffer.from(packed_data).toString('hex');
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.number(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetUserStatus extends GetPacketStatusDepends<Payload, { status: number; ext_status: number; } | undefined> {
|
export class GetUserStatus extends GetPacketStatusDepends<Payload, { status: number; ext_status: number; } | undefined> {
|
||||||
override actionName = ActionName.GetUserStatus;
|
override actionName = ActionName.GetUserStatus;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
return await this.core.apis.PacketApi.pkt.operation.GetStrangerStatus(payload.user_id);
|
return await this.core.apis.PacketApi.pkt.operation.GetStrangerStatus(+payload.user_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
current_parent_directory: coerce.string(),
|
current_parent_directory: Type.String(),
|
||||||
target_parent_directory: coerce.string(),
|
target_parent_directory: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface MoveGroupFileResponse {
|
interface MoveGroupFileResponse {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
|
@@ -2,14 +2,14 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { checkFileExist, uriToLocalFile } from '@/common/file';
|
import { checkFileExist, uriToLocalFile } from '@/common/file';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { GeneralCallResultStatus } from '@/core';
|
import { GeneralCallResultStatus } from '@/core';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
image: coerce.string(),
|
image: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class OCRImageBase extends OneBotAction<Payload, GeneralCallResultStatus> {
|
class OCRImageBase extends OneBotAction<Payload, GeneralCallResultStatus> {
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
current_parent_directory: coerce.string(),
|
current_parent_directory: Type.String(),
|
||||||
new_name: coerce.string(),
|
new_name: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface RenameGroupFileResponse {
|
interface RenameGroupFileResponse {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
|
@@ -1,22 +1,22 @@
|
|||||||
import { PacketHexStr } from '@/core/packet/transformer/base';
|
import { PacketHexStr } from '@/core/packet/transformer/base';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
cmd: coerce.string(),
|
cmd: Type.String(),
|
||||||
data: coerce.string(),
|
data: Type.String(),
|
||||||
rsp: coerce.boolean().default(true),
|
rsp: Type.Union([Type.String(), Type.Boolean()], { default: true }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SendPacket extends GetPacketStatusDepends<Payload, string | undefined> {
|
export class SendPacket extends GetPacketStatusDepends<Payload, string | undefined> {
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
override actionName = ActionName.SendPacket;
|
override actionName = ActionName.SendPacket;
|
||||||
async _handle(payload: Payload) {
|
async _handle(payload: Payload) {
|
||||||
const data = await this.core.apis.PacketApi.pkt.operation.sendPacket({ cmd: payload.cmd, data: payload.data as PacketHexStr }, payload.rsp);
|
const rsp = typeof payload.rsp === 'boolean' ? payload.rsp : payload.rsp === 'true';
|
||||||
|
const data = await this.core.apis.PacketApi.pkt.operation.sendPacket({ cmd: payload.cmd, data: payload.data as PacketHexStr }, rsp);
|
||||||
return typeof data === 'object' ? data.toString('hex') : undefined;
|
return typeof data === 'object' ? data.toString('hex') : undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
face_id: coerce.string(),// 参考 face_config.json 的 QSid
|
face_id: Type.Union([Type.Number(), Type.String()]),// 参考 face_config.json 的 QSid
|
||||||
face_type: coerce.string().default('1'),
|
face_type: Type.Union([Type.Number(), Type.String()], { default: '1' }),
|
||||||
wording: coerce.string().default(' '),
|
wording: Type.String({ default: ' ' }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetDiyOnlineStatus extends OneBotAction<Payload, string> {
|
export class SetDiyOnlineStatus extends OneBotAction<Payload, string> {
|
||||||
override actionName = ActionName.SetDiyOnlineStatus;
|
override actionName = ActionName.SetDiyOnlineStatus;
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.String(),
|
||||||
remark: coerce.string(),
|
remark: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupRemark extends OneBotAction<Payload, null> {
|
export default class SetGroupRemark extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupRemark;
|
override actionName = ActionName.SetGroupRemark;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class SetGroupSignBase extends GetPacketStatusDepends<Payload, void> {
|
class SetGroupSignBase extends GetPacketStatusDepends<Payload, void> {
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { ChatType } from '@/core';
|
import { ChatType } from '@/core';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
event_type: coerce.number(),
|
event_type: Type.Number(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetInputStatus extends OneBotAction<Payload, unknown> {
|
export class SetInputStatus extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.SetInputStatus;
|
override actionName = ActionName.SetInputStatus;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
longNick: coerce.string(),
|
longNick: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetLongNick extends OneBotAction<Payload, unknown> {
|
export class SetLongNick extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.SetLongNick;
|
override actionName = ActionName.SetLongNick;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
status: coerce.number(),
|
status: Type.Union([Type.Number(), Type.String()]),
|
||||||
ext_status: coerce.number(),
|
ext_status: Type.Union([Type.Number(), Type.String()]),
|
||||||
battery_status: coerce.number(),
|
battery_status: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetOnlineStatus extends OneBotAction<Payload, null> {
|
export class SetOnlineStatus extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetOnlineStatus;
|
override actionName = ActionName.SetOnlineStatus;
|
||||||
|
@@ -2,13 +2,13 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import fs from 'node:fs/promises';
|
import fs from 'node:fs/promises';
|
||||||
import { checkFileExist, uriToLocalFile } from '@/common/file';
|
import { checkFileExist, uriToLocalFile } from '@/common/file';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
file: coerce.string(),
|
file: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetAvatar extends OneBotAction<Payload, null> {
|
export default class SetAvatar extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetQQAvatar;
|
override actionName = ActionName.SetQQAvatar;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
special_title: coerce.string().default(''),
|
special_title: Type.String({ default: '' }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetSpecialTitle extends GetPacketStatusDepends<Payload, void> {
|
export class SetSpecialTitle extends GetPacketStatusDepends<Payload, void> {
|
||||||
override actionName = ActionName.SetSpecialTitle;
|
override actionName = ActionName.SetSpecialTitle;
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { GeneralCallResult } from '@/core';
|
import { GeneralCallResult } from '@/core';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string().optional(),
|
user_id: Type.Optional(Type.Union([Type.Number(), Type.String()])),
|
||||||
group_id: coerce.string().optional(),
|
group_id: Type.Optional(Type.Union([Type.Number(), Type.String()])),
|
||||||
phoneNumber: coerce.string().default(''),
|
phoneNumber: Type.String({ default: '' }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SharePeer extends OneBotAction<Payload, GeneralCallResult & {
|
export class SharePeer extends OneBotAction<Payload, GeneralCallResult & {
|
||||||
arkMsg?: string;
|
arkMsg?: string;
|
||||||
@@ -28,11 +28,11 @@ export class SharePeer extends OneBotAction<Payload, GeneralCallResult & {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const SchemaDataGroupEx = z.object({
|
const SchemaDataGroupEx = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type PayloadGroupEx = z.infer<typeof SchemaDataGroupEx>;
|
type PayloadGroupEx = Static<typeof SchemaDataGroupEx>;
|
||||||
|
|
||||||
export class ShareGroupEx extends OneBotAction<PayloadGroupEx, string> {
|
export class ShareGroupEx extends OneBotAction<PayloadGroupEx, string> {
|
||||||
override actionName = ActionName.ShareGroupEx;
|
override actionName = ActionName.ShareGroupEx;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface TransGroupFileResponse {
|
interface TransGroupFileResponse {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
words: z.array(coerce.string()),
|
words: Type.Array(Type.String()),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class TranslateEnWordToZn extends OneBotAction<Payload, Array<unknown> | null> {
|
export class TranslateEnWordToZn extends OneBotAction<Payload, Array<unknown> | null> {
|
||||||
override actionName = ActionName.TranslateEnWordToZn;
|
override actionName = ActionName.TranslateEnWordToZn;
|
||||||
|
@@ -3,8 +3,8 @@ import fs from 'fs/promises';
|
|||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OB11MessageImage, OB11MessageVideo } from '@/onebot/types';
|
import { OB11MessageImage, OB11MessageVideo } from '@/onebot/types';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
export interface GetFileResponse {
|
export interface GetFileResponse {
|
||||||
file?: string; // path
|
file?: string; // path
|
||||||
url?: string;
|
url?: string;
|
||||||
@@ -13,13 +13,13 @@ export interface GetFileResponse {
|
|||||||
base64?: string;
|
base64?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const GetFileBase_PayloadSchema = z.object({
|
const GetFileBase_PayloadSchema = Type.Object({
|
||||||
file: coerce.string().optional(),
|
file: Type.Optional(Type.String()),
|
||||||
file_id: coerce.string().optional(),
|
file_id: Type.Optional(Type.String())
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
export type GetFilePayload = z.infer<typeof GetFileBase_PayloadSchema>;
|
export type GetFilePayload = Static<typeof GetFileBase_PayloadSchema>;
|
||||||
|
|
||||||
export class GetFileBase extends OneBotAction<GetFilePayload, GetFileResponse> {
|
export class GetFileBase extends OneBotAction<GetFilePayload, GetFileResponse> {
|
||||||
override payloadSchema = GetFileBase_PayloadSchema;
|
override payloadSchema = GetFileBase_PayloadSchema;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface GetGroupFileUrlResponse {
|
interface GetGroupFileUrlResponse {
|
||||||
url?: string;
|
url?: string;
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
interface GetPrivateFileUrlResponse {
|
interface GetPrivateFileUrlResponse {
|
||||||
url?: string;
|
url?: string;
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
folder_name: coerce.string(),
|
folder_name: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
interface ResponseType{
|
interface ResponseType{
|
||||||
result:unknown;
|
result:unknown;
|
||||||
groupItem:unknown;
|
groupItem:unknown;
|
||||||
|
@@ -2,15 +2,15 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
import { FileNapCatOneBotUUID } from '@/common/file-uuid';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NTQQGroupApi } from '@/core/apis';
|
import { NTQQGroupApi } from '@/core/apis';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_id: coerce.string(),
|
file_id: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class DeleteGroupFile extends OneBotAction<Payload, Awaited<ReturnType<NTQQGroupApi['delGroupFile']>>> {
|
export class DeleteGroupFile extends OneBotAction<Payload, Awaited<ReturnType<NTQQGroupApi['delGroupFile']>>> {
|
||||||
override actionName = ActionName.GOCQHTTP_DeleteGroupFile;
|
override actionName = ActionName.GOCQHTTP_DeleteGroupFile;
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NTQQGroupApi } from '@/core/apis';
|
import { NTQQGroupApi } from '@/core/apis';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
folder_id: coerce.string().optional(),
|
folder_id: Type.Optional(Type.String()),
|
||||||
folder: coerce.string().optional(),
|
folder: Type.Optional(Type.String()),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class DeleteGroupFileFolder extends OneBotAction<Payload, Awaited<ReturnType<NTQQGroupApi['delGroupFileFolder']>>['groupFileCommonResult']> {
|
export class DeleteGroupFileFolder extends OneBotAction<Payload, Awaited<ReturnType<NTQQGroupApi['delGroupFileFolder']>>['groupFileCommonResult']> {
|
||||||
override actionName = ActionName.GoCQHTTP_DeleteGroupFileFolder;
|
override actionName = ActionName.GoCQHTTP_DeleteGroupFileFolder;
|
||||||
|
@@ -4,20 +4,20 @@ import fs from 'fs';
|
|||||||
import { join as joinPath } from 'node:path';
|
import { join as joinPath } from 'node:path';
|
||||||
import { calculateFileMD5, uriToLocalFile } from '@/common/file';
|
import { calculateFileMD5, uriToLocalFile } from '@/common/file';
|
||||||
import { randomUUID } from 'crypto';
|
import { randomUUID } from 'crypto';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
interface FileResponse {
|
interface FileResponse {
|
||||||
file: string;
|
file: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
url: coerce.string().optional(),
|
url: Type.Optional(Type.String()),
|
||||||
base64: coerce.string().optional(),
|
base64: Type.Optional(Type.String()),
|
||||||
name: coerce.string().optional(),
|
name: Type.Optional(Type.String()),
|
||||||
headers: z.union([coerce.string(), z.array(coerce.string())]).optional(),
|
headers: Type.Optional(Type.Union([Type.String(), Type.Array(Type.String())])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class GoCQHTTPDownloadFile extends OneBotAction<Payload, FileResponse> {
|
export default class GoCQHTTPDownloadFile extends OneBotAction<Payload, FileResponse> {
|
||||||
override actionName = ActionName.GoCQHTTP_DownloadFile;
|
override actionName = ActionName.GoCQHTTP_DownloadFile;
|
||||||
|
@@ -2,16 +2,16 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { OB11Message, OB11MessageData, OB11MessageDataType, OB11MessageForward, OB11MessageNodePlain as OB11MessageNode } from '@/onebot';
|
import { OB11Message, OB11MessageData, OB11MessageDataType, OB11MessageForward, OB11MessageNodePlain as OB11MessageNode } from '@/onebot';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { ChatType, ElementType, MsgSourceType, NTMsgType, RawMessage } from '@/core';
|
import { ChatType, ElementType, MsgSourceType, NTMsgType, RawMessage } from '@/core';
|
||||||
import { z } from 'zod';
|
|
||||||
import { isNumeric } from '@/common/helper';
|
import { isNumeric } from '@/common/helper';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
|
||||||
message_id: coerce.string().optional(),
|
|
||||||
id: coerce.string().optional(),
|
|
||||||
});
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
|
||||||
|
|
||||||
|
const SchemaData = Type.Object({
|
||||||
|
message_id: Type.Optional(Type.String()),
|
||||||
|
id: Type.Optional(Type.String()),
|
||||||
|
});
|
||||||
|
|
||||||
|
type Payload = Static<typeof SchemaData>;
|
||||||
export class GoCQHTTPGetForwardMsgAction extends OneBotAction<Payload, {
|
export class GoCQHTTPGetForwardMsgAction extends OneBotAction<Payload, {
|
||||||
messages: OB11Message[] | undefined;
|
messages: OB11Message[] | undefined;
|
||||||
}> {
|
}> {
|
||||||
|
@@ -3,22 +3,22 @@ import { OB11Message } from '@/onebot';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { ChatType } from '@/core/types';
|
import { ChatType } from '@/core/types';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
|
||||||
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
interface Response {
|
interface Response {
|
||||||
messages: OB11Message[];
|
messages: OB11Message[];
|
||||||
}
|
}
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string(),
|
user_id: Type.String(),
|
||||||
message_seq: coerce.string().optional(),
|
message_seq: Type.Optional(Type.String()),
|
||||||
count: coerce.number().default(20),
|
count: Type.Number({ default: 20 }),
|
||||||
reverseOrder: coerce.boolean().default(false)
|
reverseOrder: Type.Boolean({ default: false })
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class GetFriendMsgHistory extends OneBotAction<Payload, Response> {
|
export default class GetFriendMsgHistory extends OneBotAction<Payload, Response> {
|
||||||
override actionName = ActionName.GetFriendMsgHistory;
|
override actionName = ActionName.GetFriendMsgHistory;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string()
|
group_id: Type.Union([Type.Number(), Type.String()])
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
interface ResponseType {
|
interface ResponseType {
|
||||||
can_at_all: boolean;
|
can_at_all: boolean;
|
||||||
remain_at_all_count_for_group: number;
|
remain_at_all_count_for_group: number;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string()
|
group_id: Type.Union([Type.Number(), Type.String()])
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupFileSystemInfo extends OneBotAction<Payload, {
|
export class GetGroupFileSystemInfo extends OneBotAction<Payload, {
|
||||||
file_count: number,
|
file_count: number,
|
||||||
|
@@ -2,16 +2,16 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
folder_id: coerce.string().optional(),
|
folder_id: Type.Optional(Type.String()),
|
||||||
folder: coerce.string().optional(),
|
folder: Type.Optional(Type.String()),
|
||||||
file_count: coerce.number().default(50),
|
file_count: Type.Union([Type.Number(), Type.String()], { default: 50 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupFilesByFolder extends OneBotAction<Payload, {
|
export class GetGroupFilesByFolder extends OneBotAction<Payload, {
|
||||||
files: ReturnType<typeof OB11Construct.file>[],
|
files: ReturnType<typeof OB11Construct.file>[],
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
import { WebHonorType } from '@/core';
|
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { WebHonorType } from '@/core/types';
|
||||||
import { coerce } from '@/common/coerce';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
const SchemaData = z.object({
|
|
||||||
group_id: coerce.string(),
|
const SchemaData = Type.Object({
|
||||||
type: z.nativeEnum(WebHonorType).optional()
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
|
type: Type.Optional(Type.Enum(WebHonorType))
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupHonorInfo extends OneBotAction<Payload, unknown> {
|
export class GetGroupHonorInfo extends OneBotAction<Payload, Array<unknown>> {
|
||||||
override actionName = ActionName.GetGroupHonorInfo;
|
override actionName = ActionName.GetGroupHonorInfo;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
|
||||||
|
@@ -3,23 +3,22 @@ import { OB11Message } from '@/onebot';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { ChatType, Peer } from '@/core/types';
|
import { ChatType, Peer } from '@/core/types';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
interface Response {
|
interface Response {
|
||||||
messages: OB11Message[];
|
messages: OB11Message[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.String(),
|
||||||
message_seq: coerce.string().optional(),
|
message_seq: Type.Optional(Type.String()),
|
||||||
count: coerce.number().default(20),
|
count: Type.Number({ default: 20 }),
|
||||||
reverseOrder: coerce.boolean().default(false)
|
reverseOrder: Type.Boolean({ default: false })
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
|
|
||||||
export default class GoCQHTTPGetGroupMsgHistory extends OneBotAction<Payload, Response> {
|
export default class GoCQHTTPGetGroupMsgHistory extends OneBotAction<Payload, Response> {
|
||||||
|
@@ -3,14 +3,14 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OB11GroupFile, OB11GroupFileFolder } from '@/onebot';
|
import { OB11GroupFile, OB11GroupFileFolder } from '@/onebot';
|
||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file_count: coerce.number().default(50),
|
file_count: Type.Union([Type.Number(), Type.String()], { default: 50 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupRootFiles extends OneBotAction<Payload, {
|
export class GetGroupRootFiles extends OneBotAction<Payload, {
|
||||||
files: OB11GroupFile[],
|
files: OB11GroupFile[],
|
||||||
|
@@ -3,15 +3,14 @@ import { OB11User, OB11UserSex } from '@/onebot';
|
|||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { calcQQLevel } from '@/common/helper';
|
import { calcQQLevel } from '@/common/helper';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
no_cache: coerce.boolean().default(false),
|
no_cache: Type.Union([Type.Boolean(), Type.String()], { default: false }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class GoCQHTTPGetStrangerInfo extends OneBotAction<Payload, OB11User & { uid: string }> {
|
export default class GoCQHTTPGetStrangerInfo extends OneBotAction<Payload, OB11User & { uid: string }> {
|
||||||
override actionName = ActionName.GoCQHTTP_GetStrangerInfo;
|
override actionName = ActionName.GoCQHTTP_GetStrangerInfo;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
url: coerce.string(),
|
url: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GoCQHTTPCheckUrlSafely extends OneBotAction<Payload, { level: number }> {
|
export class GoCQHTTPCheckUrlSafely extends OneBotAction<Payload, { level: number }> {
|
||||||
override actionName = ActionName.GoCQHTTP_CheckUrlSafely;
|
override actionName = ActionName.GoCQHTTP_CheckUrlSafely;
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
friend_id: coerce.string().optional(),
|
friend_id: Type.Optional(Type.Union([Type.String(), Type.Number()])),
|
||||||
user_id: coerce.string().optional(),
|
user_id: Type.Optional(Type.Union([Type.String(), Type.Number()])),
|
||||||
temp_block: coerce.boolean().optional(),
|
temp_block: Type.Optional(Type.Boolean()),
|
||||||
temp_both_del: coerce.boolean().optional(),
|
temp_both_del: Type.Optional(Type.Boolean()),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GoCQHTTPDeleteFriend extends OneBotAction<Payload, unknown> {
|
export class GoCQHTTPDeleteFriend extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.GoCQHTTP_DeleteFriend;
|
override actionName = ActionName.GoCQHTTP_DeleteFriend;
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
model: coerce.string(),
|
model: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GoCQHTTPGetModelShow extends OneBotAction<Payload, Array<{
|
export class GoCQHTTPGetModelShow extends OneBotAction<Payload, Array<{
|
||||||
variants: {
|
variants: {
|
||||||
|
@@ -4,13 +4,18 @@ import { ActionName } from '@/onebot/action/router';
|
|||||||
|
|
||||||
// 未验证
|
// 未验证
|
||||||
export class GoCQHTTPSendForwardMsgBase extends SendMsgBase {
|
export class GoCQHTTPSendForwardMsgBase extends SendMsgBase {
|
||||||
override async _handle(payload: OB11PostSendMsg) {
|
protected override async check(payload: OB11PostSendMsg) {
|
||||||
if (payload.messages) payload.message = normalize(payload.messages);
|
if (payload.messages) payload.message = normalize(payload.messages);
|
||||||
return super._handle(payload);
|
return super.check(payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export class GoCQHTTPSendForwardMsg extends GoCQHTTPSendForwardMsgBase {
|
export class GoCQHTTPSendForwardMsg extends GoCQHTTPSendForwardMsgBase {
|
||||||
override actionName = ActionName.GoCQHTTP_SendForwardMsg;
|
override actionName = ActionName.GoCQHTTP_SendForwardMsg;
|
||||||
|
|
||||||
|
protected override async check(payload: OB11PostSendMsg) {
|
||||||
|
if (payload.messages) payload.message = normalize(payload.messages);
|
||||||
|
return super.check(payload);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
export class GoCQHTTPSendPrivateForwardMsg extends GoCQHTTPSendForwardMsgBase {
|
export class GoCQHTTPSendPrivateForwardMsg extends GoCQHTTPSendForwardMsgBase {
|
||||||
override actionName = ActionName.GoCQHTTP_SendPrivateForwardMsg;
|
override actionName = ActionName.GoCQHTTP_SendPrivateForwardMsg;
|
||||||
|
@@ -2,20 +2,20 @@ import { checkFileExist, uriToLocalFile } from '@/common/file';
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { unlink } from 'node:fs/promises';
|
import { unlink } from 'node:fs/promises';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
content: coerce.string(),
|
content: Type.String(),
|
||||||
image: coerce.string().optional(),
|
image: Type.Optional(Type.String()),
|
||||||
pinned: coerce.number().default(0),
|
pinned: Type.Union([Type.Number(), Type.String()], { default: 0 }),
|
||||||
type: coerce.number().default(1),
|
type: Type.Union([Type.Number(), Type.String()], { default: 1 }),
|
||||||
confirm_required: coerce.number().default(1),
|
confirm_required: Type.Union([Type.Number(), Type.String()], { default: 1 }),
|
||||||
is_show_edit_card: coerce.number().default(0),
|
is_show_edit_card: Type.Union([Type.Number(), Type.String()], { default: 0 }),
|
||||||
tip_window_type: coerce.number().default(0),
|
tip_window_type: Type.Union([Type.Number(), Type.String()], { default: 0 })
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SendGroupNotice extends OneBotAction<Payload, null> {
|
export class SendGroupNotice extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.GoCQHTTP_SendGroupNotice;
|
override actionName = ActionName.GoCQHTTP_SendGroupNotice;
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { checkFileExistV2, uriToLocalFile } from '@/common/file';
|
import { checkFileExistV2, uriToLocalFile } from '@/common/file';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import fs from 'node:fs/promises';
|
import fs from 'node:fs/promises';
|
||||||
import { GeneralCallResult } from '@/core';
|
import { GeneralCallResult } from '@/core';
|
||||||
import { coerce } from '@/common/coerce';
|
const SchemaData = Type.Object({
|
||||||
const SchemaData = z.object({
|
file: Type.String(),
|
||||||
file: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()])
|
||||||
group_id: coerce.string()
|
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupPortrait extends OneBotAction<Payload, GeneralCallResult> {
|
export default class SetGroupPortrait extends OneBotAction<Payload, GeneralCallResult> {
|
||||||
override actionName = ActionName.SetGroupPortrait;
|
override actionName = ActionName.SetGroupPortrait;
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { NTQQUserApi } from '@/core/apis';
|
import { NTQQUserApi } from '@/core/apis';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
nickname: coerce.string(),
|
nickname: Type.String(),
|
||||||
personal_note: coerce.string().optional(),
|
personal_note: Type.Optional(Type.String()),
|
||||||
sex: coerce.string().optional(), // 传Sex值?建议传0
|
sex: Type.Optional(Type.Union([Type.Number(), Type.String()])), // 传Sex值?建议传0
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
export class SetQQProfile extends OneBotAction<Payload, Awaited<ReturnType<NTQQUserApi['modifySelfProfile']>> | null> {
|
export class SetQQProfile extends OneBotAction<Payload, Awaited<ReturnType<NTQQUserApi['modifySelfProfile']>> | null> {
|
||||||
override actionName = ActionName.SetQQProfile;
|
override actionName = ActionName.SetQQProfile;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
|
@@ -4,17 +4,17 @@ import { ChatType, Peer } from '@/core/types';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import { uriToLocalFile } from '@/common/file';
|
import { uriToLocalFile } from '@/common/file';
|
||||||
import { SendMessageContext } from '@/onebot/api';
|
import { SendMessageContext } from '@/onebot/api';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file: coerce.string(),
|
file: Type.String(),
|
||||||
name: coerce.string(),
|
name: Type.String(),
|
||||||
folder: coerce.string().optional(),
|
folder: Type.Optional(Type.String()),
|
||||||
folder_id: coerce.string().optional(),//临时扩展
|
folder_id: Type.Optional(Type.String()),//临时扩展
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class GoCQHTTPUploadGroupFile extends OneBotAction<Payload, null> {
|
export default class GoCQHTTPUploadGroupFile extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.GoCQHTTP_UploadGroupFile;
|
override actionName = ActionName.GoCQHTTP_UploadGroupFile;
|
||||||
|
@@ -5,15 +5,15 @@ import fs from 'fs';
|
|||||||
import { uriToLocalFile } from '@/common/file';
|
import { uriToLocalFile } from '@/common/file';
|
||||||
import { SendMessageContext } from '@/onebot/api';
|
import { SendMessageContext } from '@/onebot/api';
|
||||||
import { ContextMode, createContext } from '@/onebot/action/msg/SendMsg';
|
import { ContextMode, createContext } from '@/onebot/action/msg/SendMsg';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
file: coerce.string(),
|
file: Type.String(),
|
||||||
name: coerce.string(),
|
name: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class GoCQHTTPUploadPrivateFile extends OneBotAction<Payload, null> {
|
export default class GoCQHTTPUploadPrivateFile extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.GOCQHTTP_UploadPrivateFile;
|
override actionName = ActionName.GOCQHTTP_UploadPrivateFile;
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
export default class DelEssenceMsg extends OneBotAction<Payload, unknown> {
|
export default class DelEssenceMsg extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.DelEssenceMsg;
|
override actionName = ActionName.DelEssenceMsg;
|
||||||
override payloadSchema = SchemaData;
|
override payloadSchema = SchemaData;
|
||||||
@@ -16,7 +16,7 @@ export default class DelEssenceMsg extends OneBotAction<Payload, unknown> {
|
|||||||
const msg = MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id);
|
const msg = MessageUnique.getMsgIdAndPeerByShortId(+payload.message_id);
|
||||||
if (!msg) {
|
if (!msg) {
|
||||||
const data = this.core.apis.GroupApi.essenceLRU.getValue(+payload.message_id);
|
const data = this.core.apis.GroupApi.essenceLRU.getValue(+payload.message_id);
|
||||||
if (!data) throw new Error('消息不存在');
|
if(!data) throw new Error('消息不存在');
|
||||||
const { msg_seq, msg_random, group_id } = JSON.parse(data) as { msg_seq: string, msg_random: string, group_id: string };
|
const { msg_seq, msg_random, group_id } = JSON.parse(data) as { msg_seq: string, msg_random: string, group_id: string };
|
||||||
return await this.core.apis.GroupApi.removeGroupEssenceBySeq(group_id, msg_seq, msg_random);
|
return await this.core.apis.GroupApi.removeGroupEssenceBySeq(group_id, msg_seq, msg_random);
|
||||||
}
|
}
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
notice_id: coerce.string()
|
notice_id: Type.String()
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class DelGroupNotice extends OneBotAction<Payload, void> {
|
export class DelGroupNotice extends OneBotAction<Payload, void> {
|
||||||
override actionName = ActionName.DelGroupNotice;
|
override actionName = ActionName.DelGroupNotice;
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
character: coerce.string(),
|
character: Type.String(),
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
text: coerce.string(),
|
text: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetAiRecord extends GetPacketStatusDepends<Payload, string> {
|
export class GetAiRecord extends GetPacketStatusDepends<Payload, string> {
|
||||||
override actionName = ActionName.GetAiRecord;
|
override actionName = ActionName.GetAiRecord;
|
||||||
|
@@ -3,14 +3,14 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import crypto from 'crypto';
|
import crypto from 'crypto';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupEssence extends OneBotAction<Payload, unknown> {
|
export class GetGroupEssence extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.GoCQHTTP_GetEssenceMsg;
|
override actionName = ActionName.GoCQHTTP_GetEssenceMsg;
|
||||||
|
@@ -2,13 +2,13 @@ import { OB11Group } from '@/onebot';
|
|||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class GetGroupInfo extends OneBotAction<Payload, OB11Group> {
|
class GetGroupInfo extends OneBotAction<Payload, OB11Group> {
|
||||||
override actionName = ActionName.GetGroupInfo;
|
override actionName = ActionName.GetGroupInfo;
|
||||||
|
@@ -2,14 +2,13 @@ import { OB11Group } from '@/onebot';
|
|||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
no_cache: coerce.boolean().default(false),
|
no_cache: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class GetGroupList extends OneBotAction<Payload, OB11Group[]> {
|
class GetGroupList extends OneBotAction<Payload, OB11Group[]> {
|
||||||
override actionName = ActionName.GetGroupList;
|
override actionName = ActionName.GetGroupList;
|
||||||
|
@@ -2,16 +2,15 @@ import { OB11GroupMember } from '@/onebot';
|
|||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
no_cache: coerce.boolean().default(false),
|
no_cache: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class GetGroupMemberInfo extends OneBotAction<Payload, OB11GroupMember> {
|
class GetGroupMemberInfo extends OneBotAction<Payload, OB11GroupMember> {
|
||||||
override actionName = ActionName.GetGroupMemberInfo;
|
override actionName = ActionName.GetGroupMemberInfo;
|
||||||
|
@@ -2,16 +2,15 @@ import { OB11GroupMember } from '@/onebot';
|
|||||||
import { OB11Construct } from '@/onebot/helper/data';
|
import { OB11Construct } from '@/onebot/helper/data';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { GroupMember } from '@/core';
|
import { GroupMember } from '@/core';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
no_cache: coerce.boolean().default(false)
|
no_cache: Type.Optional(Type.Union([Type.Boolean(), Type.String()]))
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupMemberList extends OneBotAction<Payload, OB11GroupMember[]> {
|
export class GetGroupMemberList extends OneBotAction<Payload, OB11GroupMember[]> {
|
||||||
override actionName = ActionName.GetGroupMemberList;
|
override actionName = ActionName.GetGroupMemberList;
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
import { WebApiGroupNoticeFeed } from '@/core';
|
import { WebApiGroupNoticeFeed } from '@/core';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
interface GroupNotice {
|
interface GroupNotice {
|
||||||
sender_id: number;
|
sender_id: number;
|
||||||
publish_time: number;
|
publish_time: number;
|
||||||
@@ -17,11 +16,11 @@ interface GroupNotice {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
type ApiGroupNotice = GroupNotice & WebApiGroupNoticeFeed;
|
type ApiGroupNotice = GroupNotice & WebApiGroupNoticeFeed;
|
||||||
|
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { ShutUpGroupMember } from '@/core';
|
import { ShutUpGroupMember } from '@/core';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GetGroupShutList extends OneBotAction<Payload, ShutUpGroupMember[]> {
|
export class GetGroupShutList extends OneBotAction<Payload, ShutUpGroupMember[]> {
|
||||||
override actionName = ActionName.GetGroupShutList;
|
override actionName = ActionName.GetGroupShutList;
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class GroupPoke extends GetPacketStatusDepends<Payload, void> {
|
export class GroupPoke extends GetPacketStatusDepends<Payload, void> {
|
||||||
override actionName = ActionName.GroupPoke;
|
override actionName = ActionName.GroupPoke;
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
|
||||||
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
import { AIVoiceChatType } from '@/core/packet/entities/aiChat';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
character: coerce.string(),
|
character: Type.String(),
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
text: coerce.string(),
|
text: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
|
|
||||||
export class SendGroupAiRecord extends GetPacketStatusDepends<Payload, {
|
export class SendGroupAiRecord extends GetPacketStatusDepends<Payload, {
|
||||||
|
@@ -1,15 +1,16 @@
|
|||||||
import { ContextMode, SendMsgBase } from '@/onebot/action/msg/SendMsg';
|
import { ContextMode, SendMsgBase } from '@/onebot/action/msg/SendMsg';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName, BaseCheckResult } from '@/onebot/action/router';
|
||||||
import { OB11PostSendMsg } from '@/onebot/types';
|
import { OB11PostSendMsg } from '@/onebot/types';
|
||||||
|
|
||||||
// 未检测参数
|
// 未检测参数
|
||||||
class SendGroupMsg extends SendMsgBase {
|
class SendGroupMsg extends SendMsgBase {
|
||||||
override actionName = ActionName.SendGroupMsg;
|
override actionName = ActionName.SendGroupMsg;
|
||||||
override contextMode: ContextMode = ContextMode.Group;
|
override contextMode: ContextMode = ContextMode.Group;
|
||||||
override async _handle(payload: OB11PostSendMsg) {
|
|
||||||
|
protected override async check(payload: OB11PostSendMsg): Promise<BaseCheckResult> {
|
||||||
delete payload.user_id;
|
delete payload.user_id;
|
||||||
payload.message_type = 'group';
|
payload.message_type = 'group';
|
||||||
return super._handle(payload);
|
return super.check(payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetEssenceMsg extends OneBotAction<Payload, unknown> {
|
export default class SetEssenceMsg extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.SetEssenceMsg;
|
override actionName = ActionName.SetEssenceMsg;
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { NTGroupRequestOperateTypes } from '@/core/types';
|
import { NTGroupRequestOperateTypes } from '@/core/types';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
flag: coerce.string(),
|
flag: Type.Union([Type.String(), Type.Number()]),
|
||||||
approve: coerce.boolean().default(true),
|
approve: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
reason: coerce.string().nullable().default(' '),
|
reason: Type.Optional(Type.Union([Type.String({ default: ' ' }), Type.Null()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupAddRequest extends OneBotAction<Payload, null> {
|
export default class SetGroupAddRequest extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupAddRequest;
|
override actionName = ActionName.SetGroupAddRequest;
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { NTGroupMemberRole } from '@/core/types';
|
import { NTGroupMemberRole } from '@/core/types';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
enable: coerce.boolean().default(false),
|
enable: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupAdmin extends OneBotAction<Payload, null> {
|
export default class SetGroupAdmin extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupAdmin;
|
override actionName = ActionName.SetGroupAdmin;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
duration: coerce.number().default(0),
|
duration: Type.Union([Type.Number(), Type.String()], { default: 0 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupBan extends OneBotAction<Payload, null> {
|
export default class SetGroupBan extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupBan;
|
override actionName = ActionName.SetGroupBan;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
card: coerce.string().optional(),
|
card: Type.Optional(Type.String())
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupCard extends OneBotAction<Payload, null> {
|
export default class SetGroupCard extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupCard;
|
override actionName = ActionName.SetGroupCard;
|
||||||
|
@@ -1,15 +1,14 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
user_id: coerce.string(),
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
reject_add_request: coerce.boolean().optional(),
|
reject_add_request: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupKick extends OneBotAction<Payload, null> {
|
export default class SetGroupKick extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupKick;
|
override actionName = ActionName.SetGroupKick;
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
is_dismiss: coerce.boolean().optional(),
|
is_dismiss: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupLeave extends OneBotAction<Payload, void> {
|
export default class SetGroupLeave extends OneBotAction<Payload, void> {
|
||||||
override actionName = ActionName.SetGroupLeave;
|
override actionName = ActionName.SetGroupLeave;
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
group_name: coerce.string(),
|
group_name: Type.String(),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupName extends OneBotAction<Payload, null> {
|
export default class SetGroupName extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupName;
|
override actionName = ActionName.SetGroupName;
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
group_id: coerce.string(),
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
enable: coerce.boolean().optional(),
|
enable: Type.Optional(Type.Union([Type.Boolean(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export default class SetGroupWholeBan extends OneBotAction<Payload, null> {
|
export default class SetGroupWholeBan extends OneBotAction<Payload, null> {
|
||||||
override actionName = ActionName.SetGroupWholeBan;
|
override actionName = ActionName.SetGroupWholeBan;
|
||||||
|
@@ -114,6 +114,7 @@ import { TransGroupFile } from './extends/TransGroupFile';
|
|||||||
import { RenameGroupFile } from './extends/RenameGroupFile';
|
import { RenameGroupFile } from './extends/RenameGroupFile';
|
||||||
import { GetRkeyServer } from './packet/GetRkeyServer';
|
import { GetRkeyServer } from './packet/GetRkeyServer';
|
||||||
import { GetRkeyEx } from './packet/GetRkeyEx';
|
import { GetRkeyEx } from './packet/GetRkeyEx';
|
||||||
|
import { CleanCache } from './system/CleanCache';
|
||||||
|
|
||||||
export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
|
export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
|
||||||
|
|
||||||
@@ -241,6 +242,7 @@ export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCo
|
|||||||
new ClickInlineKeyboardButton(obContext, core),
|
new ClickInlineKeyboardButton(obContext, core),
|
||||||
new GetPrivateFileUrl(obContext, core),
|
new GetPrivateFileUrl(obContext, core),
|
||||||
new GetUnidirectionalFriendList(obContext, core),
|
new GetUnidirectionalFriendList(obContext, core),
|
||||||
|
new CleanCache(obContext, core),
|
||||||
];
|
];
|
||||||
|
|
||||||
type HandlerUnion = typeof actionHandlers[number];
|
type HandlerUnion = typeof actionHandlers[number];
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class DeleteMsg extends OneBotAction<Payload, void> {
|
class DeleteMsg extends OneBotAction<Payload, void> {
|
||||||
override actionName = ActionName.DeleteMsg;
|
override actionName = ActionName.DeleteMsg;
|
||||||
|
@@ -2,15 +2,15 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ChatType, Peer } from '@/core/types';
|
import { ChatType, Peer } from '@/core/types';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
group_id: coerce.string().optional(),
|
group_id: Type.Optional(Type.Union([Type.Number(), Type.String()])),
|
||||||
user_id: coerce.string().optional(),
|
user_id: Type.Optional(Type.Union([Type.Number(), Type.String()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class ForwardSingleMsg extends OneBotAction<Payload, null> {
|
class ForwardSingleMsg extends OneBotAction<Payload, null> {
|
||||||
protected async getTargetPeer(payload: Payload): Promise<Peer> {
|
protected async getTargetPeer(payload: Payload): Promise<Peer> {
|
||||||
|
@@ -3,16 +3,16 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { RawMessage } from '@/core';
|
import { RawMessage } from '@/core';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
import { NetworkAdapterConfig } from '@/onebot/config/config';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
export type ReturnDataType = OB11Message
|
export type ReturnDataType = OB11Message
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class GetMsg extends OneBotAction<Payload, OB11Message> {
|
class GetMsg extends OneBotAction<Payload, OB11Message> {
|
||||||
override actionName = ActionName.GetMsg;
|
override actionName = ActionName.GetMsg;
|
||||||
@@ -29,7 +29,7 @@ class GetMsg extends OneBotAction<Payload, OB11Message> {
|
|||||||
}
|
}
|
||||||
const peer = { guildId: '', peerUid: msgIdWithPeer?.Peer.peerUid, chatType: msgIdWithPeer.Peer.chatType };
|
const peer = { guildId: '', peerUid: msgIdWithPeer?.Peer.peerUid, chatType: msgIdWithPeer.Peer.chatType };
|
||||||
const orimsg = this.obContext.recallMsgCache.get(msgIdWithPeer.MsgId);
|
const orimsg = this.obContext.recallMsgCache.get(msgIdWithPeer.MsgId);
|
||||||
let msg: RawMessage | undefined;
|
let msg: RawMessage|undefined;
|
||||||
if (orimsg) {
|
if (orimsg) {
|
||||||
msg = orimsg;
|
msg = orimsg;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,15 +2,15 @@ import { ChatType, Peer } from '@/core/types';
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
user_id: coerce.string().optional(),
|
user_id: Type.Optional(Type.Union([Type.String(), Type.Number()])),
|
||||||
group_id: coerce.string().optional(),
|
group_id: Type.Optional(Type.Union([Type.String(), Type.Number()])),
|
||||||
message_id: coerce.string().optional(),
|
message_id: Type.Optional(Type.Union([Type.String(), Type.Number()])),
|
||||||
});
|
});
|
||||||
|
|
||||||
type PlayloadType = z.infer<typeof SchemaData>;
|
type PlayloadType = Static<typeof SchemaData>;
|
||||||
|
|
||||||
class MarkMsgAsRead extends OneBotAction<PlayloadType, null> {
|
class MarkMsgAsRead extends OneBotAction<PlayloadType, null> {
|
||||||
async getPeer(payload: PlayloadType): Promise<Peer> {
|
async getPeer(payload: PlayloadType): Promise<Peer> {
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
import {
|
import {
|
||||||
OB11MessageData,
|
OB11MessageData,
|
||||||
OB11MessageDataType,
|
OB11MessageDataType,
|
||||||
|
OB11MessageForward,
|
||||||
OB11MessageMixType,
|
OB11MessageMixType,
|
||||||
OB11MessageNode,
|
OB11MessageNode,
|
||||||
OB11PostContext,
|
OB11PostContext,
|
||||||
@@ -12,7 +13,7 @@ import { MessageUnique } from '@/common/message-unique';
|
|||||||
import { ChatType, ElementType, NapCatCore, Peer, RawMessage, SendArkElement, SendMessageElement } from '@/core';
|
import { ChatType, ElementType, NapCatCore, Peer, RawMessage, SendArkElement, SendMessageElement } from '@/core';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ForwardMsgBuilder } from '@/common/forward-msg-builder';
|
import { ForwardMsgBuilder } from '@/common/forward-msg-builder';
|
||||||
import { stringifyWithBigInt } from '@/common/helper';
|
import { isNumeric, stringifyWithBigInt } from '@/common/helper';
|
||||||
import { PacketMsg } from '@/core/packet/message/message';
|
import { PacketMsg } from '@/core/packet/message/message';
|
||||||
import { rawMsgWithSendMsg } from '@/core/packet/message/converter';
|
import { rawMsgWithSendMsg } from '@/core/packet/message/converter';
|
||||||
|
|
||||||
@@ -38,7 +39,7 @@ export function normalize(message: OB11MessageMixType, autoEscape = false): OB11
|
|||||||
|
|
||||||
export async function createContext(core: NapCatCore, payload: OB11PostContext | undefined, contextMode: ContextMode = ContextMode.Normal): Promise<Peer> {
|
export async function createContext(core: NapCatCore, payload: OB11PostContext | undefined, contextMode: ContextMode = ContextMode.Normal): Promise<Peer> {
|
||||||
if (!payload) {
|
if (!payload) {
|
||||||
throw new Error('请指定 group_id 或 user_id');
|
throw new Error('请传递请求内容');
|
||||||
}
|
}
|
||||||
if ((contextMode === ContextMode.Group || contextMode === ContextMode.Normal) && payload.group_id) {
|
if ((contextMode === ContextMode.Group || contextMode === ContextMode.Normal) && payload.group_id) {
|
||||||
return {
|
return {
|
||||||
@@ -48,7 +49,16 @@ export async function createContext(core: NapCatCore, payload: OB11PostContext |
|
|||||||
}
|
}
|
||||||
if ((contextMode === ContextMode.Private || contextMode === ContextMode.Normal) && payload.user_id) {
|
if ((contextMode === ContextMode.Private || contextMode === ContextMode.Normal) && payload.user_id) {
|
||||||
const Uid = await core.apis.UserApi.getUidByUinV2(payload.user_id.toString());
|
const Uid = await core.apis.UserApi.getUidByUinV2(payload.user_id.toString());
|
||||||
if (!Uid) throw new Error('无法获取用户信息');
|
if (!Uid) {
|
||||||
|
if (payload.group_id) {
|
||||||
|
return {
|
||||||
|
chatType: ChatType.KCHATTYPEGROUP,
|
||||||
|
peerUid: payload.group_id.toString(),
|
||||||
|
guildId: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error('无法获取用户信息');
|
||||||
|
}
|
||||||
const isBuddy = await core.apis.FriendApi.isBuddy(Uid);
|
const isBuddy = await core.apis.FriendApi.isBuddy(Uid);
|
||||||
if (!isBuddy) {
|
if (!isBuddy) {
|
||||||
const ret = await core.apis.MsgApi.getTempChatInfo(ChatType.KCHATTYPETEMPC2CFROMGROUP, Uid);
|
const ret = await core.apis.MsgApi.getTempChatInfo(ChatType.KCHATTYPETEMPC2CFROMGROUP, Uid);
|
||||||
@@ -78,7 +88,13 @@ export async function createContext(core: NapCatCore, payload: OB11PostContext |
|
|||||||
guildId: '',
|
guildId: '',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
throw new Error('请指定 group_id 或 user_id');
|
if (contextMode === ContextMode.Private && payload.group_id) {
|
||||||
|
throw new Error('当前私聊发送,请指定 user_id 而不是 group_id');
|
||||||
|
}
|
||||||
|
if (contextMode === ContextMode.Group && payload.user_id) {
|
||||||
|
throw new Error('当前群聊发送,请指定 group_id 而不是 user_id');
|
||||||
|
}
|
||||||
|
throw new Error('请指定正确的 group_id 或 user_id');
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSpecialMsgNum(payload: OB11PostSendMsg, msgType: OB11MessageDataType): number {
|
function getSpecialMsgNum(payload: OB11PostSendMsg, msgType: OB11MessageDataType): number {
|
||||||
@@ -91,7 +107,7 @@ function getSpecialMsgNum(payload: OB11PostSendMsg, msgType: OB11MessageDataType
|
|||||||
export class SendMsgBase extends OneBotAction<OB11PostSendMsg, ReturnDataType> {
|
export class SendMsgBase extends OneBotAction<OB11PostSendMsg, ReturnDataType> {
|
||||||
contextMode = ContextMode.Normal;
|
contextMode = ContextMode.Normal;
|
||||||
|
|
||||||
protected override async check(payload: OB11PostSendMsg): Promise<BaseCheckResult & { parsedPayload?: OB11PostSendMsg }> {
|
protected override async check(payload: OB11PostSendMsg): Promise<BaseCheckResult> {
|
||||||
const messages = normalize(payload.message);
|
const messages = normalize(payload.message);
|
||||||
const nodeElementLength = getSpecialMsgNum(payload, OB11MessageDataType.node);
|
const nodeElementLength = getSpecialMsgNum(payload, OB11MessageDataType.node);
|
||||||
if (nodeElementLength > 0 && nodeElementLength != messages.length) {
|
if (nodeElementLength > 0 && nodeElementLength != messages.length) {
|
||||||
@@ -100,7 +116,7 @@ export class SendMsgBase extends OneBotAction<OB11PostSendMsg, ReturnDataType> {
|
|||||||
message: '转发消息不能和普通消息混在一起发送,转发需要保证message只有type为node的元素',
|
message: '转发消息不能和普通消息混在一起发送,转发需要保证message只有type为node的元素',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return { valid: true , parsedPayload: payload };
|
return { valid: true };
|
||||||
}
|
}
|
||||||
|
|
||||||
async _handle(payload: OB11PostSendMsg): Promise<ReturnDataType> {
|
async _handle(payload: OB11PostSendMsg): Promise<ReturnDataType> {
|
||||||
@@ -137,21 +153,25 @@ export class SendMsgBase extends OneBotAction<OB11PostSendMsg, ReturnDataType> {
|
|||||||
} else if (returnMsgAndResId.res_id && !returnMsgAndResId.message) {
|
} else if (returnMsgAndResId.res_id && !returnMsgAndResId.message) {
|
||||||
throw Error(`发送转发消息(res_id:${returnMsgAndResId.res_id} 失败`);
|
throw Error(`发送转发消息(res_id:${returnMsgAndResId.res_id} 失败`);
|
||||||
}
|
}
|
||||||
} else {
|
} else if (await this.getIsFowardOneMsg(messages)) {
|
||||||
// if (getSpecialMsgNum(payload, OB11MessageDataType.music)) {
|
let onebot_inner_forward = await this.getIsFowardOneMsg(messages);
|
||||||
// const music: OB11MessageCustomMusic = messages[0] as OB11MessageCustomMusic;
|
if (!onebot_inner_forward) throw Error('转发消息失败,未找到消息');
|
||||||
// if (music) {
|
const real_msgid = MessageUnique.getMsgIdAndPeerByShortId(+onebot_inner_forward.data.id)?.MsgId || onebot_inner_forward.data.id;
|
||||||
// }
|
await this.core.apis.MsgApi.forwardMsg(peer,
|
||||||
// }
|
peer,
|
||||||
|
[real_msgid]
|
||||||
|
);
|
||||||
|
// 暂时没办法筛选的委屈办法
|
||||||
|
return { message_id: +onebot_inner_forward.data.id };
|
||||||
}
|
}
|
||||||
// log("send msg:", peer, sendElements)
|
|
||||||
|
|
||||||
const { sendElements, deleteAfterSentFiles } = await this.obContext.apis.MsgApi
|
const { sendElements, deleteAfterSentFiles } = await this.obContext.apis.MsgApi
|
||||||
.createSendElements(messages, peer);
|
.createSendElements(messages, peer);
|
||||||
const returnMsg = await this.obContext.apis.MsgApi.sendMsgWithOb11UniqueId(peer, sendElements, deleteAfterSentFiles);
|
const returnMsg = await this.obContext.apis.MsgApi.sendMsgWithOb11UniqueId(peer, sendElements, deleteAfterSentFiles);
|
||||||
return { message_id: returnMsg.id! };
|
return { message_id: returnMsg.id! };
|
||||||
}
|
}
|
||||||
|
private async getIsFowardOneMsg(message: OB11MessageData[]): Promise<OB11MessageForward | undefined> {
|
||||||
|
return message.find(msg => msg.type === OB11MessageDataType.forward && isNumeric(msg.data.id)) as OB11MessageForward | undefined;
|
||||||
|
}
|
||||||
private async uploadForwardedNodesPacket(msgPeer: Peer, messageNodes: OB11MessageNode[], source?: string, news?: {
|
private async uploadForwardedNodesPacket(msgPeer: Peer, messageNodes: OB11MessageNode[], source?: string, news?: {
|
||||||
text: string
|
text: string
|
||||||
}[], summary?: string, prompt?: string, parentMeta?: {
|
}[], summary?: string, prompt?: string, parentMeta?: {
|
||||||
|
@@ -1,14 +1,15 @@
|
|||||||
import { ContextMode, SendMsgBase } from './SendMsg';
|
import { ContextMode, SendMsgBase } from './SendMsg';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName, BaseCheckResult } from '@/onebot/action/router';
|
||||||
import { OB11PostSendMsg } from '@/onebot/types';
|
import { OB11PostSendMsg } from '@/onebot/types';
|
||||||
|
|
||||||
// 未检测参数
|
// 未检测参数
|
||||||
class SendPrivateMsg extends SendMsgBase {
|
class SendPrivateMsg extends SendMsgBase {
|
||||||
override actionName = ActionName.SendPrivateMsg;
|
override actionName = ActionName.SendPrivateMsg;
|
||||||
override contextMode: ContextMode = ContextMode.Private;
|
override contextMode: ContextMode = ContextMode.Private;
|
||||||
override async _handle(payload: OB11PostSendMsg) {
|
|
||||||
if (payload.messages) payload.message = payload.messages;
|
protected override async check(payload: OB11PostSendMsg): Promise<BaseCheckResult> {
|
||||||
return super._handle(payload);
|
payload.message_type = 'private';
|
||||||
|
return super.check(payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName } from '@/onebot/action/router';
|
||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { MessageUnique } from '@/common/message-unique';
|
import { MessageUnique } from '@/common/message-unique';
|
||||||
import { z } from 'zod';
|
import { Static, Type } from '@sinclair/typebox';
|
||||||
import { coerce } from '@/common/coerce';
|
|
||||||
|
|
||||||
const SchemaData = z.object({
|
const SchemaData = Type.Object({
|
||||||
message_id: coerce.string(),
|
message_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
emoji_id: coerce.string(),
|
emoji_id: Type.Union([Type.Number(), Type.String()]),
|
||||||
set: coerce.boolean().optional(),
|
set: Type.Optional(Type.Union([Type.Boolean(), Type.String()]))
|
||||||
});
|
});
|
||||||
|
|
||||||
type Payload = z.infer<typeof SchemaData>;
|
type Payload = Static<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetMsgEmojiLike extends OneBotAction<Payload, unknown> {
|
export class SetMsgEmojiLike extends OneBotAction<Payload, unknown> {
|
||||||
override actionName = ActionName.SetMsgEmojiLike;
|
override actionName = ActionName.SetMsgEmojiLike;
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
||||||
import { ActionName } from '@/onebot/action/router';
|
import { ActionName, BaseCheckResult } from '@/onebot/action/router';
|
||||||
|
|
||||||
|
|
||||||
export abstract class GetPacketStatusDepends<PT, RT> extends OneBotAction<PT, RT> {
|
export abstract class GetPacketStatusDepends<PT, RT> extends OneBotAction<PT, RT> {
|
||||||
protected override async check(payload: PT) {
|
protected override async check(payload: PT): Promise<BaseCheckResult>{
|
||||||
if (!this.core.apis.PacketApi.available) {
|
if (!this.core.apis.PacketApi.available) {
|
||||||
return {
|
return {
|
||||||
valid: false,
|
valid: false,
|
||||||
|
@@ -8,7 +8,7 @@ export class GetRkeyEx extends GetPacketStatusDepends<void, unknown> {
|
|||||||
let rkeys = await this.core.apis.PacketApi.pkt.operation.FetchRkey();
|
let rkeys = await this.core.apis.PacketApi.pkt.operation.FetchRkey();
|
||||||
return rkeys.map(rkey => {
|
return rkeys.map(rkey => {
|
||||||
return {
|
return {
|
||||||
type: rkey.type === 10 ? 'private' : 'group',
|
type: rkey.type === 10 ? "private" : "group",
|
||||||
rkey: rkey.rkey,
|
rkey: rkey.rkey,
|
||||||
created_at: rkey.time,
|
created_at: rkey.time,
|
||||||
ttl: rkey.ttl,
|
ttl: rkey.ttl,
|
||||||
|
@@ -30,7 +30,7 @@ export class GetRkeyServer extends GetPacketStatusDepends<void, { private_rkey?:
|
|||||||
private_rkey: privateRkeyItem ? privateRkeyItem.rkey : undefined,
|
private_rkey: privateRkeyItem ? privateRkeyItem.rkey : undefined,
|
||||||
group_rkey: groupRkeyItem ? groupRkeyItem.rkey : undefined,
|
group_rkey: groupRkeyItem ? groupRkeyItem.rkey : undefined,
|
||||||
expired_time: this.expiryTime,
|
expired_time: this.expiryTime,
|
||||||
name: 'NapCat 4'
|
name: "NapCat 4"
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.rkeyCache;
|
return this.rkeyCache;
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user