forked from Oferlis/sharkio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.mjs
executable file
·209 lines (189 loc) · 6.59 KB
/
index.mjs
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
#!/usr/bin/env node
import axios from 'axios';
import { spawn } from 'child_process';
import kill from 'kill-port';
import net from 'net';
import open from "open";
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
const snifferManagerAxios = axios.create({ baseURL: "http://localhost:5012" });
function checkAdminPort(port = 5012) {
return new Promise((resolve) => {
const tester = net.createConnection({ port }, () => {
tester.end();
resolve(true);
});
tester.on('error', () => {
resolve(false);
});
});
}
async function startAdmin() {
const isAdminPortAvailable = await checkAdminPort();
console.log("Admin port available: " + isAdminPortAvailable);
if (isAdminPortAvailable) {
console.log("Port 5012 is already taken");
return;
}
const childProcess = spawn('npm', ['run', "sniffer"], {
detached: true,
stdio: 'ignore',
});
childProcess.unref();
}
async function killAdmin(port = 5012) {
kill(port, 'tcp')
.then(() => console.log("Admin is killed"))
.catch((e) => {
console.log("Failed to kill admin");
console.error(e.message);
})
}
function startDashboard() {
const childProcess = spawn('node', ['dashboard-main.mjs'], {
detached: true,
stdio: 'ignore',
});
childProcess.unref();
}
function openDashboard(port = 3000) {
open(`http://localhost:${port}`);
}
async function killDashboard(port = 3000) {
kill(port, 'tcp')
.then(() => console.log("Dashboard is killed"))
.catch((e) => {
console.log("Failed to kill the dashboard");
console.error(e.message);
})
}
async function createSniffer(port, downstreamUrl, name) {
const sniffers = await snifferManagerAxios.post("/sharkio/sniffer", {
name,
port,
downstreamUrl
}, {
headers: {
'Content-Type': "application/json"
}
}).then((res) => res.data);
console.log(JSON.stringify(sniffers));
}
async function listSniffers() {
await snifferManagerAxios.get("/sharkio/sniffer").then((res) => {
console.log(JSON.stringify(res.data));
});
}
async function startSniffer(port) {
await snifferManagerAxios.post(`sharkio/sniffer/${port}/actions/start`).then((res) => {
console.log(JSON.stringify(res.data));
}).catch((e) => {
console.error("Failed to start sniffer");
});
}
async function stopSniffer(port) {
await snifferManagerAxios.post(`sharkio/sniffer/${port}/actions/stop`).then((res) => {
console.log(JSON.stringify(res.data));
}).catch((e) => {
console.error("Failed to stop sniffer");
});
}
async function removeSniffer(port) {
await snifferManagerAxios.delete(`sharkio/sniffer/${port}`).then((res) => {
console.log(JSON.stringify(res.data));
}).catch((e) => {
console.error("Failed to remove sniffer");
});
}
yargs(hideBin(process.argv))
.demandCommand()
.scriptName("")
.command('start', 'Start dashboard and proxy manager', (yargs) => {
return yargs
}, async (argv) => {
await startAdmin();
await startDashboard();
await openDashboard();
})
.command('dashboard [command]', 'Dashboard server', (yargs) => {
return yargs
.command("start", 'Starting dashboard server', (yargs) => {
return yargs
}, () => {
console.log("Starting dashboard server");
startDashboard();
})
.command("open", 'Open the dashboard', (yargs) => {
return yargs
}, () => {
console.log("Opening dashboard server");
openDashboard();
})
.command('kill', 'Kill the dashboard server', (yargs) => {
return yargs
}, (argv) => {
console.log("Killing the dashboard server")
killDashboard();
}).demandCommand()
})
.command('admin [command]', 'Proxy admin server', (yargs) => {
return yargs
.command('sniffer [command]', 'Proxy manager commands', (yargs) => {
return yargs
.command("create [port] [downstreamUrl] [name]", 'Create a new sniffer', (yargs) => {
return yargs
.option("port")
.option("downstreamUrl")
.option("name")
.demandOption("port")
.demandOption("downstreamUrl")
.demandOption("name")
}, async (argv) => {
console.log("Creating a new sniffer")
await createSniffer(argv.port, argv.downstreamUrl, argv.name);
})
.command("list", 'List sniffers', (yargs) => {
return yargs
}, async (argv) => {
await listSniffers();
})
.command("start [port]", "Start a sniffer", (yargs) => {
return yargs
.option("port")
.demandOption("port");
}, async (argv) => {
await startSniffer(argv.port);
})
.command("stop [port]", "Stop a sniffer", (yargs) => {
return yargs
.option("port")
.demandOption("port");
}, async (argv) => {
await stopSniffer(argv.port);
})
.command("remove [port]", "Stop a sniffer", (yargs) => {
return yargs
.option("port")
.demandOption("port");
}, async (argv) => {
await removeSniffer(argv.port);
})
},
(argv) => {
}
)
.command("start", 'Start admin server', (yargs) => {
return yargs
}, () => {
console.log("Starting admin servers");
startAdmin();
})
.command('kill', 'Kill the admin server', (yargs) => {
return yargs
}, (argv) => {
console.log("Killing the admin server");
killAdmin();
}).demandCommand()
.demandCommand()
})
.parse()