trilium/src/services/backup.js

118 lines
3.8 KiB
JavaScript
Raw Normal View History

2017-10-22 09:10:33 +08:00
"use strict";
2018-04-03 08:46:46 +08:00
const dateUtils = require('./date_utils');
const optionService = require('./options');
const fs = require('fs-extra');
const dataDir = require('./data_dir');
2017-10-25 10:17:48 +08:00
const log = require('./log');
const syncMutexService = require('./sync_mutex');
2020-06-07 16:20:48 +08:00
const attributeService = require('./attributes');
const cls = require('./cls');
const Database = require('better-sqlite3');
2020-06-20 18:31:38 +08:00
function regularBackup() {
2020-07-04 06:20:23 +08:00
cls.init(() => {
periodBackup('lastDailyBackupDate', 'daily', 24 * 3600);
2020-07-04 06:20:23 +08:00
periodBackup('lastWeeklyBackupDate', 'weekly', 7 * 24 * 3600);
2020-07-04 06:20:23 +08:00
periodBackup('lastMonthlyBackupDate', 'monthly', 30 * 24 * 3600);
});
}
2021-10-12 04:30:23 +08:00
function isBackupEnabled(backupType) {
const optionName = `${backupType}BackupEnabled`;
return optionService.getOptionBool(optionName);
}
function periodBackup(optionName, backupType, periodInSeconds) {
if (!isBackupEnabled(backupType)) {
return;
}
const now = new Date();
2021-10-12 04:30:23 +08:00
const lastBackupDate = dateUtils.parseDateTime(optionService.getOption(optionName));
2021-10-12 04:30:23 +08:00
if (now.getTime() - lastBackupDate.getTime() > periodInSeconds * 1000) {
backupNow(backupType);
2020-06-20 18:31:38 +08:00
optionService.setOption(optionName, dateUtils.utcNowDateTime());
}
}
async function copyFile(backupFile) {
const sql = require('./sql');
2020-06-03 05:13:55 +08:00
try {
fs.unlinkSync(backupFile);
} catch (e) {
} // unlink throws exception if the file did not exist
await sql.dbConnection.backup(backupFile);
2020-06-03 05:13:55 +08:00
}
async function backupNow(name) {
// we don't want to backup DB in the middle of sync with potentially inconsistent DB state
return await syncMutexService.doExclusively(async () => {
const backupFile = `${dataDir.BACKUP_DIR}/backup-${name}.db`;
2017-10-25 10:17:48 +08:00
await copyFile(backupFile);
log.info("Created backup at " + backupFile);
return backupFile;
});
}
async function anonymize() {
2020-06-03 05:13:55 +08:00
if (!fs.existsSync(dataDir.ANONYMIZED_DB_DIR)) {
fs.mkdirSync(dataDir.ANONYMIZED_DB_DIR, 0o700);
}
const anonymizedFile = dataDir.ANONYMIZED_DB_DIR + "/" + "anonymized-" + dateUtils.getDateTimeForFile() + ".db";
await copyFile(anonymizedFile);
2020-06-03 05:13:55 +08:00
const db = new Database(anonymizedFile);
2020-06-03 05:13:55 +08:00
db.prepare("UPDATE api_tokens SET token = 'API token value'").run();
db.prepare("UPDATE notes SET title = 'title'").run();
db.prepare("UPDATE note_contents SET content = 'text' WHERE content IS NOT NULL").run();
db.prepare("UPDATE note_revisions SET title = 'title'").run();
db.prepare("UPDATE note_revision_contents SET content = 'text' WHERE content IS NOT NULL").run();
2020-06-07 16:20:48 +08:00
// we want to delete all non-builtin attributes because they can contain sensitive names and values
// on the other hand builtin/system attrs should not contain any sensitive info
const builtinAttrs = attributeService
.getBuiltinAttributeNames()
.map(name => "'" + name + "'").join(', ');
db.prepare(`UPDATE attributes SET name = 'name', value = 'value' WHERE type = 'label' AND name NOT IN(${builtinAttrs})`).run();
db.prepare(`UPDATE attributes SET name = 'name' WHERE type = 'relation' AND name NOT IN (${builtinAttrs})`).run();
db.prepare("UPDATE branches SET prefix = 'prefix' WHERE prefix IS NOT NULL").run();
db.prepare(`UPDATE options SET value = 'anonymized' WHERE name IN
2020-06-08 05:55:55 +08:00
('documentId', 'documentSecret', 'encryptedDataKey',
'passwordVerificationHash', 'passwordVerificationSalt',
'passwordDerivedKeySalt', 'username', 'syncServerHost', 'syncProxy')
AND value != ''`).run();
db.prepare("VACUUM").run();
2020-06-03 05:13:55 +08:00
2020-06-20 18:31:38 +08:00
db.close();
2020-06-03 05:13:55 +08:00
return {
success: true,
anonymizedFilePath: anonymizedFile
};
}
if (!fs.existsSync(dataDir.BACKUP_DIR)) {
fs.mkdirSync(dataDir.BACKUP_DIR, 0o700);
}
module.exports = {
2020-06-03 05:13:55 +08:00
backupNow,
2020-07-03 04:57:17 +08:00
anonymize,
regularBackup
};