Notes/src/entities/entity.js

33 lines
730 B
JavaScript
Raw Normal View History

"use strict";
const utils = require('../services/utils');
class Entity {
2018-04-01 11:42:12 -04:00
constructor(row = {}) {
for (const key in row) {
this[key] = row[key];
}
}
2018-03-31 23:08:22 -04:00
2018-04-02 20:30:00 -04:00
beforeSaving() {
if (!this[this.constructor.primaryKeyName]) {
this[this.constructor.primaryKeyName] = utils.newEntityId();
}
let contentToHash = "";
2018-05-22 22:22:15 -04:00
for (const propertyName of this.constructor.hashedProperties) {
contentToHash += "|" + this[propertyName];
}
this["hash"] = utils.hash(contentToHash).substr(0, 10);
2018-04-02 20:30:00 -04:00
}
2018-03-31 23:08:22 -04:00
async save() {
await require('../services/repository').updateEntity(this);
2018-04-02 22:53:01 -04:00
return this;
2018-03-31 23:08:22 -04:00
}
}
module.exports = Entity;