Restructure code for multiple files

This commit is contained in:
Aelita4 2022-08-18 08:31:00 +02:00
parent f59b28d37d
commit 78b6c6b687
Signed by: Aelita4
GPG Key ID: F8EC95519509D1D5
7 changed files with 187 additions and 124 deletions

View File

@ -1,6 +1,6 @@
import express, { Request, Response } from 'express'; import express, { Request, Response } from 'express';
import * as Ping from 'ping'; import * as Ping from 'ping';
import * as fs from 'fs'; import { existsSync, readdirSync, writeFileSync, readFileSync } from 'fs';
const ping = async (host: string) => { const ping = async (host: string) => {
const result = await Ping.promise.probe(host, { const result = await Ping.promise.probe(host, {
@ -14,132 +14,24 @@ const app = express();
const pings = new Map(); const pings = new Map();
if(!fs.existsSync("../data.json")) fs.writeFileSync("../data.json", "[]"); if(!existsSync("../data.json")) writeFileSync("../data.json", "[]");
let addresses = JSON.parse(fs.readFileSync("../data.json", {encoding:'utf8', flag:'r'})) let addresses = JSON.parse(readFileSync("../data.json", {encoding:'utf8', flag:'r'}))
addresses.forEach((a: string) => pings.set(a, -1)); addresses.forEach((a: string) => pings.set(a, -1));
const timeoutDelay = 60000; const timeoutDelay = 60000;
app.get("/", async (req: Request, res: Response) => { const routes = readdirSync("./routes");
addresses = JSON.parse(fs.readFileSync("../data.json", {encoding:'utf8', flag:'r'})) routes.forEach(route => {
let out = `<html><head><script>const addresses = ["${addresses.join('", "')}"]; const file = require(`./routes/${route}`);
function clock() { app.get(file.url, file.callback.bind(null, { addresses, ping, pings, timeoutDelay }))
const x = new Date();
document.getElementById("time").innerHTML = String(x.getHours()).padStart(2, '0') + ":" + String(x.getMinutes()).padStart(2, '0') + ":" + String(x.getSeconds()).padStart(2, '0');
}
async function addIP() {
const addrElement = document.getElementById("addresses");
const ip = document.getElementById("ipaddr").value;
addresses.push("ip")
addrElement.innerHTML += '<div id="' + ip + '_main"><tr><td><input type="button" name="' + ip + '_rem" value="x" onClick="removeIP(\"' + ip + '\")"></td><td><div style="display: inline-block;" id="' + ip + '_addr">' + ip + '</div></td><td><div style="display: inline-block; margin-left: 5em" id="' + ip + '_status"><span style="color:blue;">PINGING...</span></div></td></tr></div>'
const b = document.getElementById(ip + "_status");
await fetch('http://localhost:8080/addIP/' + ip)
window.location.reload(true);
/*await fetch('http://localhost:8080/ping/' + ip)
.then((response) => response.json())
.then((data) => {
b.innerHTML = data.alive ? '<span style="color:green;">UP (' + data.numeric_host + ") " + data.time + 'ms</span>' : '<span style="color:red;">DOWN' + ((data.host == "unknown") ? " (UNKNOWN HOST)" : (" (" + data.numeric_host + ")")) + '</span>'
});*/
}
async function removeIP(ip) {
const tab = document.getElementById("tab");
tab.deleteRow(addresses.indexOf(ip.toString()));
await fetch('http://localhost:8080/removeIP/' + ip)
const a = document.getElementById(ip + "_main");
a.remove();
}
async function aaa() {
const date = new Date();
document.getElementById("main").innerHTML = "Last checked: " + date;
document.getElementById("eta").innerHTML = "Next scheduled check: " + new Date(date.getTime() + ${timeoutDelay});
addresses.forEach(async a => {
const b = document.getElementById(a + "_status");
if(!b) return;
b.innerHTML = '<span style="color:blue;">PINGING...</span>'
await fetch('http://localhost:8080/ping/' + a)
.then((response) => response.json())
.then(async (data) => {
b.innerHTML = data.alive ? '<span style="color:green;">UP (' + data.numeric_host + ") " + data.time + 'ms</span>' : '<span style="color:red;">DOWN' + ((data.host == "unknown") ? " (UNKNOWN HOST)" : (" (" + data.numeric_host + ")")) + " since " + new Date((await (await fetch('http://localhost:8080/downtime/' + a)).json()).downSince) + '</span>'
});
})
setTimeout(aaa, ${timeoutDelay})
}
window.onload = async () => {
const x = new Date();
document.getElementById("time").innerHTML = String(x.getHours()).padStart(2, '0') + ":" + String(x.getMinutes()).padStart(2, '0') + ":" + String(x.getSeconds()).padStart(2, '0');
const clockRefresh = 1000;
aaa();
setInterval(clock, clockRefresh);
}
</script></head><body><div id="time">12:00:00</div><div id="main"></div><div id="eta"></div><br />
<input type="text" name="ipaddr" id="ipaddr" value=""><input type="submit" id="but" name="but" value="Add" onClick="addIP()"><br /><br /><div id="addresses"><table id="tab">`;
addresses.forEach((a: string) => {
out += `<div id="${a}_main"><tr><td><input type="button" name="${a}_rem" value="x" onClick="removeIP('${a}')"></td><td><div style="display: inline-block;" id="${a}_addr">${a}</div></td><td><div style="display: inline-block; margin-left: 5em" id="${a}_status"><span>WAITING</span></div></td></tr></div>`;
})
out += `</table></div><script>document.getElementById("ipaddr")
.addEventListener("keyup", function(event) {
event.preventDefault();
if (event.keyCode === 13) {
document.getElementById("but").click();
}
});</script></body></html>`;
res.send(out);
});
app.get("/ping/:ip", async (req: Request, res: Response) => {
const ip = req.params.ip;
const r = await ping(ip);
if(!r.alive && pings.get(ip) === -1) pings.set(ip, Date.now());
else if(r.alive) pings.set(ip, -1);
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(r));
});
app.get("/downtime/:ip", async (req: Request, res: Response) => {
const ip = req.params.ip;
const json = { downSince: pings.get(ip) };
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(json));
});
app.get("/addIP/:ip", async (req: Request, res: Response) => {
if(!fs.existsSync("../data.json")) fs.writeFileSync("../data.json", "[]");
const json = JSON.parse(fs.readFileSync("../data.json", {encoding:'utf8', flag:'r'}));
json.push(req.params.ip);
fs.writeFileSync("../data.json", JSON.stringify(json))
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ status: "OK" }));
});
app.get("/removeIP/:ip", async (req: Request, res: Response) => {
if(!fs.existsSync("../data.json")) fs.writeFileSync("../data.json", "[]");
const json = JSON.parse(fs.readFileSync("../data.json", {encoding:'utf8', flag:'r'}));
json.splice(json.indexOf(req.params.ip.toString()), 1)
fs.writeFileSync("../data.json", JSON.stringify(json))
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ status: "OK" }));
}); });
app.set('views', __dirname + '/../views');
app.set('view engine', 'ejs'); app.set('view engine', 'ejs');
app.listen(8080, () => console.log('rdy')); app.listen(8080, () => console.log('rdy'));
export interface Data {
ping: Function,
pings: Map<string, number>,
addresses: Array<string>,
timeoutDelay: number
};

