fix formatting
This commit is contained in:
parent
c110330154
commit
0043e3e783
8
db.js
8
db.js
@ -4,7 +4,7 @@ class localdb {
|
||||
#template = "localdb.json.template";
|
||||
#filename = "localdb.json";
|
||||
#data = null;
|
||||
constructor () {
|
||||
constructor() {
|
||||
try {
|
||||
this.load(this.#filename);
|
||||
}
|
||||
@ -15,14 +15,14 @@ class localdb {
|
||||
}
|
||||
load(path) {
|
||||
this.#data = JSON.parse(readFileSync(path));
|
||||
}
|
||||
}
|
||||
save(path) {
|
||||
writeFileSync(path, JSON.stringify(this.#data));
|
||||
}
|
||||
getResourceConfig () {
|
||||
getResourceConfig() {
|
||||
return this.#data.resources;
|
||||
}
|
||||
getUserConfig (username) {
|
||||
getUserConfig(username) {
|
||||
if (this.#data.users[username]) {
|
||||
return this.#data.users[username];
|
||||
}
|
||||
|
4
pve.js
4
pve.js
@ -35,7 +35,7 @@ export async function requestPVE(path, method, cookies, body = null, token = nul
|
||||
|
||||
export async function handleResponse(node, result, res) {
|
||||
const waitFor = delay => new Promise(resolve => setTimeout(resolve, delay));
|
||||
if (result.data.data && typeof(result.data.data) === "string" && result.data.data.startsWith("UPID:")) {
|
||||
if (result.data.data && typeof (result.data.data) === "string" && result.data.data.startsWith("UPID:")) {
|
||||
let upid = result.data.data;
|
||||
while (true) {
|
||||
let taskStatus = await requestPVE(`/nodes/${node}/tasks/${upid}/status`, "GET", null, null, pveAPIToken);
|
||||
@ -62,7 +62,7 @@ export async function handleResponse(node, result, res) {
|
||||
}
|
||||
else {
|
||||
res.status(result.status).send(result.data);
|
||||
res.end();
|
||||
res.end();
|
||||
}
|
||||
}
|
||||
|
||||
|
4
utils.js
4
utils.js
@ -27,7 +27,7 @@ export async function checkAuth(cookies, res, vmpath = null) {
|
||||
return auth;
|
||||
}
|
||||
|
||||
export async function getUserResources (req, username) {
|
||||
export async function getUserResources(req, username) {
|
||||
let dbResources = db.getResourceConfig();
|
||||
let used = await getUsedResources(req, dbResources);
|
||||
let max = db.getUserConfig(username).resources.max;
|
||||
@ -50,7 +50,7 @@ export async function approveResources(req, username, request) {
|
||||
}
|
||||
else if (avail[key] - request[key] < 0) { // if the avail resources is less than the requested resources, block
|
||||
approved = false;
|
||||
}
|
||||
}
|
||||
});
|
||||
return approved; // if all requested resources pass, allow
|
||||
}
|
Loading…
Reference in New Issue
Block a user