From 935b8f83764ae168994911d9b7b075f12a69a828 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Thu, 30 May 2024 15:02:32 +0200 Subject: Add more users --- app.js | 37 +++++++++++++++++++++---------------- mycelium-warning.xml | 13 +++++++++++++ 2 files changed, 34 insertions(+), 16 deletions(-) diff --git a/app.js b/app.js index 05b7400..387d9f0 100644 --- a/app.js +++ b/app.js @@ -1,15 +1,18 @@ -const HYPIXEL_API_KEY =process.env.HYPIXEL_API_KEY; -const DISCORD_WEBHOOK_URL =process.env.DISCORD_WEBHOOK_URL; +const HYPIXEL_API_KEY = process.env.HYPIXEL_API_KEY; +const DISCORD_WEBHOOK_URL = process.env.DISCORD_WEBHOOK_URL; const CHECK_INTERVAL = parseInt(process.env.CHECK_INTERVAL); // 10 minutes const WARN_AFTER = 60 * 60 * 9; // 9 hours -const profiles = [ - { - profile: "Tomato", - playerId: "4154a5602654493094d3497d2ad6849f", - ping: "281489313840103426", - }, -]; +const profiles = []; + +for (let i = 0; true; i++) { + if (!process.env["PROFILE" + i]) break; + profiles.push({ + profile: process.env["PROFILE" + i], + playerId: process.env["PLAYER" + i], + ping: process.env["DISCORD" + i], + }); +} function getProfile(p) { return fetch( @@ -21,7 +24,7 @@ function getProfile(p) { ); } function warn(userid) { - return fetch(DISCORD_WEBHOOK_URL+"?wait=true", { + return fetch(DISCORD_WEBHOOK_URL + "?wait=true", { headers: { "content-type": "application/json", }, @@ -46,10 +49,10 @@ async function checkCollections() { for (i in profiles) { const p = profiles[i]; const data = await getProfile(p); - console.log(data) + console.log(data); let collectionTotal = 0; for (memberid in data.members) { - const member = data.members[memberid] + const member = data.members[memberid]; const collectionOne = member.collection?.MYCEL; if (collectionOne) collectionTotal += collectionOne; } @@ -58,12 +61,14 @@ async function checkCollections() { lastCollection[i] = collectionTotal; lastCollectionGain[i] = Date.now(); } - console.log("last: "+last) - console.log("current: "+collectionTotal) + console.log("last: " + last); + console.log("current: " + collectionTotal); if (Date.now() - lastCollectionGain[i] > WARN_AFTER * 1000) { - warn(p.ping).then(it => it.json()).then(console.log, console.error); + warn(p.ping) + .then((it) => it.json()) + .then(console.log, console.error); } } } setInterval(checkCollections, CHECK_INTERVAL * 1000); -checkCollections() +checkCollections(); diff --git a/mycelium-warning.xml b/mycelium-warning.xml index 936c5f7..d715f9a 100644 --- a/mycelium-warning.xml +++ b/mycelium-warning.xml @@ -20,4 +20,17 @@ + + + + + + + + + + + + + -- cgit