18
src/routes/addIP.ts Normal file
View File

@ -0,0 +1,18 @@
import { Request, Response } from 'express';
import { existsSync, writeFileSync, readFileSync } from 'fs'
module.exports = {
url: "/addIP/:ip",
callback: async (data: any, req: Request, res: Response) => {
if(!existsSync("../data.json")) writeFileSync("../data.json", "[]");
const json = JSON.parse(readFileSync("../data.json", {encoding:'utf8', flag:'r'}));
json.push(req.params.ip);
writeFileSync("../data.json", JSON.stringify(json))
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ status: "OK" }));
}
}

13
src/routes/downtime.ts Normal file
View File

@ -0,0 +1,13 @@
import { Request, Response } from 'express';
module.exports = {
url: "/downtime/:ip",
callback: async (data: any, req: Request, res: Response) => {
const ip = req.params.ip;
const json = { downSince: data.pings.get(ip) };
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(json));
}
}

13
src/routes/ping.ts Normal file
View File

@ -0,0 +1,13 @@
import { Request, Response } from 'express';
module.exports = {
url: "/ping/:ip",
callback: async (data: any, req: Request, res: Response) => {
const ip = req.params.ip;
const r = await data.ping(ip);
if(!r.alive && data.pings.get(ip) === -1) data.pings.set(ip, Date.now());
else if(r.alive) data.pings.set(ip, -1);
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(r));
}
}

17
src/routes/removeIP.ts Normal file
View File

@ -0,0 +1,17 @@
import { Request, Response } from 'express';
import { existsSync, writeFileSync, readFileSync } from 'fs'
module.exports = {
url: "/removeIP/:ip",
callback: async (data: any, req: Request, res: Response) => {
if(!existsSync("../data.json")) writeFileSync("../data.json", "[]");
const json = JSON.parse(readFileSync("../data.json", {encoding:'utf8', flag:'r'}));
json.splice(json.indexOf(req.params.ip.toString()), 1)
writeFileSync("../data.json", JSON.stringify(json))
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ status: "OK" }));
}
}

