mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Removed unused email analytics job
no issue - The 'fetch-all' job was only used during development and has never been useful since. It's a dead code x_x
This commit is contained in:
parent
25479364a9
commit
c6c720634c
1 changed files with 0 additions and 60 deletions
|
@ -1,60 +0,0 @@
|
||||||
const {parentPort} = require('bthreads');
|
|
||||||
const debug = require('@tryghost/debug')('jobs:email-analytics:fetch-all');
|
|
||||||
|
|
||||||
// one-off job to fetch all available events and re-process them idempotently
|
|
||||||
// NB. can be a _very_ long job for sites with many members and frequent emails
|
|
||||||
|
|
||||||
function cancel() {
|
|
||||||
parentPort.postMessage('Email analytics fetch-all job cancelled before completion');
|
|
||||||
|
|
||||||
if (parentPort) {
|
|
||||||
parentPort.postMessage('cancelled');
|
|
||||||
} else {
|
|
||||||
setTimeout(() => {
|
|
||||||
process.exit(0);
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (parentPort) {
|
|
||||||
parentPort.once('message', (message) => {
|
|
||||||
if (message === 'cancel') {
|
|
||||||
return cancel();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
(async () => {
|
|
||||||
const models = require('../../../models');
|
|
||||||
const settingsService = require('../../settings');
|
|
||||||
|
|
||||||
// must be initialized before emailAnalyticsService is required otherwise
|
|
||||||
// requires are in the wrong order and settingsCache will always be empty
|
|
||||||
await models.init();
|
|
||||||
await settingsService.init();
|
|
||||||
|
|
||||||
const emailAnalyticsService = require('../');
|
|
||||||
|
|
||||||
const fetchStartDate = new Date();
|
|
||||||
debug('Starting email analytics fetch of all available events');
|
|
||||||
const eventStats = await emailAnalyticsService.fetchAll();
|
|
||||||
const fetchEndDate = new Date();
|
|
||||||
debug(`Finished fetching ${eventStats.totalEvents} analytics events in ${fetchEndDate - fetchStartDate}ms`);
|
|
||||||
|
|
||||||
const aggregateStartDate = new Date();
|
|
||||||
debug(`Starting email analytics aggregation for ${eventStats.emailIds.length} emails`);
|
|
||||||
await emailAnalyticsService.aggregateStats(eventStats);
|
|
||||||
const aggregateEndDate = new Date();
|
|
||||||
debug(`Finished aggregating email analytics in ${aggregateEndDate - aggregateStartDate}ms`);
|
|
||||||
|
|
||||||
parentPort.postMessage(`Fetched ${eventStats.totalEvents} events and aggregated stats for ${eventStats.emailIds.length} emails in ${aggregateEndDate - fetchStartDate}ms`);
|
|
||||||
|
|
||||||
if (parentPort) {
|
|
||||||
parentPort.postMessage('done');
|
|
||||||
} else {
|
|
||||||
// give the logging pipes time finish writing before exit
|
|
||||||
setTimeout(() => {
|
|
||||||
process.exit(0);
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
})();
|
|
Loading…
Add table
Reference in a new issue