mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-22 17:22:58 +01:00
🔨 Add clean functionality only for Cloud
This commit is contained in:
parent
bf8d271f4d
commit
c1a7016209
@ -5,3 +5,4 @@
|
|||||||
- `3` => Can't connect to nextcloud
|
- `3` => Can't connect to nextcloud
|
||||||
- `4` => Upload snap fail
|
- `4` => Upload snap fail
|
||||||
- `5` => Fail create new snap
|
- `5` => Fail create new snap
|
||||||
|
- `6` => Fail to clean
|
@ -5,7 +5,7 @@ const statusTools = require('../tools/status');
|
|||||||
const WebdavTools = require('../tools/webdavTools')
|
const WebdavTools = require('../tools/webdavTools')
|
||||||
const webdav = new WebdavTools().getInstance();
|
const webdav = new WebdavTools().getInstance();
|
||||||
const settingsTools = require('../tools/settingsTools');
|
const settingsTools = require('../tools/settingsTools');
|
||||||
|
const pathTools = require('../tools/pathTools');
|
||||||
const hassioApiTools = require('../tools/hassioApiTools');
|
const hassioApiTools = require('../tools/hassioApiTools');
|
||||||
|
|
||||||
const cronTools = require('../tools/cronTools');
|
const cronTools = require('../tools/cronTools');
|
||||||
@ -44,7 +44,7 @@ router.get('/formated-local-snap', function(req, res, next) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
router.get('/formated-backup-manual', function(req, res, next) {
|
router.get('/formated-backup-manual', function(req, res, next) {
|
||||||
webdav.getFolderContent('/Hassio Backup/Manual/')
|
webdav.getFolderContent(pathTools.manual)
|
||||||
.then((contents) => {
|
.then((contents) => {
|
||||||
contents.sort((a, b) => {
|
contents.sort((a, b) => {
|
||||||
if (moment(a.lastmod).isBefore(moment(b.lastmod)))
|
if (moment(a.lastmod).isBefore(moment(b.lastmod)))
|
||||||
@ -58,8 +58,14 @@ router.get('/formated-backup-manual', function(req, res, next) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
router.get('/formated-backup-auto', function(req, res, next) {
|
router.get('/formated-backup-auto', function(req, res, next) {
|
||||||
webdav.getFolderContent('/Hassio Backup/Auto/')
|
webdav.getFolderContent(pathTools.auto)
|
||||||
.then((contents) => {
|
.then((contents) => {
|
||||||
|
contents.sort((a, b) => {
|
||||||
|
if (moment(a.lastmod).isBefore(moment(b.lastmod)))
|
||||||
|
return 1;
|
||||||
|
else
|
||||||
|
return -1;
|
||||||
|
})
|
||||||
res.render('backupSnaps',{backups: contents, moment: moment});
|
res.render('backupSnaps',{backups: contents, moment: moment});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -111,7 +117,7 @@ router.post('/manual-backup', function(req, res, next) {
|
|||||||
|
|
||||||
hassioApiTools.downloadSnapshot(id)
|
hassioApiTools.downloadSnapshot(id)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
webdav.uploadFile(id, '/Hassio Backup/Manual/' + name + '.tar');
|
webdav.uploadFile(id, pathTools.manual + name + '.tar');
|
||||||
res.status(201);
|
res.status(201);
|
||||||
res.send();
|
res.send();
|
||||||
})
|
})
|
||||||
@ -134,7 +140,7 @@ router.post('/new-backup', function(req, res, next) {
|
|||||||
hassioApiTools.createNewBackup(name).then((id) => {
|
hassioApiTools.createNewBackup(name).then((id) => {
|
||||||
hassioApiTools.downloadSnapshot(id)
|
hassioApiTools.downloadSnapshot(id)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
webdav.uploadFile(id, '/Hassio Backup/Manual/' + name + '.tar');
|
webdav.uploadFile(id, pathTools.manual + name + '.tar');
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
|
|
||||||
})
|
})
|
||||||
@ -162,7 +168,11 @@ router.post('/backup-settings', function(req, res, next) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
router.post('/clean-now', function(req, res, next){
|
||||||
|
webdav.clean();
|
||||||
|
res.status(201);
|
||||||
|
res.send()
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ const hassioApiTools = require('./hassioApiTools');
|
|||||||
|
|
||||||
const statusTools = require('./status');
|
const statusTools = require('./status');
|
||||||
|
|
||||||
|
const pathTools = require('./pathTools');
|
||||||
|
|
||||||
var CronJob = require('cron').CronJob;
|
var CronJob = require('cron').CronJob;
|
||||||
const moment = require('moment');
|
const moment = require('moment');
|
||||||
|
|
||||||
@ -123,7 +125,7 @@ class CronContainer {
|
|||||||
hassioApiTools.createNewBackup(name).then((id) => {
|
hassioApiTools.createNewBackup(name).then((id) => {
|
||||||
hassioApiTools.downloadSnapshot(id)
|
hassioApiTools.downloadSnapshot(id)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
webdav.uploadFile(id, '/Hassio Backup/Auto/' + name + '.tar');
|
webdav.uploadFile(id, pathTools.auto + name + '.tar');
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
|
|
||||||
})
|
})
|
||||||
@ -131,6 +133,10 @@ class CronContainer {
|
|||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clean() {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
let root = '/Hassio Backup/'
|
||||||
|
exports.root = root;
|
||||||
|
exports.manual = root + 'Manual/'
|
||||||
|
exports.auto = root + 'Auto/'
|
@ -5,6 +5,9 @@ const moment = require('moment');
|
|||||||
const statusTools = require('./status');
|
const statusTools = require('./status');
|
||||||
const endpoint = "/remote.php/webdav"
|
const endpoint = "/remote.php/webdav"
|
||||||
const configPath = "./webdav_conf.json"
|
const configPath = "./webdav_conf.json"
|
||||||
|
const path = require('path');
|
||||||
|
const settingsTools = require('./settingsTools');
|
||||||
|
const pathTools = require('./pathTools');
|
||||||
|
|
||||||
const request = require('request');
|
const request = require('request');
|
||||||
|
|
||||||
@ -62,9 +65,9 @@ class WebdavTools {
|
|||||||
|
|
||||||
initFolder() {
|
initFolder() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
this.client.createDirectory("/Hassio Backup").catch(() => { }).then(() => {
|
this.client.createDirectory(pathTools.root).catch(() => { }).then(() => {
|
||||||
this.client.createDirectory("/Hassio Backup/Auto").catch(() => { }).then(() => {
|
this.client.createDirectory(pathTools.auto).catch(() => { }).then(() => {
|
||||||
this.client.createDirectory("/Hassio Backup/Manual").catch(() => { }).then(() => {
|
this.client.createDirectory(pathTools.manual).catch(() => { }).then(() => {
|
||||||
resolve();
|
resolve();
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -216,9 +219,47 @@ class WebdavTools {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clean() {
|
||||||
|
let limit = settingsTools.getSettings().auto_clean_local_keep;
|
||||||
|
if(limit == null)
|
||||||
|
limit = 5;
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
this.getFolderContent(pathTools.auto).then(async (contents) => {
|
||||||
|
if (contents.length < limit) {
|
||||||
|
resolve();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
contents.sort((a, b) => {
|
||||||
|
if (moment(a.lastmod).isBefore(moment(b.lastmod)))
|
||||||
|
return 1;
|
||||||
|
else
|
||||||
|
return -1;
|
||||||
|
});
|
||||||
|
|
||||||
|
let toDel = contents.slice(limit);
|
||||||
|
for (let i in toDel) {
|
||||||
|
await this.client.deleteFile(toDel[i].filename);
|
||||||
|
}
|
||||||
|
console.log('Cloud clean done.')
|
||||||
|
resolve();
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
status.status = "error";
|
||||||
|
status.error_code = 6;
|
||||||
|
status.message = "Fail to clean Nexcloud ("+ error + ") !"
|
||||||
|
statusTools.setStatus(status);
|
||||||
|
console.error(status.message);
|
||||||
|
reject(status.message);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function cleanTempFolder() {
|
function cleanTempFolder() {
|
||||||
fs.readdir("./temp/", (err, files) => {
|
fs.readdir("./temp/", (err, files) => {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
|
@ -318,7 +318,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row hide">
|
<div class="row">
|
||||||
<div class="input-field col s3">
|
<div class="input-field col s3">
|
||||||
<input type="text" class="white-text" disabled readonly="true" id="local-snap-keep-read">
|
<input type="text" class="white-text" disabled readonly="true" id="local-snap-keep-read">
|
||||||
<label class="white-text active">Local snapshot to keep</label>
|
<label class="white-text active">Local snapshot to keep</label>
|
||||||
@ -343,7 +343,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row hide">
|
<div class="row">
|
||||||
<div class="input-field col s3">
|
<div class="input-field col s3">
|
||||||
<input type="text" class="white-text" disabled readonly="true" id="backup-snap-keep-read">
|
<input type="text" class="white-text" disabled readonly="true" id="backup-snap-keep-read">
|
||||||
<label class="white-text active">Nextcloud snapshot to keep</label>
|
<label class="white-text active">Nextcloud snapshot to keep</label>
|
||||||
@ -599,9 +599,11 @@
|
|||||||
|
|
||||||
function listeners() {
|
function listeners() {
|
||||||
$('#save-nextcloud-settings').click(sendNextcloudSettings);
|
$('#save-nextcloud-settings').click(sendNextcloudSettings);
|
||||||
$('#trigger-nextcloud-settings').click(getNextcloudSettings)
|
$('#trigger-nextcloud-settings').click(getNextcloudSettings);
|
||||||
$('#trigger-backup-settings').click(getBackupSettings)
|
$('#trigger-backup-settings').click(getBackupSettings);
|
||||||
$('#btn-backup-now').click(backupNow)
|
$('#btn-backup-now').click(backupNow);
|
||||||
|
$('#btn-clean-now').click(cleanNow);
|
||||||
|
|
||||||
|
|
||||||
$('#save-backup-settings').click(sendBackupSettings);
|
$('#save-backup-settings').click(sendBackupSettings);
|
||||||
$('#cron-drop-day-month').on('input', function() {
|
$('#cron-drop-day-month').on('input', function() {
|
||||||
@ -611,22 +613,10 @@
|
|||||||
$('#local-snap-keep').on('input', function() {
|
$('#local-snap-keep').on('input', function() {
|
||||||
$('#local-snap-keep-read').val($(this).val());
|
$('#local-snap-keep-read').val($(this).val());
|
||||||
});
|
});
|
||||||
$("#auto_clean_local").change(() => {
|
|
||||||
if ($("#auto_clean_local").is(':checked'))
|
|
||||||
$('#local-snap-keep').parent().parent().parent().removeClass("hide");
|
|
||||||
else
|
|
||||||
$('#local-snap-keep').parent().parent().parent().addClass("hide");
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#backup-snap-keep').on('input', function() {
|
$('#backup-snap-keep').on('input', function() {
|
||||||
$('#backup-snap-keep-read').val($(this).val());
|
$('#backup-snap-keep-read').val($(this).val());
|
||||||
});
|
});
|
||||||
$("#auto_clean_backup").change(() => {
|
|
||||||
if ($("#auto_clean_backup").is(':checked'))
|
|
||||||
$('#backup-snap-keep').parent().parent().parent().removeClass("hide");
|
|
||||||
else
|
|
||||||
$('#backup-snap-keep').parent().parent().parent().addClass("hide");
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -702,6 +692,19 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cleanNow(){
|
||||||
|
loadingModal.open();
|
||||||
|
$.post('./api/clean-now')
|
||||||
|
.done(() => {
|
||||||
|
M.toast({ html: '<i class="material-icons" style="margin-right:10px">check_box</i> Command send !', classes: "green" });
|
||||||
|
}).fail((error) => {
|
||||||
|
console.log(error);
|
||||||
|
M.toast({ html: '<i class="material-icons" style="margin-right:10px">warning</i> Can\'t send command !', classes: "red" });
|
||||||
|
})
|
||||||
|
.always(() => {
|
||||||
|
loadingModal.close();
|
||||||
|
})
|
||||||
|
}
|
||||||
function getBackupSettings() {
|
function getBackupSettings() {
|
||||||
loadingModal.open();
|
loadingModal.open();
|
||||||
$.get('./api/backup-settings', (data) => {
|
$.get('./api/backup-settings', (data) => {
|
||||||
@ -712,9 +715,9 @@
|
|||||||
cron_weekday: "0",
|
cron_weekday: "0",
|
||||||
cron_month_day: "1",
|
cron_month_day: "1",
|
||||||
auto_clean_local: false,
|
auto_clean_local: false,
|
||||||
auto_clean_local_keep: 1,
|
auto_clean_local_keep: 5,
|
||||||
auto_clean_backup: false,
|
auto_clean_backup: false,
|
||||||
auto_clean_backup_keep: 1,
|
auto_clean_backup_keep: 5,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -739,15 +742,6 @@
|
|||||||
$('#auto_clean_backup').prop('checked', data.auto_clean_backup);
|
$('#auto_clean_backup').prop('checked', data.auto_clean_backup);
|
||||||
$('#backup-snap-keep-read, #backup-snap-keep').val(data.auto_clean_backup_keep);
|
$('#backup-snap-keep-read, #backup-snap-keep').val(data.auto_clean_backup_keep);
|
||||||
|
|
||||||
if ($("#auto_clean_backup").is(':checked'))
|
|
||||||
$('#backup-snap-keep').parent().parent().parent().removeClass("hide");
|
|
||||||
else
|
|
||||||
$('#backup-snap-keep').parent().parent().parent().addClass("hide");
|
|
||||||
|
|
||||||
if ($("#auto_clean_local").is(':checked'))
|
|
||||||
$('#local-snap-keep').parent().parent().parent().removeClass("hide");
|
|
||||||
else
|
|
||||||
$('#local-snap-keep').parent().parent().parent().addClass("hide");
|
|
||||||
|
|
||||||
$('#backup-snap-keep-read + label').removeClass("active");
|
$('#backup-snap-keep-read + label').removeClass("active");
|
||||||
$('#backup-snap-keep-read + label').addClass("active");
|
$('#backup-snap-keep-read + label').addClass("active");
|
||||||
|
Loading…
Reference in New Issue
Block a user