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