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