implement resize endpoint

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-01-30 23:19:24 +00:00
parent f46c1165fa
commit d479879d2c

View File

@ -46,6 +46,21 @@ app.post("/api/disk/detach", (req, res) => {
}, vmpath); }, vmpath);
}); });
app.post("/api/disk/resize", (req, res) => {
let vmpath = `nodes/${req.body.node}/${req.body.type}/${req.body.vmid}`;
checkAuth(req.cookies, (result) => {
if (result) {
let method = "PUT";
requestPVE(`/${vmpath}/resize`, method, req.cookies, (result) => {
res.send(result);
}, body = req.body.action, token = pveAPIToken);
}
else {
res.send({auth: result});
}
}, vmpath);
});
function checkAuth (cookies, callback, vmpath = null) { function checkAuth (cookies, callback, vmpath = null) {
if (vmpath) { if (vmpath) {
requestPVE(`/${vmpath}/config`, "GET", cookies, (result) => { requestPVE(`/${vmpath}/config`, "GET", cookies, (result) => {
@ -111,7 +126,8 @@ function requestPVE (path, method, cookies, callback, body = null, token = null)
}); });
if (body) { if (body) {
request.write(body); let prms = new URLSearchParams(JSON.parse(body));
request.write(prms.toString());
} }
request.end(); request.end();