improve user config routes,
add glocal resource config route, remove debug console logs Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
parent
e9386f5204
commit
03b3a994c6
37
src/main.js
37
src/main.js
@ -109,7 +109,7 @@ app.delete("/api/ticket", async (req, res) => {
|
|||||||
/**
|
/**
|
||||||
* GET - get db user resource information including allocated, free, and maximum resource values along with resource metadata
|
* GET - get db user resource information including allocated, free, and maximum resource values along with resource metadata
|
||||||
* responses:
|
* responses:
|
||||||
* - 200: {avail: Object, max: Object, units: Object, used: Object}
|
* - 200: {avail: Object, max: Object, used: Object, resources: Object}
|
||||||
* - 401: {auth: false, path: String}
|
* - 401: {auth: false, path: String}
|
||||||
*/
|
*/
|
||||||
app.get("/api/user/resources", async (req, res) => {
|
app.get("/api/user/resources", async (req, res) => {
|
||||||
@ -120,13 +120,40 @@ app.get("/api/user/resources", async (req, res) => {
|
|||||||
res.status(200).send(resources);
|
res.status(200).send(resources);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GET - get db global resource configuration
|
||||||
|
* responses:
|
||||||
|
* - 200: Object
|
||||||
|
*/
|
||||||
|
app.get("/api/global/config/resources", async (req, res) => {
|
||||||
|
// check auth
|
||||||
|
let auth = await checkAuth(req.cookies, res);
|
||||||
|
if (!auth) { return; }
|
||||||
|
let config = db.getResourceConfig();
|
||||||
|
res.status(200).send(config);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GET - get db user resource configuration
|
||||||
|
* responses:
|
||||||
|
* - 200: Object
|
||||||
|
* - 401: {auth: false, path: String}
|
||||||
|
*/
|
||||||
|
app.get("/api/user/config/resources", async (req, res) => {
|
||||||
|
// check auth
|
||||||
|
let auth = await checkAuth(req.cookies, res);
|
||||||
|
if (!auth) { return; }
|
||||||
|
let config = db.getUserConfig(req.cookies.username);
|
||||||
|
res.status(200).send(config.resources);
|
||||||
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GET - get db user instance configuration
|
* GET - get db user instance configuration
|
||||||
* responses:
|
* responses:
|
||||||
* - 200: {pool: String, templates: {lxc: Object, qemu: Object}, vmid: {min: Number, max: Number}}
|
* - 200: {pool: String, templates: {lxc: Object, qemu: Object}, vmid: {min: Number, max: Number}}
|
||||||
* - 401: {auth: false, path: String}
|
* - 401: {auth: false, path: String}
|
||||||
*/
|
*/
|
||||||
app.get("/api/user/instances", async (req, res) => {
|
app.get("/api/user/config/instances", async (req, res) => {
|
||||||
// check auth
|
// check auth
|
||||||
let auth = await checkAuth(req.cookies, res);
|
let auth = await checkAuth(req.cookies, res);
|
||||||
if (!auth) { return; }
|
if (!auth) { return; }
|
||||||
@ -140,12 +167,12 @@ app.get("/api/user/instances", async (req, res) => {
|
|||||||
* - 200: {nodes: String[]}
|
* - 200: {nodes: String[]}
|
||||||
* - 401: {auth: false, path: String}
|
* - 401: {auth: false, path: String}
|
||||||
*/
|
*/
|
||||||
app.get("/api/user/nodes", async (req, res) => {
|
app.get("/api/user/config/nodes", async (req, res) => {
|
||||||
// check auth
|
// check auth
|
||||||
let auth = await checkAuth(req.cookies, res);
|
let auth = await checkAuth(req.cookies, res);
|
||||||
if (!auth) { return; }
|
if (!auth) { return; }
|
||||||
let config = db.getUserConfig(req.cookies.username);
|
let config = db.getUserConfig(req.cookies.username);
|
||||||
res.status(200).send({ nodes: config.nodes })
|
res.status(200).send(config.nodes)
|
||||||
})
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -604,7 +631,6 @@ app.get("/api/instance/pci", async (req, res) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let device = config[`hostpci${req.query.hostpci}`].split(",")[0];
|
let device = config[`hostpci${req.query.hostpci}`].split(",")[0];
|
||||||
console.log(device)
|
|
||||||
// get node's pci devices
|
// get node's pci devices
|
||||||
let result = (await requestPVE(`/nodes/${req.query.node}/hardware/pci`, "GET", req.cookies, null, pveAPIToken)).data.data;
|
let result = (await requestPVE(`/nodes/${req.query.node}/hardware/pci`, "GET", req.cookies, null, pveAPIToken)).data.data;
|
||||||
let deviceData = [];
|
let deviceData = [];
|
||||||
@ -665,7 +691,6 @@ app.post("/api/instance/resources", async (req, res) => {
|
|||||||
else if (req.body.type === "qemu") {
|
else if (req.body.type === "qemu") {
|
||||||
action.cpu = req.body.proctype;
|
action.cpu = req.body.proctype;
|
||||||
}
|
}
|
||||||
console.log(action)
|
|
||||||
action = JSON.stringify(action);
|
action = JSON.stringify(action);
|
||||||
let method = req.body.type === "qemu" ? "POST" : "PUT";
|
let method = req.body.type === "qemu" ? "POST" : "PUT";
|
||||||
// commit action
|
// commit action
|
||||||
|
Loading…
Reference in New Issue
Block a user