Integrated the recommendation logic into the speedtest creation

This commit is contained in:
Mathias Wagner
2022-05-07 22:36:20 +02:00
parent 6bdab5df6d
commit 54719a8f9f
+16
View File
@@ -1,11 +1,26 @@
const speedTest = require('speedtest-net');
const tests = require('../controller/speedtests');
const config = require('../controller/config');
const recommendations = require("../controller/recommendations");
function roundSpeed(bytes, elapsed) {
return Math.round((bytes * 8 / elapsed) / 10) / 100;
}
async function createRecommendations() {
let list = tests.list();
if (list.length >= 5) {
let avgNumbers = {ping: 0, down: 0, up: 0};
for (let i = 0; i < 5; i++) {
avgNumbers["ping"] += list[i].ping;
avgNumbers["down"] += list[i].download;
avgNumbers["up"] += list[i].upload;
}
recommendations.set(avgNumbers["ping"] / 5, avgNumbers["down"] / 5, avgNumbers["up"] / 5);
}
}
module.exports.run = async () => {
let serverId = config.get("serverId").value;
if (serverId === "none")
@@ -27,6 +42,7 @@ module.exports.create = async () => {
let upload = roundSpeed(test.upload.bytes, test.upload.elapsed);
let testResult = tests.create(ping, download, upload);
console.log(`Test #${testResult} was executed successfully. 🏓 ${ping}${download}${upload}`);
createRecommendations().then(() => "");
} catch (e) {
let testResult = tests.create(0, 0, 0);
console.log(`Test #${testResult} was not executed successfully. Please try reconnecting to the internet or restarting the software.`);