mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
107 lines
2.5 KiB
JavaScript
107 lines
2.5 KiB
JavaScript
const sql = require('./sql');
|
|
const utils = require('./utils');
|
|
const options = require('./options');
|
|
const log = require('./log');
|
|
|
|
function getHash(rows) {
|
|
let hash = '';
|
|
|
|
for (const row of rows) {
|
|
hash = utils.hash(hash + JSON.stringify(row));
|
|
}
|
|
|
|
return hash;
|
|
}
|
|
|
|
async function getHashes() {
|
|
const startTime = new Date();
|
|
|
|
const hashes = {
|
|
notes: getHash(await sql.getAll(`
|
|
SELECT
|
|
noteId,
|
|
title,
|
|
content,
|
|
type,
|
|
dateModified,
|
|
isProtected,
|
|
isDeleted
|
|
FROM notes
|
|
ORDER BY noteId`)),
|
|
|
|
note_tree: getHash(await sql.getAll(`
|
|
SELECT
|
|
noteTreeId,
|
|
noteId,
|
|
parentNoteId,
|
|
notePosition,
|
|
dateModified,
|
|
isDeleted,
|
|
prefix
|
|
FROM note_tree
|
|
ORDER BY noteTreeId`)),
|
|
|
|
note_revisions: getHash(await sql.getAll(`
|
|
SELECT
|
|
noteRevisionId,
|
|
noteId,
|
|
title,
|
|
content,
|
|
dateModifiedFrom,
|
|
dateModifiedTo
|
|
FROM note_revisions
|
|
ORDER BY noteRevisionId`)),
|
|
|
|
recent_notes: getHash(await sql.getAll(`
|
|
SELECT
|
|
noteTreeId,
|
|
notePath,
|
|
dateAccessed,
|
|
isDeleted
|
|
FROM recent_notes
|
|
ORDER BY notePath`)),
|
|
|
|
options: getHash(await sql.getAll(`
|
|
SELECT
|
|
name,
|
|
value
|
|
FROM options
|
|
WHERE isSynced = 1
|
|
ORDER BY name`)),
|
|
|
|
// we don't include image data on purpose because they are quite large, checksum is good enough
|
|
// to represent the data anyway
|
|
images: getHash(await sql.getAll(`
|
|
SELECT
|
|
imageId,
|
|
format,
|
|
checksum,
|
|
name,
|
|
isDeleted,
|
|
dateModified,
|
|
dateCreated
|
|
FROM images
|
|
ORDER BY imageId`)),
|
|
|
|
attributes: getHash(await sql.getAll(`
|
|
SELECT
|
|
attributeId,
|
|
noteId
|
|
name,
|
|
value
|
|
dateModified,
|
|
dateCreated
|
|
FROM attributes
|
|
ORDER BY attributeId`))
|
|
};
|
|
|
|
const elapseTimeMs = new Date().getTime() - startTime.getTime();
|
|
|
|
log.info(`Content hash computation took ${elapseTimeMs}ms`);
|
|
|
|
return hashes;
|
|
}
|
|
|
|
module.exports = {
|
|
getHashes
|
|
}; |