2018-08-03 04:48:21 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const Entity = require('./entity');
|
|
|
|
const repository = require('../services/repository');
|
|
|
|
const dateUtils = require('../services/date_utils');
|
|
|
|
const sql = require('../services/sql');
|
|
|
|
|
2018-08-23 05:37:06 +08:00
|
|
|
/**
|
|
|
|
* Attribute is key value pair owned by a note.
|
|
|
|
*
|
2019-11-09 16:36:08 +08:00
|
|
|
* @property {string} attributeId
|
|
|
|
* @property {string} noteId
|
|
|
|
* @property {string} type
|
|
|
|
* @property {string} name
|
|
|
|
* @property {string} value
|
|
|
|
* @property {int} position
|
|
|
|
* @property {boolean} isInheritable
|
|
|
|
* @property {boolean} isDeleted
|
|
|
|
* @property {string} utcDateCreated
|
|
|
|
* @property {string} utcDateModified
|
2018-08-23 05:37:06 +08:00
|
|
|
*
|
|
|
|
* @extends Entity
|
|
|
|
*/
|
2018-08-03 04:48:21 +08:00
|
|
|
class Attribute extends Entity {
|
2018-08-17 05:00:04 +08:00
|
|
|
static get entityName() { return "attributes"; }
|
2018-08-03 04:48:21 +08:00
|
|
|
static get primaryKeyName() { return "attributeId"; }
|
2019-03-13 03:58:31 +08:00
|
|
|
static get hashedProperties() { return ["attributeId", "noteId", "type", "name", "value", "isInheritable", "isDeleted", "utcDateCreated"]; }
|
2018-08-03 04:48:21 +08:00
|
|
|
|
2018-08-06 14:59:26 +08:00
|
|
|
constructor(row) {
|
|
|
|
super(row);
|
|
|
|
|
2018-08-07 17:38:00 +08:00
|
|
|
this.isInheritable = !!this.isInheritable;
|
|
|
|
|
2018-08-06 21:23:22 +08:00
|
|
|
if (this.isDefinition()) {
|
|
|
|
try {
|
|
|
|
this.value = JSON.parse(this.value);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
2018-08-06 14:59:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-13 06:34:22 +08:00
|
|
|
/**
|
|
|
|
* @returns {Promise<Note|null>}
|
|
|
|
*/
|
2018-08-03 04:48:21 +08:00
|
|
|
async getNote() {
|
2018-11-13 06:34:22 +08:00
|
|
|
if (!this.__note) {
|
|
|
|
this.__note = await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.noteId]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.__note;
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
2018-11-13 06:34:22 +08:00
|
|
|
/**
|
|
|
|
* @returns {Promise<Note|null>}
|
|
|
|
*/
|
2018-08-10 02:08:00 +08:00
|
|
|
async getTargetNote() {
|
|
|
|
if (this.type !== 'relation') {
|
|
|
|
throw new Error(`Attribute ${this.attributeId} is not relation`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.value) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-11-13 06:34:22 +08:00
|
|
|
if (!this.__targetNote) {
|
|
|
|
this.__targetNote = await repository.getEntity("SELECT * FROM notes WHERE noteId = ?", [this.value]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.__targetNote;
|
2018-08-10 02:08:00 +08:00
|
|
|
}
|
|
|
|
|
2018-11-13 06:34:22 +08:00
|
|
|
/**
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2018-08-06 14:59:26 +08:00
|
|
|
isDefinition() {
|
2018-08-06 21:23:22 +08:00
|
|
|
return this.type === 'label-definition' || this.type === 'relation-definition';
|
2018-08-06 14:59:26 +08:00
|
|
|
}
|
2018-08-03 04:48:21 +08:00
|
|
|
|
2018-08-06 14:59:26 +08:00
|
|
|
async beforeSaving() {
|
2018-08-03 04:48:21 +08:00
|
|
|
if (!this.value) {
|
|
|
|
// null value isn't allowed
|
|
|
|
this.value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.position === undefined) {
|
|
|
|
this.position = 1 + await sql.getValue(`SELECT COALESCE(MAX(position), 0) FROM attributes WHERE noteId = ?`, [this.noteId]);
|
|
|
|
}
|
|
|
|
|
2018-08-03 19:06:56 +08:00
|
|
|
if (!this.isInheritable) {
|
|
|
|
this.isInheritable = false;
|
|
|
|
}
|
|
|
|
|
2018-08-03 04:48:21 +08:00
|
|
|
if (!this.isDeleted) {
|
|
|
|
this.isDeleted = false;
|
|
|
|
}
|
|
|
|
|
2019-03-13 03:58:31 +08:00
|
|
|
if (!this.utcDateCreated) {
|
2019-03-14 05:43:59 +08:00
|
|
|
this.utcDateCreated = dateUtils.utcNowDateTime();
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
2018-08-06 14:59:26 +08:00
|
|
|
super.beforeSaving();
|
2018-08-13 02:04:48 +08:00
|
|
|
|
|
|
|
if (this.isChanged) {
|
2019-03-14 05:43:59 +08:00
|
|
|
this.utcDateModified = dateUtils.utcNowDateTime();
|
2018-08-13 02:04:48 +08:00
|
|
|
}
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
2018-11-30 17:20:03 +08:00
|
|
|
|
|
|
|
// cannot be static!
|
|
|
|
updatePojo(pojo) {
|
|
|
|
delete pojo.isOwned;
|
|
|
|
}
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Attribute;
|