mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
27b9e4ae04
refs https://github.com/TryGhost/Ghost/issues/12602 When listing site-wide event, we want to include member information so that we can contextualise the event when displaying it.
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
const errors = require('@tryghost/errors');
|
|
const ghostBookshelf = require('./base');
|
|
|
|
const MemberPaymentEvent = ghostBookshelf.Model.extend({
|
|
tableName: 'members_payment_events',
|
|
|
|
member() {
|
|
return this.belongsTo('Member', 'member_id', 'id');
|
|
},
|
|
|
|
customQuery(qb, options) {
|
|
if (options.aggregatePaymentVolume) {
|
|
if (options.limit || options.filter) {
|
|
throw new errors.IncorrectUsageError('aggregatePaymentVolume does not work when passed a filter or limit');
|
|
}
|
|
const knex = ghostBookshelf.knex;
|
|
return qb.clear('select')
|
|
.select(knex.raw('DATE(created_at) as date'))
|
|
.select(knex.raw('SUM(amount) as volume_delta'))
|
|
.select('currency')
|
|
.groupByRaw('currency, DATE(created_at)')
|
|
.orderByRaw('DATE(created_at)');
|
|
}
|
|
}
|
|
}, {
|
|
permittedOptions(methodName) {
|
|
const options = ghostBookshelf.Model.permittedOptions.call(this, methodName);
|
|
|
|
if (methodName === 'findAll') {
|
|
return options.concat('aggregatePaymentVolume');
|
|
}
|
|
|
|
return options;
|
|
},
|
|
async edit() {
|
|
throw new errors.IncorrectUsageError('Cannot edit MemberPaymentEvent');
|
|
},
|
|
|
|
async destroy() {
|
|
throw new errors.IncorrectUsageError('Cannot destroy MemberPaymentEvent');
|
|
}
|
|
});
|
|
|
|
const MemberPaymentEvents = ghostBookshelf.Collection.extend({
|
|
model: MemberPaymentEvent
|
|
});
|
|
|
|
module.exports = {
|
|
MemberPaymentEvent: ghostBookshelf.model('MemberPaymentEvent', MemberPaymentEvent),
|
|
MemberPaymentEvents: ghostBookshelf.collection('MemberPaymentEvents', MemberPaymentEvents)
|
|
};
|
|
|