fix: 解决问题

This commit is contained in:
2025-12-28 10:52:04 +08:00
parent 868979a423
commit 9f51d27398
18 changed files with 57061 additions and 201 deletions

View File

@@ -0,0 +1,52 @@
import xml2js from 'xml2js';
import { isBun } from '../utils/is-engine.ts';
import http from 'http';
export const xms2jsParser = async (data: string): Promise<any> => {
try {
// 使用xml2js解析XML
const xml = await xml2js.parseStringPromise(data);
return xml;
} catch (error) {
console.error('XML解析错误:', error);
return null;
}
}
export const parseXml = async (req: http.IncomingMessage): Promise<any> => {
if (isBun) {
// @ts-ignore
const body = req.body;
let xmlString = '';
if (body) {
xmlString = body;
}
if (!xmlString) {
// @ts-ignore
xmlString = await req.bun?.request?.text?.();
}
if (xmlString) {
return await xms2jsParser(xmlString)
}
console.error('没有读取到请求体');
return null;
}
return await new Promise((resolve) => {
// 读取请求数据
let data = '';
req.setEncoding('utf8');
// 监听data事件接收数据片段
req.on('data', (chunk) => {
data += chunk;
});
// 当请求结束时处理数据
req.on('end', () => {
try {
xms2jsParser(data).then((result) => {
resolve(result);
});
} catch (error) {
console.error('处理请求时出错:', error);
resolve(null);
}
});
});
};

View File

@@ -0,0 +1,19 @@
export const isNode = typeof process !== 'undefined' && process.versions != null && process.versions.node != null;
export const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && typeof document.createElement === 'function';
// @ts-ignore
export const isDeno = typeof Deno !== 'undefined' && typeof Deno.version === 'object' && typeof Deno.version.deno === 'string';
// @ts-ignore
export const isBun = typeof Bun !== 'undefined' && typeof Bun.version === 'string';
export const getEngine = () => {
if (isBun) {
return 'bun';
} else if (isNode) {
return 'node';
} else if (isBrowser) {
return 'browser';
} else if (isDeno) {
return 'deno';
}
return 'unknown';
};