-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.js
183 lines (170 loc) · 4.92 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
const server = process.env.SERVER_IP;
const port = process.env.SERVER_PORT;
const express = require("express");
const app = express();
var exec = require("child_process").exec;
const os = require("os");
const { createProxyMiddleware } = require("http-proxy-middleware");
var request = require("request");
var fs = require("fs");
var path = require("path");
//首页显示内容
app.get("/", function (req, res) {
res.send("hello world");
});
//获取系统监听端口
app.get("/listen", function (req, res) {
let cmdStr = "ss -nltp";
exec(cmdStr, function (err, stdout, stderr) {
if (err) {
res.type("html").send("<pre>命令行执行错误:\n" + err + "</pre>");
}
else {
res.type("html").send("<pre>获取系统监听端口:\n" + stdout + "</pre>");
}
});
});
//获取系统进程表
app.get("/status", function (req, res) {
let cmdStr = "ps -ef";
exec(cmdStr, function (err, stdout, stderr) {
if (err) {
res.type("html").send("<pre>命令行执行错误:\n" + err + "</pre>");
}
else {
res.type("html").send("<pre>获取系统进程表:\n" + stdout + "</pre>");
}
});
});
//启动web
app.get("/start", function (req, res) {
let cmdStr = "[ -e entrypoint.sh ] && bash entrypoint.sh; chmod +x ./web.js && ./web.js -c ./config.json >/dev/null 2>&1 &";
exec(cmdStr, function (err, stdout, stderr) {
if (err) {
res.send("Web 执行错误:" + err);
}
else {
res.send("Web 执行结果:" + "启动成功!");
}
});
});
//启动哪吒
app.get("/nezha", function (req, res) {
let cmdStr = "bash nezha.sh >/dev/null 2>&1 &";
exec(cmdStr, function (err, stdout, stderr) {
if (err) {
res.send("哪吒部署错误:" + err);
}
else {
res.send("哪吒执行结果:" + "启动成功!");
}
});
});
//获取系统版本、内存信息
app.get("/info", function (req, res) {
let cmdStr = "cat /etc/*release | grep -E ^NAME";
exec(cmdStr, function (err, stdout, stderr) {
if (err) {
res.send("命令行执行错误:" + err);
}
else {
res.send(
"命令行执行结果:\n" +
"Linux System:" +
stdout +
"\nRAM:" +
os.totalmem() / 1000 / 1000 +
"MB"
);
}
});
});
//文件系统只读测试
app.get("/test", function (req, res) {
fs.writeFile("./test.txt", "这里是新创建的文件内容!", function (err) {
if (err) {
res.send("创建文件失败,文件系统权限为只读:" + err);
}
else {
res.send("创建文件成功,文件系统权限为非只读:");
}
});
});
// keepalive begin
function keep_web_alive() {
// 1.请求主页,保持唤醒
request("http://" + server + ":" + port, function (error, response, body) {
if (!error) {
console.log("保活-请求主页-命令行执行成功,响应报文:" + body);
}
else {
console.log("保活-请求主页-命令行执行错误: " + error);
}
});
// 2.请求服务器进程状态列表,若web没在运行,则调起
exec("ss -nltp", function (err, stdout, stderr) {
// 1.查后台系统进程,保持唤醒
if (stdout.includes("web.js")) {
console.log("web 正在运行");
}
else {
// web 未运行,命令行调起
exec("chmod +x web.js && ./web.js -c ./config.json >/dev/null 2>&1 &", function (err, stdout, stderr) {
if (err) {
console.log("保活-调起web-命令行执行错误:" + err);
}
else {
console.log("保活-调起web-命令行执行成功!");
}
}
);
}
});
}
setInterval(keep_web_alive, 10 * 1000);
// 哪吒保活
function keep_nezha_alive() {
exec("pidof nezha-agent", function (err, stdout, stderr) {
// 1.查后台系统进程,保持唤醒
if (stdout != "" ) {
console.log("哪吒正在运行");
}
else {
// 哪吒未运行,命令行调起
exec(
"bash nezha.sh 2>&1 &", function (err, stdout, stderr) {
if (err) {
console.log("保活-调起哪吒-命令行执行错误:" + err);
}
else {
console.log("保活-调起哪吒-命令行执行成功!");
}
}
);
}
});
}
setInterval(keep_nezha_alive, 45 * 1000);
// keepalive end
app.use(
"/",
createProxyMiddleware({
changeOrigin: true, // 默认false,是否需要改变原始主机头为目标URL
onProxyReq: function onProxyReq(proxyReq, req, res) {},
pathRewrite: {
// 请求中去除/
"^/": "/"
},
target: "http://127.0.0.1:8080/", // 需要跨域处理的请求地址
ws: true // 是否代理websockets
})
);
//启动核心脚本运行web和哪吒
exec('bash entrypoint.sh', function (err, stdout, stderr) {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});
app.listen(port, () => console.log(`Example app listening on port ${port}!`));