forked from hjdhnx/drpy-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
110 lines (95 loc) · 3.48 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import fastifyStatic from '@fastify/static';
import * as fastlogger from './controllers/fastlogger.js'
import path from 'path';
import os from 'os';
import {fileURLToPath} from 'url';
import formBody from '@fastify/formbody';
const {fastify} = fastlogger;
// 获取当前路径
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const PORT = 5757;
const MAX_TEXT_SIZE = 100 * 1024; // 设置最大文本大小为 100 KB
// 静态资源
fastify.register(fastifyStatic, {
root: path.join(__dirname, 'public'),
prefix: '/public/',
});
fastify.register(fastifyStatic, {
root: path.join(__dirname, 'apps'),
prefix: '/apps/', // 新的访问路径前缀
decorateReply: false, // 禁用 sendFile
});
// 注册插件以支持 application/x-www-form-urlencoded
fastify.register(formBody);
// 注册控制器
import {registerRoutes} from './controllers/index.js';
registerRoutes(fastify, {
rootDir: __dirname,
docsDir: path.join(__dirname, 'docs'),
jsDir: path.join(__dirname, 'js'),
jxDir: path.join(__dirname, 'jx'),
viewsDir: path.join(__dirname, 'views'),
configDir: path.join(__dirname, 'config'),
PORT,
MAX_TEXT_SIZE,
indexFilePath: path.join(__dirname, 'index.json'),
customFilePath: path.join(__dirname, 'custom.json'),
subFilePath: path.join(__dirname, 'public/sub/sub.json'),
});
// 启动服务
const start = async () => {
try {
// 启动 Fastify 服务
await fastify.listen({port: PORT, host: '0.0.0.0'});
// 获取本地和局域网地址
const localAddress = `http://localhost:${PORT}`;
const interfaces = os.networkInterfaces();
let lanAddress = 'Not available';
for (const iface of Object.values(interfaces)) {
if (!iface) continue;
for (const config of iface) {
if (config.family === 'IPv4' && !config.internal) {
lanAddress = `http://${config.address}:${PORT}`;
break;
}
}
}
console.log(`Server listening at:`);
console.log(`- Local: ${localAddress}`);
console.log(`- LAN: ${lanAddress}`);
console.log(`- PLATFORM: ${process.platform} ${process.arch}`);
console.log(`- VERSION: ${process.version}`);
if (process.env.VERCEL) {
console.log('Running on Vercel!');
console.log('Vercel Environment:', process.env.VERCEL_ENV); // development, preview, production
console.log('Vercel URL:', process.env.VERCEL_URL);
console.log('Vercel Region:', process.env.VERCEL_REGION);
} else {
console.log('Not running on Vercel!');
}
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
};
// 停止服务
const stop = async () => {
try {
await fastify.close(); // 关闭服务器
console.log('Server stopped gracefully');
} catch (err) {
fastify.log.error('Error while stopping the server:', err);
}
};
// 导出 start 和 stop 方法
export {start, stop};
export default async function handler(req, res) {
await fastify.ready()
fastify.server.emit('request', req, res)
}
// 判断当前模块是否为主模块,如果是主模块,则启动服务
const currentFile = path.normalize(fileURLToPath(import.meta.url)); // 使用 normalize 确保路径一致
const indexFile = path.normalize(path.resolve(__dirname, 'index.js')); // 标准化路径
if (currentFile === indexFile) {
start();
}