-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
119 lines (106 loc) · 3.45 KB
/
app.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
const { program } = require('commander');
const open = require('open');
const readline = require('readline');
const net = require('net');
const Socket = net.Socket;
const serverModule = require('./modules/server');
const settingsModule = require('./modules/settings');
const logsModule = require('./modules/logs');
process.on('SIGINT', async function() {
serverModule.stopAll();
});
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
async function isPortTaken(port) {
return new Promise((resolve) => {
const socket = new Socket();
socket.on("timeout", () => {
resolve(false);
socket.destroy();
});
socket.on("connect", () => {
resolve(true);
});
socket.on("error", error => {
if (error.code !== "ECONNREFUSED") resolve(true);
else resolve(false);
});
socket.connect(port, "0.0.0.0");
});
}
async function findAvailablePort(startPort) {
let port = startPort;
let maxPort = startPort + 100;
while (await isPortTaken(port)) {
if (port >= maxPort) {
throw new Error('No available ports found');
}
port++;
}
return port;
}
const originalLog = console.log;
console.log = function (...args) {
originalLog.apply(console, args);
rl.prompt();
};
program
.option('-p, --port <port>', 'Set server port', parseInt)
.option('-d, --dir <dir>', 'Set server dir', String)
.option('-r, --run', 'Run the server', false)
.parse(process.argv);
(async () => {
await settingsModule.init();
await settingsModule.read();
const port = await findAvailablePort(3000);
const subPort = program.opts().port || 8080;
const autoServer = program.opts().run || false;
const pathServer = program.opts().dir || settingsModule.getObjects().path;
await serverModule.startMain(port, pathServer, autoServer, subPort);
if (settingsModule.getObjects().app.auto_web) {
await open(`http://localhost:${port}`);
}
let exit = false;
readline.emitKeypressEvents(process.stdin);
process.stdin.on('keypress', (ch, key) => {
if (key && key.name === 'escape') {
console.log('Close app? (y)');
exit = true
rl.prompt();
} else if (key && key.name === 'y' && exit) {
console.log('\nExiting application...');
rl.close();
} else {
exit = false
}
});
process.stdin.setRawMode(true);
rl.on('line', async(input) => {
if (input.trim() === 'open') {
await open(`http://localhost:${port}`);
} else if (input.trim() === 'exit') {
console.log('Exiting application...');
} else if (input.trim() === 'stop') {
await serverModule.stop();
} else if (input.trim() === 'run') {
await serverModule.run();
} else if (input.trim() === 'help' || input.trim() === '-h') {
const help =
'exit - Close application\n' +
'run - Start server\n' +
'stop - Stop server';
console.log(help);
} else {
console.log('Unknown command. To get available commands -h');
}
rl.prompt();
});
rl.prompt();
rl.on('close', async() => {
console.log('Application closed.');
await logsModule.write('Application closed.')
process.exit(0);
});
})();