Add total disk space to space api #12

Merged
tgpholly merged 6 commits from total-disk-space into master 2020-07-09 10:54:10 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 378438e4aa - Show all commits

4
EUS.js
View File

@ -281,8 +281,6 @@ function handleAPI(req, res) {
sizeOfFolder = (size / 1024 / 1024 / 1024);
jsonaa["space"]["usage"]["gb"] = sizeOfFolder;
jsonaa["space"]["usage"]["string"] = spaceToLowest(size, true);
// Send the json to the requesting client
d = new Date(); endTime = d.getTime();
diskUsage.check(__dirname, (err, data) => {
if (err) throw err;
jsonaa["space"]["total"] = {
@ -293,6 +291,8 @@ function handleAPI(req, res) {
string: spaceToLowest(data["total"], true)
};
});
// Send the json to the requesting client
d = new Date(); endTime = d.getTime();
global.modules.consoleHelper.printInfo(emoji.heavy_check, `${req.method}: ${chalk.green("[200]")} ${req.url} ${endTime - startTime}ms`);
return res.end(JSON.stringify(jsonaa));
});