mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-24 09:00:06 +08:00
141 lines
4.8 KiB
TypeScript
141 lines
4.8 KiB
TypeScript
import { IOB11NetworkAdapter, OB11NetworkReloadType } from './index';
|
|
import express, { Express, Request, Response } from 'express';
|
|
import http from 'http';
|
|
import { NapCatCore } from '@/core';
|
|
import { OB11Response } from '../action/OB11Response';
|
|
import { ActionMap } from '@/onebot/action';
|
|
import cors from 'cors';
|
|
import { HttpServerConfig } from '../config/config';
|
|
|
|
export class OB11PassiveHttpAdapter implements IOB11NetworkAdapter {
|
|
private app: Express | undefined;
|
|
private server: http.Server | undefined;
|
|
isEnable: boolean = false;
|
|
public config: HttpServerConfig;
|
|
|
|
constructor(
|
|
public name: string,
|
|
config: HttpServerConfig,
|
|
public core: NapCatCore,
|
|
public actions: ActionMap,
|
|
) {
|
|
this.config = structuredClone(config);
|
|
}
|
|
|
|
onEvent() {
|
|
// http server is passive, no need to emit event
|
|
}
|
|
|
|
open() {
|
|
try {
|
|
if (this.isEnable) {
|
|
this.core.context.logger.logError('Cannot open a closed HTTP server');
|
|
return;
|
|
}
|
|
if (!this.isEnable) {
|
|
this.initializeServer();
|
|
this.isEnable = true;
|
|
}
|
|
} catch (e) {
|
|
this.core.context.logger.logError(`[OneBot] [HTTP Server Adapter] Boot Error: ${e}`);
|
|
}
|
|
|
|
}
|
|
|
|
async close() {
|
|
this.isEnable = false;
|
|
this.server?.close();
|
|
this.app = undefined;
|
|
}
|
|
|
|
private initializeServer() {
|
|
this.app = express();
|
|
this.server = http.createServer(this.app);
|
|
|
|
this.app.use(cors());
|
|
this.app.use(express.urlencoded({ extended: true, limit: '5000mb' }));
|
|
this.app.use((req, res, next) => {
|
|
// 兼容处理没有带content-type的请求
|
|
req.headers['content-type'] = 'application/json';
|
|
const originalJson = express.json({ limit: '5000mb' });
|
|
originalJson(req, res, (err) => {
|
|
if (err) {
|
|
return res.status(400).send('Invalid JSON');
|
|
}
|
|
next();
|
|
});
|
|
});
|
|
|
|
this.app.use((req, res, next) => this.authorize(this.config.token, req, res, next));
|
|
this.app.use(async (req, res, _) => {
|
|
await this.handleRequest(req, res);
|
|
});
|
|
this.server.listen(this.config.port, () => {
|
|
this.core.context.logger.log(`[OneBot] [HTTP Server Adapter] Start On Port ${this.config.port}`);
|
|
});
|
|
}
|
|
|
|
private authorize(token: string | undefined, req: Request, res: Response, next: any) {
|
|
if (!token || token.length == 0) return next();//客户端未设置密钥
|
|
const HeaderClientToken = req.headers.authorization?.split('Bearer ').pop() || '';
|
|
const QueryClientToken = req.query.access_token;
|
|
const ClientToken = typeof (QueryClientToken) === 'string' && QueryClientToken !== '' ? QueryClientToken : HeaderClientToken;
|
|
if (ClientToken === token) {
|
|
return next();
|
|
} else {
|
|
return res.status(403).send(JSON.stringify({ message: 'token verify failed!' }));
|
|
}
|
|
}
|
|
|
|
private async handleRequest(req: Request, res: Response) {
|
|
if (!this.isEnable) {
|
|
this.core.context.logger.log(`[OneBot] [HTTP Server Adapter] Server is closed`);
|
|
return res.json(OB11Response.error('Server is closed', 200));
|
|
}
|
|
|
|
let payload = req.body;
|
|
if (req.method == 'get') {
|
|
payload = req.query;
|
|
} else if (req.query) {
|
|
payload = { ...req.query, ...req.body };
|
|
}
|
|
|
|
const actionName = req.path.split('/')[1];
|
|
const action = this.actions.get(actionName);
|
|
if (action) {
|
|
try {
|
|
const result = await action.handle(payload, this.name);
|
|
return res.json(result);
|
|
} catch (error: any) {
|
|
return res.json(OB11Response.error(error?.stack?.toString() || error?.message || 'Error Handle', 200));
|
|
}
|
|
} else {
|
|
return res.json(OB11Response.error('不支持的api ' + actionName, 200));
|
|
}
|
|
}
|
|
|
|
async reload(newConfig: HttpServerConfig) {
|
|
const wasEnabled = this.isEnable;
|
|
const oldPort = this.config.port;
|
|
this.config = newConfig;
|
|
|
|
if (newConfig.enable && !wasEnabled) {
|
|
this.open();
|
|
return OB11NetworkReloadType.NetWorkOpen;
|
|
} else if (!newConfig.enable && wasEnabled) {
|
|
this.close();
|
|
return OB11NetworkReloadType.NetWorkClose;
|
|
}
|
|
|
|
if (oldPort !== newConfig.port) {
|
|
this.close();
|
|
if (newConfig.enable) {
|
|
this.open();
|
|
}
|
|
return OB11NetworkReloadType.NetWorkReload;
|
|
}
|
|
|
|
return OB11NetworkReloadType.Normal;
|
|
}
|
|
}
|