2021-02-12 16:15:47 +03:00
|
|
|
const errors = require('@tryghost/errors');
|
|
|
|
const ghostBookshelf = require('./base');
|
|
|
|
|
|
|
|
const MemberPaidSubscriptionEvent = ghostBookshelf.Model.extend({
|
|
|
|
tableName: 'members_paid_subscription_events',
|
2021-02-16 19:14:20 +03:00
|
|
|
|
|
|
|
member() {
|
|
|
|
return this.belongsTo('Member', 'member_id', 'id');
|
|
|
|
},
|
|
|
|
|
2021-02-12 16:15:47 +03:00
|
|
|
customQuery(qb, options) {
|
|
|
|
if (options.aggregateMRRDeltas) {
|
|
|
|
if (options.limit || options.filter) {
|
2021-12-01 14:22:14 +03:00
|
|
|
throw new errors.IncorrectUsageError({message: 'aggregateMRRDeltas does not work when passed a filter or limit'});
|
2021-02-12 16:15:47 +03:00
|
|
|
}
|
|
|
|
const knex = ghostBookshelf.knex;
|
|
|
|
return qb.clear('select')
|
|
|
|
.select(knex.raw('DATE(created_at) as date'))
|
|
|
|
.select(knex.raw('SUM(mrr_delta) as mrr_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('aggregateMRRDeltas');
|
|
|
|
}
|
|
|
|
|
|
|
|
return options;
|
|
|
|
},
|
|
|
|
async edit() {
|
2021-12-01 14:22:14 +03:00
|
|
|
throw new errors.IncorrectUsageError({message: 'Cannot edit MemberPaidSubscriptionEvent'});
|
2021-02-12 16:15:47 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
async destroy() {
|
2021-12-01 14:22:14 +03:00
|
|
|
throw new errors.IncorrectUsageError({message: 'Cannot destroy MemberPaidSubscriptionEvent'});
|
2021-02-12 16:15:47 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const MemberPaidSubscriptionEvents = ghostBookshelf.Collection.extend({
|
|
|
|
model: MemberPaidSubscriptionEvent
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
MemberPaidSubscriptionEvent: ghostBookshelf.model('MemberPaidSubscriptionEvent', MemberPaidSubscriptionEvent),
|
|
|
|
MemberPaidSubscriptionEvents: ghostBookshelf.collection('MemberPaidSubscriptionEvents', MemberPaidSubscriptionEvents)
|
|
|
|
};
|