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