-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiPanel-Serein.ts
443 lines (387 loc) · 10.6 KB
/
iPanel-Serein.ts
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
/// <reference path="SereinJSPluginHelper/index.d.ts"/>
declare interface Packet {
type: string;
subType: string;
data?: any;
}
declare interface IConfig {
customName?: string;
websocket: {
addr: string;
password: string;
};
reconnect: {
enable: boolean;
interval: number;
maxTimes: number;
};
}
declare interface IInfo {
verified: boolean;
disconnectInfo?: string;
trialTimes: number;
}
const VERSION = '2.3.0.0';
serein.registerPlugin(
'iPanel-Serein',
VERSION,
'Zaitonn',
'网页版控制台-Serein插件'
);
serein.setListener('onPluginsLoaded', connect);
serein.setListener('onServerStart', onServerStart);
serein.setListener('onServerStop', onServerStop);
serein.setListener('onServerSendCommand', onServerSendCommand);
serein.setListener('onServerOriginalOutput', onServerOriginalOutput);
const {
Security: {
Cryptography: { MD5 },
},
Text: { Encoding },
Environment,
Guid,
IO: { File },
} = System;
const logger = new Logger('iPanel');
const paths = {
dir: 'plugins/iPanel-Serein',
config: 'plugins/iPanel-Serein/config.json',
instanceID: 'plugins/iPanel-Serein/.instanceId',
};
const inputCache = [];
const outputCache = [];
/**
* 默认配置
*/
const defaultConfig: IConfig = {
websocket: {
addr: 'ws://127.0.0.1:30000/ws/instance',
password: '',
},
customName: '',
reconnect: {
enable: true,
interval: 1000 * 7.5,
maxTimes: 10,
},
};
import stdio = require('./modules/stdio.js');
const { createDirectory, existFile, readAllTextFromFile, writeAllTextToFile } =
stdio;
const config = loadConfig();
let ws: WSClient = null;
const info: IInfo = {
verified: false,
trialTimes: 0,
};
/**
* 发送数据包
* @param packet 数据包
*/
function send(packet: Packet) {
if (ws?.state === 1) {
ws.send(JSON.stringify(packet));
}
}
/**
* 快速发送
*/
function fastSend(type: string, subType: string, data?: any) {
send({ type, subType: subType, data });
}
/**
* 消息事件
*/
function onmessage(msg: string) {
const packet = JSON.parse(msg) as Packet;
switch (packet.type) {
case 'request':
handleRequest(packet);
break;
case 'event':
handleEvent(packet);
break;
}
}
/**
* 处理event
*/
function handleEvent({ subType, data }: Packet) {
switch (subType) {
case 'verify_result':
if (data.success) {
logger.info('[Host] 验证通过');
info.verified = true;
} else logger.info(`[Host] 验证失败: ${data.reason}`);
break;
case 'disconnection':
info.disconnectInfo = data.reason;
break;
}
}
/**
* 处理request
*/
function handleRequest({ subType, data }: Packet) {
switch (subType) {
case 'heartbeat':
const {
name: os,
hardware: {
CPUs: [{ name: cpuName }],
RAM: { free: freeRam, total: totalRam },
},
} = serein.getSysInfo();
const motd = serein.getServerMotd();
send({
type: 'return',
subType: 'heartbeat',
data: {
system: {
os,
cpuName,
totalRam,
freeRam,
cpuUsage: serein.getCPUUsage(),
},
server: {
filename:
(serein.getServerStatus() &&
serein.getServerFile()) ||
null,
status: serein.getServerStatus(),
runTime: serein.getServerTime() || null,
usage: serein.getServerCPUUsage(),
capacity: motd?.maxPlayer,
onlinePlayers: motd?.onlinePlayer,
version: motd?.version,
},
},
});
break;
case 'server_start':
logger.info(`[用户] 启动服务器`);
serein.startServer();
break;
case 'server_stop':
logger.info(`[用户] 关闭服务器`);
serein.stopServer();
break;
case 'server_kill':
logger.warn(`[用户] 强制结束服务器`);
serein.killServer();
break;
case 'server_input':
logger.info(`[用户] 服务器输入`);
Array.from(data).forEach((line: string) => serein.sendCmd(line));
break;
}
}
/**
* 获取MD5
* @param text 输入文本
* @returns MD5值
*/
function getMD5(text: string) {
let result = '';
MD5.Create()
.ComputeHash(Encoding.UTF8.GetBytes(String(text)))
.forEach(
(byte: Number) =>
(result += Number(byte).toString(16).padStart(2, '0'))
);
return result;
}
/**
* 连接
*/
function connect() {
ws = new WSClient(config.websocket.addr, serein.namespace);
ws.onopen = onopen;
ws.onclose = onclose;
ws.onmessage = onmessage;
ws.open();
}
/**
* 开启事件
*/
function onopen() {
info.disconnectInfo = undefined;
info.trialTimes = 0;
logger.info(`已连接到“${config.websocket.addr}”`);
const time = new Date().toISOString();
send({
type: 'request',
subType: 'verify',
data: {
md5: getMD5(`${time}.${config.websocket.password}`),
instanceId: loadInstanceID(),
customName: config.customName || null,
time,
metadata: {
version: serein.version,
name: 'Serein',
environment: `NET ${Environment.Version.ToString()}`,
},
},
});
}
/**
* 关闭事件
*/
function onclose() {
logger.warn(
`连接已断开${info.disconnectInfo ? ': ' + info.disconnectInfo : ''}`
);
if (!info.verified)
logger.warn(
'貌似没有成功连接过,自动重连已关闭。请检查地址是否配置正确'
);
else {
// @ts-ignore
setTimeout(reconnect, config.reconnect.interval);
}
}
/**
* 重连
*/
function reconnect() {
info.trialTimes += 1;
if (info.trialTimes < config.reconnect.maxTimes) {
logger.info(
`尝试重连中...${info.trialTimes}/${config.reconnect.maxTimes}`
);
connect();
} else {
logger.warn('重连次数已达上限');
}
}
/**
* 发送输入缓存
*/
function sendInputCache() {
if (inputCache.length > 0) {
fastSend('broadcast', 'server_input', inputCache);
inputCache.splice(0, inputCache.length);
}
}
/**
* 发送输出缓存
*/
function sendOutputCache() {
if (outputCache.length > 0) {
fastSend('broadcast', 'server_output', outputCache);
outputCache.splice(0, outputCache.length);
}
}
/**
* 服务器开启
*/
function onServerStart() {
fastSend('broadcast', 'server_start');
}
/**
* 服务器关闭
*/
function onServerStop(code: number) {
fastSend('broadcast', 'server_stop', code);
}
/**
* 服务器输入
*/
function onServerSendCommand(line: string) {
inputCache.push(line);
}
/**
* 服务器输出
*/
function onServerOriginalOutput(line: string) {
outputCache.push(line);
}
/**
* 加载配置文件
* @returns 配置
*/
function loadConfig(): IConfig {
if (existFile(paths.config)) {
const config = JSON.parse(readAllTextFromFile(paths.config));
checkConfig(config);
return config;
} else {
createConfigFile();
if (Environment.Version.Major == 6) {
serein.setPreLoadConfig([
'System.Security.Cryptography.Algorithms',
]);
}
throw new Error('配置文件已创建,请修改后重新加载此插件');
}
}
/**
* 加载实例ID
* @returns 实例ID
*/
function loadInstanceID() {
if (existFile(paths.instanceID)) {
const id = (File.ReadAllBytes(paths.instanceID) as number[])
.map((byte) => byte.toString(16).padStart(2, '0'))
.join('');
if (/^\w{32}$/.test(id)) return id;
}
const newId: string = Guid.NewGuid().ToString('N');
logger.warn(`新的实例ID已生成:${newId}`);
createDirectory(paths.dir);
const bytes = [];
for (let index = 0; index < newId.length; index += 2) {
bytes.push(parseInt(`${newId[index]}${newId[index + 1]}`, 16));
}
File.WriteAllBytes(paths.instanceID, bytes);
return newId;
}
/**
* 创建配置文件
*/
function createConfigFile() {
createDirectory(paths.dir);
writeAllTextToFile(paths.config, JSON.stringify(defaultConfig, null, 2));
}
/**
* 检查配置
* @param config 配置对象
*/
function checkConfig(config: IConfig) {
if (!config.customName) logger.warn('配置文件中自定义名称为空');
if (!config.websocket)
throw new Error(
'配置文件中`websocket`项丢失,请删除配置文件后重新加载以创建'
);
if (!config.reconnect)
throw new Error(
'配置文件中`reconnect`项丢失,请删除配置文件后重新加载以创建'
);
if (!config.websocket.addr)
throw new Error('配置文件中`websocket.addr`项为空');
if (!config.websocket.password)
throw new Error('配置文件中`websocket.password`项为空');
if (typeof config.websocket.addr != 'string')
throw new Error('配置文件中`websocket.addr`类型不正确');
if (typeof config.websocket.password != 'string')
throw new Error('配置文件中`websocket.password`类型不正确');
if (!/^wss?:\/\/.+/.test(config.websocket.addr))
throw new Error('配置文件中`websocket.addr`项格式不正确');
if (typeof config.reconnect.enable != 'boolean')
throw new Error('配置文件中`reconnect.enable`类型不正确');
if (typeof config.reconnect.interval != 'number')
throw new Error('配置文件中`reconnect.interval`类型不正确');
if (typeof config.reconnect.maxTimes != 'number')
throw new Error('配置文件中`reconnect.maxTimes`类型不正确');
if (config.reconnect.interval <= 500)
throw new Error('配置文件中`reconnect.interval`数值超出范围');
if (config.reconnect.maxTimes < 0)
throw new Error('配置文件中`reconnect.maxTimes`数值超出范围');
}
// @ts-ignore
setInterval(() => {
sendInputCache();
sendOutputCache();
}, 250);