trilium/src/entities/note.js

137 lines
4 KiB
JavaScript
Raw Normal View History

2018-01-29 12:16:50 +08:00
"use strict";
const Entity = require('./entity');
2018-01-30 12:35:36 +08:00
const protected_session = require('../services/protected_session');
2018-01-29 12:16:50 +08:00
class Note extends Entity {
2018-01-30 12:35:36 +08:00
static get tableName() { return "notes"; }
2018-01-31 09:12:19 +08:00
static get primaryKeyName() { return "noteId"; }
2018-01-30 12:35:36 +08:00
constructor(repository, row) {
super(repository, row);
2018-01-30 09:57:55 +08:00
2018-01-30 12:35:36 +08:00
if (this.isProtected) {
protected_session.decryptNote(this.dataKey, this);
}
if (this.isJson()) {
2018-01-30 09:57:55 +08:00
this.jsonContent = JSON.parse(this.content);
}
}
isJson() {
return this.type === "code" && this.mime === "application/json";
}
isJavaScript() {
return (this.type === "code" || this.type === "file")
&& (this.mime.startsWith("application/javascript") || this.mime === "application/x-javascript");
}
2018-03-05 10:05:14 +08:00
isHtml() {
return (this.type === "code" || this.type === "file") && this.mime === "text/html";
}
getScriptEnv() {
if (this.isHtml() || (this.isJavaScript() && this.mime.endsWith('env=frontend'))) {
return "frontend";
}
2018-03-07 13:17:18 +08:00
if (this.type === 'render') {
return "frontend";
}
if (this.isJavaScript() && this.mime.endsWith('env=backend')) {
return "backend";
}
return null;
}
async getAttributes() {
2018-02-07 12:09:19 +08:00
return this.repository.getEntities("SELECT * FROM attributes WHERE noteId = ? AND isDeleted = 0", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
2018-03-03 22:11:41 +08:00
// WARNING: this doesn't take into account the possibility to have multi-valued attributes!
async getAttributeMap() {
const map = {};
for (const attr of await this.getAttributes()) {
map[attr.name] = attr.value;
}
return map;
}
2018-03-05 11:09:51 +08:00
async hasAttribute(name) {
const map = await this.getAttributeMap();
return map.hasOwnProperty(name);
}
// WARNING: this doesn't take into account the possibility to have multi-valued attributes!
async getAttribute(name) {
return this.repository.getEntity("SELECT * FROM attributes WHERE noteId = ? AND name = ?", [this.noteId, name]);
}
async getRevisions() {
return this.repository.getEntities("SELECT * FROM note_revisions WHERE noteId = ?", [this.noteId]);
}
async getTrees() {
2018-03-25 09:39:15 +08:00
return this.repository.getEntities("SELECT * FROM branches WHERE isDeleted = 0 AND noteId = ?", [this.noteId]);
2018-01-29 12:16:50 +08:00
}
2018-01-30 12:35:36 +08:00
async getChild(name) {
return this.repository.getEntity(`
SELECT notes.*
2018-03-25 09:39:15 +08:00
FROM branches
JOIN notes USING(noteId)
WHERE notes.isDeleted = 0
2018-03-25 09:39:15 +08:00
AND branches.isDeleted = 0
AND branches.parentNoteId = ?
AND notes.title = ?`, [this.noteId, name]);
}
async getChildren() {
return this.repository.getEntities(`
SELECT notes.*
2018-03-25 09:39:15 +08:00
FROM branches
JOIN notes USING(noteId)
WHERE notes.isDeleted = 0
2018-03-25 09:39:15 +08:00
AND branches.isDeleted = 0
AND branches.parentNoteId = ?
ORDER BY branches.notePosition`, [this.noteId]);
}
async getParents() {
return this.repository.getEntities(`
SELECT parent_notes.*
FROM
2018-03-25 09:39:15 +08:00
branches AS child_tree
JOIN notes AS parent_notes ON parent_notes.noteId = child_tree.parentNoteId
WHERE child_tree.noteId = ?
AND child_tree.isDeleted = 0
AND parent_notes.isDeleted = 0`, [this.noteId]);
}
2018-03-25 09:39:15 +08:00
async getBranch() {
return this.repository.getEntities(`
2018-03-25 09:39:15 +08:00
SELECT branches.*
FROM branches
JOIN notes USING(noteId)
WHERE notes.isDeleted = 0
2018-03-25 09:39:15 +08:00
AND branches.isDeleted = 0
AND branches.noteId = ?`, [this.noteId]);
}
2018-01-30 12:35:36 +08:00
beforeSaving() {
2018-01-31 10:25:47 +08:00
this.content = JSON.stringify(this.jsonContent, null, '\t');
2018-01-30 12:35:36 +08:00
if (this.isProtected) {
protected_session.encryptNote(this.dataKey, this);
}
}
2018-01-29 12:16:50 +08:00
}
module.exports = Note;