2018-01-29 18:34:59 -05:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-29 23:17:44 -05:00
|
|
|
const utils = require('../services/utils');
|
|
|
|
|
2018-01-29 18:34:59 -05:00
|
|
|
class Entity {
|
2018-08-22 23:37:06 +02:00
|
|
|
/**
|
|
|
|
* @param {object} [row] - database row representing given entity
|
|
|
|
*/
|
2018-04-01 11:42:12 -04:00
|
|
|
constructor(row = {}) {
|
2018-01-29 18:34:59 -05:00
|
|
|
for (const key in row) {
|
2019-02-08 21:01:26 +01:00
|
|
|
// ! is used when joint-fetching notes and note_contents objects for performance
|
|
|
|
if (!key.startsWith('!')) {
|
|
|
|
this[key] = row[key];
|
|
|
|
}
|
2018-01-29 18:34:59 -05:00
|
|
|
}
|
2018-08-07 11:38:00 +02:00
|
|
|
|
|
|
|
if ('isDeleted' in this) {
|
|
|
|
this.isDeleted = !!this.isDeleted;
|
|
|
|
}
|
2018-01-29 18:34:59 -05:00
|
|
|
}
|
2018-03-31 23:08:22 -04:00
|
|
|
|
2018-04-02 20:30:00 -04:00
|
|
|
beforeSaving() {
|
2018-08-27 23:04:52 +02:00
|
|
|
this.generateIdIfNecessary();
|
2018-05-22 00:15:54 -04:00
|
|
|
|
2018-08-12 20:04:48 +02:00
|
|
|
const origHash = this.hash;
|
|
|
|
|
|
|
|
this.hash = this.generateHash();
|
|
|
|
|
2019-03-26 22:24:04 +01:00
|
|
|
if (this.forcedChange) {
|
|
|
|
this.isChanged = true;
|
|
|
|
delete this.forcedChange;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.isChanged = origHash !== this.hash;
|
|
|
|
}
|
2018-08-12 20:04:48 +02:00
|
|
|
}
|
|
|
|
|
2018-08-27 23:04:52 +02:00
|
|
|
generateIdIfNecessary() {
|
|
|
|
if (!this[this.constructor.primaryKeyName]) {
|
|
|
|
this[this.constructor.primaryKeyName] = utils.newEntityId();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 20:04:48 +02:00
|
|
|
generateHash() {
|
2018-05-22 00:15:54 -04:00
|
|
|
let contentToHash = "";
|
|
|
|
|
2018-05-22 22:22:15 -04:00
|
|
|
for (const propertyName of this.constructor.hashedProperties) {
|
2018-05-22 00:15:54 -04:00
|
|
|
contentToHash += "|" + this[propertyName];
|
|
|
|
}
|
|
|
|
|
2018-08-12 20:04:48 +02:00
|
|
|
return utils.hash(contentToHash).substr(0, 10);
|
2018-04-02 20:30:00 -04:00
|
|
|
}
|
|
|
|
|
2018-03-31 23:08:22 -04:00
|
|
|
async save() {
|
2018-07-24 20:35:03 +02:00
|
|
|
await require('../services/repository').updateEntity(this);
|
2018-04-02 22:53:01 -04:00
|
|
|
|
|
|
|
return this;
|
2018-03-31 23:08:22 -04:00
|
|
|
}
|
2018-01-29 18:34:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Entity;
|