8bb2c7d3d5
refs #10431 - added actions model - added logic in event emiiter to insert actions if supported
46 lines
1.2 KiB
JavaScript
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)
|
|
};
|