mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
1dc6fdcd66
refs https://github.com/TryGhost/Ghost/issues/12602 In order to build up a list of un/subscribes over time we have to use the customQuery functionality to run SQL aggregates - this is "hidden" behind an option, so that we can find{All,Page} as usual.
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
const errors = require('@tryghost/errors');
|
|
const ghostBookshelf = require('./base');
|
|
|
|
const MemberSubscribeEvent = ghostBookshelf.Model.extend({
|
|
tableName: 'members_subscribe_events',
|
|
customQuery(qb, options) {
|
|
if (options.aggregateSubscriptionDeltas) {
|
|
if (options.limit || options.filter) {
|
|
throw new errors.IncorrectUsageError('aggregateSubscriptionDeltas 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(CASE WHEN subscribed THEN 1 ELSE -1 END) as subscribed_delta`))
|
|
.groupByRaw(`DATE(created_at)`)
|
|
.orderByRaw(`DATE(created_at)`);
|
|
}
|
|
}
|
|
}, {
|
|
async edit() {
|
|
throw new errors.IncorrectUsageError('Cannot edit MemberSubscribeEvent');
|
|
},
|
|
|
|
async destroy() {
|
|
throw new errors.IncorrectUsageError('Cannot destroy MemberSubscribeEvent');
|
|
}
|
|
});
|
|
|
|
const MemberSubscribeEvents = ghostBookshelf.Collection.extend({
|
|
model: MemberSubscribeEvent
|
|
});
|
|
|
|
module.exports = {
|
|
MemberSubscribeEvent: ghostBookshelf.model('MemberSubscribeEvent', MemberSubscribeEvent),
|
|
MemberSubscribeEvents: ghostBookshelf.collection('MemberSubscribeEvents', MemberSubscribeEvents)
|
|
};
|