Update last backup when upload is finish

This commit is contained in:
Sebastien Clement 2019-12-28 16:25:54 +01:00
parent a962827599
commit b32d51847e
3 changed files with 27 additions and 17 deletions

View File

@ -80,14 +80,17 @@ router.get('/nextcloud-settings', function(req, res, next) {
router.post('/manual-backup', function(req, res, next) {
let id = req.query.id;
let name = req.query.name;
// hassioApiTools.downloadSnapshot(id)
// .then(() => {
webdav.uploadFile('8afb4728', '/Hassio Backup/Manual/' + '8afb4728' + '.tar');
hassioApiTools.downloadSnapshot(id)
.then(() => {
webdav.uploadFile(id, '/Hassio Backup/Manual/' + name + '.tar');
res.send(200);
// })
// .catch(() => {
// res.send(500);
// })
})
.catch(() => {
res.send(500);
})
});
});

View File

@ -1,5 +1,6 @@
const { createClient } = require("webdav");
const fs = require("fs");
const moment = require('moment');
const statusTools = require('./status');
const endpoint = "/remote.php/webdav"
@ -148,6 +149,8 @@ class WebdavTools {
status.status = "idle";
status.message = null;
status.error_code = null;
status.last_backup = moment().format("lll")
statusTools.setStatus(status);
resolve();
}).catch((err) => {

View File

@ -112,7 +112,7 @@
<div class="card-content">
<span class="card-title white-text" style="font-weight: bold;">Last Backup</span>
<div class="divider"></div>
<h5 id="last_back_status"></h5>
<h6 class="white-text" id="last_back_status"></h6>
</div>
</div>
</div>
@ -333,6 +333,10 @@
case "upload":
printStatusWithBar('Uploading Snapshot', data.progress);
}
if (data.last_backup != null) {
if ($('#last_back_status').html() != data.last_backup)
$('#last_back_status').html(data.last_backup);
}
}