SpaceCache/app.js

38 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-01-18 17:28:38 +01:00
const config = require("./config.json");
const spaces = require("./spaces.json");
2023-01-18 12:15:52 +01:00
2023-01-18 17:28:38 +01:00
const { setInterval } = require("node:timers/promises");
const fetch = require("node-fetch");
2023-01-18 12:15:52 +01:00
2023-01-18 17:28:38 +01:00
const NodeCache = require("node-cache");
2023-01-18 12:15:52 +01:00
const jp = require('jsonpath');
2023-01-18 17:28:38 +01:00
const cache = new NodeCache({ stdTTL: config.checkperiod * 3 });
2023-01-18 12:15:52 +01:00
2023-01-18 17:28:38 +01:00
(async function () {
for await (const time of setInterval(config.checkperiod * 10)) {
console.log("Checking for spaces...");
2023-01-18 12:15:52 +01:00
for (const space of spaces) {
2023-01-18 17:28:38 +01:00
console.log(`Checking ${space.id}...`);
let o = await checkSpace(space);
console.log(`Space ${space.id} is ${o ? "open" : "closed"}`);
2023-01-18 12:15:52 +01:00
}
}
2023-01-18 17:28:38 +01:00
})();
2023-01-18 12:15:52 +01:00
async function checkSpace(space) {
2023-01-18 17:36:19 +01:00
let response, data, open;
try {
response = await fetch(space.endpoint);
data = await response.json();
} catch (e) { console.error(`The space ${space.id} might not be reachable. Please check the endpoint. Error: ${e}`); }
2023-01-18 12:15:52 +01:00
if (!space.path) {
try { open = data.state.open; }
catch { console.error(`The space ${space.id} is not using the SpaceAPI standard. Please specify a path.`); }
} else {
try { open = (jp.query(data, space.path) == (space.expected ? space.expected : true)); }
catch { console.error(`The space ${space.id} has an invalid JSONPath to the target value. Please use https://jsonpath.com/ to evaluate the path.`); }
}
return open;
}