Ghost/core/server/models/action.js
kirrg001 8bb2c7d3d5 Added model implementation for actions
refs #10431

- added actions model
- added logic in event emiiter to insert actions if supported
2019-02-06 21:36:09 +01:00

46 lines
1.2 KiB
JavaScript

const _ = require('lodash');
const ghostBookshelf = require('./base');
const candidates = [];
_.each(ghostBookshelf._models, (model) => {
candidates.push([model, model.prototype.tableName.replace(/s$/, '')]);
});
const Action = ghostBookshelf.Model.extend({
tableName: 'actions',
actor() {
return this.morphTo('actor', ['actor_type', 'actor_id'], ...candidates);
},
resource() {
return this.morphTo('resource', ['resource_type', 'resource_id'], ...candidates);
},
toJSON(unfilteredOptions) {
const options = Action.filterOptions(unfilteredOptions, 'toJSON');
const attrs = ghostBookshelf.Model.prototype.toJSON.call(this, options);
// @TODO: context is not implemented yet
delete attrs.context;
return attrs;
}
}, {
orderDefaultOptions: function orderDefaultOptions() {
return {
created_at: 'DESC'
};
},
add(data, unfilteredOptions = {}) {
const options = this.filterOptions(unfilteredOptions, 'add');
return ghostBookshelf.Model.add.call(this, data, options);
}
});
module.exports = {
Action: ghostBookshelf.model('Action', Action)
};