13
src/routes/root.ts Normal file
View File

@ -0,0 +1,13 @@
import { Request, Response } from 'express';
import { readFileSync } from 'fs';
module.exports = {
url: "/",
callback: async (data: any, req: Request, res: Response) => {
data.addresses = JSON.parse(readFileSync("../data.json", {encoding:'utf8', flag:'r'}))
res.render('pages/index.ejs', {
addresses: data.addresses,
timeoutDelay: data.timeoutDelay
});
}
}

97
views/pages/index.ejs Normal file
View File

@ -0,0 +1,97 @@
<html>
<head>
<script>
const addresses = ["<%- addresses.join(`", \"`) %>"];
function clock() {
const x = new Date();
document.getElementById("time").innerHTML = String(x.getHours()).padStart(2, '0') + ":" + String(x.getMinutes()).padStart(2, '0') + ":" + String(x.getSeconds()).padStart(2, '0');
}
async function addIP() {
const addrElement = document.getElementById("addresses");
const ip = document.getElementById("ipaddr").value;
addresses.push("ip")
addrElement.innerHTML += '<div id="' + ip + '_main"><tr><td><input type="button" name="' + ip + '_rem" value="x" onClick="removeIP(\"' + ip + '\")"></td><td><div style="display: inline-block;" id="' + ip + '_addr">' + ip + '</div></td><td><div style="display: inline-block; margin-left: 5em" id="' + ip + '_status"><span style="color:blue;">PINGING...</span></div></td></tr></div>'
const b = document.getElementById(ip + "_status");
await fetch('http://localhost:8080/addIP/' + ip)
window.location.reload(true);
/*await fetch('http://localhost:8080/ping/' + ip)
.then((response) => response.json())
.then((data) => {
b.innerHTML = data.alive ? '<span style="color:green;">UP (' + data.numeric_host + ") " + data.time + 'ms</span>' : '<span style="color:red;">DOWN' + ((data.host == "unknown") ? " (UNKNOWN HOST)" : (" (" + data.numeric_host + ")")) + '</span>'
});*/
}
async function removeIP(ip) {
const tab = document.getElementById("tab");
tab.deleteRow(addresses.indexOf(ip.toString()));
await fetch('http://localhost:8080/removeIP/' + ip)
const a = document.getElementById(ip + "_main");
a.remove();
}
async function aaa() {
const date = new Date();
document.getElementById("main").innerHTML = "Last checked: " + date;
document.getElementById("eta").innerHTML = "Next scheduled check: " + new Date(date.getTime() + <%= timeoutDelay %>);
addresses.forEach(async a => {
const b = document.getElementById(a + "_status");
if(!b) return;
b.innerHTML = '<span style="color:blue;">PINGING...</span>'
await fetch('http://localhost:8080/ping/' + a)
.then((response) => response.json())
.then(async (data) => {
b.innerHTML = data.alive ? '<span style="color:green;">UP (' + data.numeric_host + ") " + data.time + 'ms</span>' : '<span style="color:red;">DOWN' + ((data.host == "unknown") ? " (UNKNOWN HOST)" : (" (" + data.numeric_host + ")")) + " since " + new Date((await (await fetch('http://localhost:8080/downtime/' + a)).json()).downSince) + '</span>'
});
})
setTimeout(aaa, <%= timeoutDelay %>)
}
window.onload = async () => {
const x = new Date();
document.getElementById("time").innerHTML = String(x.getHours()).padStart(2, '0') + ":" + String(x.getMinutes()).padStart(2, '0') + ":" + String(x.getSeconds()).padStart(2, '0');
const clockRefresh = 1000;
aaa();
setInterval(clock, clockRefresh);
}
</script>
</head>
<body>
<div id="time">12:00:00</div>
<div id="main"></div>
<div id="eta"></div><br />
<input type="text" name="ipaddr" id="ipaddr" value="">
<input type="submit" id="but" name="but" value="Add" onClick="addIP()"><br /><br />
<div id="addresses">
<table id="tab">
<% addresses.forEach(a => { %>
<div id="<%= a %>_main">
<tr>
<td>
<input type="button" name="<%= a %>_rem" value="x" onClick="removeIP('<%= a %>')">
</td><td>
<div style="display: inline-block;" id="<%= a %>_addr"><%= a %></div>
</td><td>
<div style="display: inline-block; margin-left: 5em" id="<%= a %>_status">
<span>WAITING</span>
</div>
</td>
</tr>
</div>
<% }) %>
</table>
</div>
<script>
document.getElementById("ipaddr")
.addEventListener("keyup", function(event) {
event.preventDefault();
if (event.keyCode === 13) document.getElementById("but").click();
});
</script>
</body>
</html>