2018-01-29 18:34:59 -05:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-29 23:17:44 -05:00
|
|
|
const utils = require('../services/utils');
|
2018-03-31 23:08:22 -04:00
|
|
|
const repository = require('../services/repository');
|
2018-01-29 23:17:44 -05:00
|
|
|
|
2018-01-29 18:34:59 -05:00
|
|
|
class Entity {
|
2018-04-01 11:42:12 -04:00
|
|
|
constructor(row = {}) {
|
2018-01-29 18:34:59 -05:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 23:08:22 -04:00
|
|
|
async save() {
|
|
|
|
await repository.updateEntity(this);
|
|
|
|
}
|
2018-01-29 18:34:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Entity;
|