-
Notifications
You must be signed in to change notification settings - Fork 153
/
index.js
264 lines (245 loc) · 9.3 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
const { AsyncLocalStorage } = require("node:async_hooks");
const PgBoss = require("pg-boss");
const util = require("util");
const AppConfig = require("./src/app_config");
const ReportProcessingContext = require("./src/report_processing_context");
const Logger = require("./src/logger");
const Processor = require("./src/processor");
/**
* Gets an array of JSON report objects from the application confing, then runs
* a sequential chain of actions on each report object in the array. Some of the
* actions performed are optional based on the options passed to this function.
*
* @param {object} options an object with options to be used when processing
* all reports.
* @param {boolean} options.csv if true, format report data to CSV
* @param {boolean} options.json if true, format report data to JSON
* @param {string} options.output a string filepath where the analytics data
* will be written to disk after processing.
* @param {boolean} options.publish if true, the analytics data will be written
* to AWS S3 after processing.
* @param {boolean} options.realtime if true, the application will use the
* google analytics realtime data reporting API when requesting data. Otherwise
* the application uses the non-realtime data reporting API.
* @param {boolean} options.slim if true, the application will create a smaller
* data object when formatting the processed data.
* @param {boolean} options.'write-to-database' if true, the application will
* write the processed analytics data to the postgres database.
* @param {string} options.only if set, runs only the report with name
* matching the passed string.
* @param {string} options.frequency if set, runs only the reports with
* frequency matching the passed string.
*/
async function run(options = {}) {
const appConfig = new AppConfig(options);
const context = new ReportProcessingContext(new AsyncLocalStorage());
const reportConfigs = appConfig.filteredReportConfigurations;
const processor = Processor.buildAnalyticsProcessor(
appConfig,
Logger.initialize({
agencyName: appConfig.agencyLogName,
scriptName: appConfig.scriptName,
}),
);
for (const reportConfig of reportConfigs) {
await _processReport(appConfig, context, reportConfig, processor);
}
}
/**
* Creates a new ReportProcessingContext run for the processing of the report.
* Adds data to the context store which can be used by all actions in the
* processor chain (config, logger, reportConfig). Catches any errors that
* occur during processing and logs success or failure. This method does not
* throw so that subsequent reports will run if an error occurs in a previous
* report.
*
* @param {import('./src/app_config')} appConfig the application config
* @param {import('./src/report_processing_context')} context the
* report-specific context for processing.
* @param {object} reportConfig the configuration object for the analytics
* report to process.
* @param {import('./src/processor')} processor an initialized processor
* instance.
* @returns {Promise} resolves when processing completes or has an error.
*/
async function _processReport(appConfig, context, reportConfig, processor) {
return context.run(async () => {
const logger = Logger.initialize({
agencyName: appConfig.agencyLogName,
scriptName: appConfig.scriptName,
reportName: reportConfig.name,
});
context.appConfig = appConfig;
context.logger = logger;
context.reportConfig = reportConfig;
try {
await processor.processChain(context);
logger.info("Processing complete");
} catch (e) {
logger.error("Encountered an error");
logger.error(util.inspect(e));
}
});
}
/**
* Gets an array of JSON report objects from the application confing, then runs
* a sequential chain of actions on each report object in the array. Some of the
* actions performed are optional based on the options passed to this function.
*
* @param {object} options an object with options to be used when processing
* all reports.
* @param {boolean} options.csv if true, format report data to CSV
* @param {boolean} options.json if true, format report data to JSON
* @param {string} options.output a string filepath where the analytics data
* will be written to disk after processing.
* @param {boolean} options.publish if true, the analytics data will be written
* to AWS S3 after processing.
* @param {boolean} options.realtime if true, the application will use the
* google analytics realtime data reporting API when requesting data. Otherwise
* the application uses the non-realtime data reporting API.
* @param {boolean} options.slim if true, the application will create a smaller
* data object when formatting the processed data.
* @param {boolean} options.'write-to-database' if true, the application will
* write the processed analytics data to the postgres database.
* @param {string} options.only if set, runs only the report with name
* matching the passed string.
* @param {string} options.frequency if set, runs only the reports with
* frequency matching the passed string.
* @param {string} options.agenciesFile if set, run the queue publisher for all
* agencies in the JSON file
*/
async function runQueuePublish(options = {}) {
const agencies = _initAgencies(options.agenciesFile);
const appConfig = new AppConfig(options);
const reportConfigs = appConfig.filteredReportConfigurations;
const appLogger = Logger.initialize({
agencyName: appConfig.agencyLogName,
scriptName: appConfig.scriptName,
});
const queueClient = await _initQueueClient(appConfig, appLogger);
const queue = "analytics-reporter-job-queue";
for (const agency of agencies) {
for (const reportConfig of reportConfigs) {
process.env.AGENCY_NAME = agency.agencyName;
const reportLogger = Logger.initialize({
agencyName: appConfig.agencyLogName,
scriptName: appConfig.scriptName,
reportName: reportConfig.name,
});
try {
let jobId = await queueClient.send(
queue,
_createQueueMessage(
options,
agency,
reportConfig,
appConfig.scriptName,
),
{
priority: _messagePriority(reportConfig),
retryLimit: 2,
retryDelay: 10,
retryBackoff: true,
singletonKey: `${appConfig.scriptName}-${agency.agencyName}-${reportConfig.name}`,
},
);
if (jobId) {
reportLogger.info(
`Created job in queue: ${queue} with job ID: ${jobId}`,
);
} else {
reportLogger.info(`Found a duplicate job in queue: ${queue}`);
}
} catch (e) {
reportLogger.error(`Error sending to queue: ${queue}`);
reportLogger.error(util.inspect(e));
}
}
}
try {
await queueClient.stop();
appLogger.debug(`Stopping queue client`);
} catch (e) {
appLogger.error("Error stopping queue client");
appLogger.error(util.inspect(e));
}
}
function _initAgencies(agencies_file) {
const legacyAgencies = [
{
analyticsReportIds: process.env.ANALYTICS_REPORT_IDS,
agencyName: process.env.AGENCY_NAME,
awsBucketPath: process.env.AWS_BUCKET_PATH,
},
];
if (!agencies_file) {
return legacyAgencies;
}
const agencies = require(agencies_file);
return Array.isArray(agencies) ? agencies : legacyAgencies;
}
async function _initQueueClient(appConfig, logger) {
let queueClient;
try {
queueClient = new PgBoss(appConfig.messageQueueDatabaseConnection);
await queueClient.start();
logger.debug("Starting queue client");
} catch (e) {
logger.error("Error starting queue client");
logger.error(util.inspect(e));
}
return queueClient;
}
function _createQueueMessage(options, agency, reportConfig, scriptName) {
return {
...agency,
options,
reportConfig,
scriptName,
};
}
function _messagePriority(reportConfig) {
if (!reportConfig.frequency) {
return 0;
} else if (reportConfig.frequency == "daily") {
return 1;
} else if (reportConfig.frequency == "hourly") {
return 2;
} else if (reportConfig.frequency == "realtime") {
return 3;
}
}
/**
* @returns {Promise} when the process ends
*/
async function runQueueConsume() {
const appConfig = new AppConfig();
const appLogger = Logger.initialize();
const queueClient = await _initQueueClient(appConfig, appLogger);
const queue = "analytics-reporter-job-queue";
try {
const context = new ReportProcessingContext(new AsyncLocalStorage());
const processor = Processor.buildAnalyticsProcessor(appConfig, appLogger);
await queueClient.work(
queue,
{ newJobCheckIntervalSeconds: 1 },
async (message) => {
appLogger.info("Queue message received");
process.env.AGENCY_NAME = message.data.agencyName;
process.env.ANALYTICS_REPORT_IDS = message.data.analyticsReportIds;
process.env.AWS_BUCKET_PATH = message.data.awsBucketPath;
process.env.ANALYTICS_SCRIPT_NAME = message.data.scriptName;
await _processReport(
new AppConfig(message.data.options),
context,
message.data.reportConfig,
processor,
);
},
);
} catch (e) {
appLogger.error("Error polling queue for messages");
appLogger.error(util.inspect(e));
}
}
module.exports = { run, runQueuePublish, runQueueConsume };