Notes/src/entities/note.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-01-28 23:16:50 -05:00
"use strict";
const Entity = require('./entity');
2018-01-29 23:35:36 -05:00
const protected_session = require('../services/protected_session');
2018-01-28 23:16:50 -05:00
class Note extends Entity {
2018-01-29 23:35:36 -05:00
static get tableName() { return "notes"; }
constructor(repository, row) {
super(repository, row);
2018-01-29 20:57:55 -05:00
2018-01-29 23:35:36 -05:00
if (this.isProtected) {
protected_session.decryptNote(this.dataKey, this);
}
if (this.isJson()) {
2018-01-29 20:57:55 -05:00
this.jsonContent = JSON.parse(this.content);
}
}
isJson() {
return this.type === "code" && this.mime === "application/json";
}
async getAttributes() {
return this.repository.getEntities("SELECT * FROM attributes WHERE noteId = ?", [this.noteId]);
2018-01-28 23:16:50 -05:00
}
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() {
return this.repository.getEntities("SELECT * FROM note_tree WHERE isDeleted = 0 AND noteId = ?", [this.noteId]);
2018-01-28 23:16:50 -05:00
}
2018-01-29 23:35:36 -05:00
beforeSaving() {
this.content = JSON.stringify(this.jsonContent, null, 4);
if (this.isProtected) {
protected_session.encryptNote(this.dataKey, this);
}
}
2018-01-28 23:16:50 -05:00
}
module.exports = Note;