-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
444 lines (388 loc) · 14.2 KB
/
index.ts
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import { MappedPosition, SourceMapConsumer } from 'source-map-js';
import { DatabaseController } from '../../../lib/db/controller';
import { EventWorker } from '../../../lib/event-worker';
import { DatabaseReadWriteError } from '../../../lib/workerErrors';
import * as WorkerNames from '../../../lib/workerNames';
import { GroupWorkerTask } from '../../grouper/types/group-worker-task';
import { SourceMapsRecord } from '../../release/types';
import * as pkg from '../package.json';
import { JavaScriptEventWorkerTask } from '../types/javascript-event-worker-task';
import HawkCatcher from '@hawk.so/nodejs';
import Crypto from '../../../lib/utils/crypto';
import { rightTrim } from '../../../lib/utils/string';
import { BacktraceFrame, SourceCodeLine, SourceMapDataExtended } from '@hawk.so/types';
import { beautifyUserAgent } from './utils';
import { Collection } from 'mongodb';
import { parse } from '@babel/parser';
import traverse from '@babel/traverse';
/**
* Worker for handling Javascript events
*/
export default class JavascriptEventWorker extends EventWorker {
/**
* Worker type (will pull tasks from Registry queue with the same name)
*/
public readonly type: string = pkg.workerType;
/**
* Releases collection in database
*/
public releasesDbCollection: Collection;
/**
* Database Controller
*/
private db: DatabaseController = new DatabaseController(process.env.MONGO_EVENTS_DATABASE_URI);
/**
* Collection where source maps stored
*/
private releasesDbCollectionName = 'releases';
/**
* Start consuming messages
*/
public async start(): Promise<void> {
await this.db.connect();
this.db.createGridFsBucket(this.releasesDbCollectionName);
this.prepareCache();
this.releasesDbCollection = this.db.getConnection().collection(this.releasesDbCollectionName);
await super.start();
}
/**
* Finish everything
*/
public async finish(): Promise<void> {
await super.finish();
this.clearCache();
await this.db.close();
}
/**
* Message handle function
*
* @param event - event to handle
*/
public async handle(event: JavaScriptEventWorkerTask): Promise<void> {
if (event.payload.release && event.payload.backtrace) {
this.logger.info('beautifyBacktrace called');
try {
event.payload.backtrace = await this.beautifyBacktrace(event);
} catch (err) {
this.logger.error('Error while beautifing backtrace', err);
}
}
if (event.payload.addons?.userAgent) {
event.payload.addons.beautifiedUserAgent = beautifyUserAgent(event.payload.addons.userAgent.toString());
}
await this.addTask(WorkerNames.GROUPER, {
projectId: event.projectId,
catcherType: this.type,
event: event.payload,
} as GroupWorkerTask);
}
/**
* This method tries to find a source map for passed release
* and overrides a backtrace with parsed source-map
*
* @param {JavaScriptEventWorkerTask} event — js error minified
* @returns {BacktraceFrame[]} - parsed backtrace
*/
private async beautifyBacktrace(event: JavaScriptEventWorkerTask): Promise<BacktraceFrame[]> {
const releaseRecord: SourceMapsRecord = await this.cache.get(
`releaseRecord:${event.projectId}:${event.payload.release.toString()}`,
() => {
return this.getReleaseRecord(
event.projectId,
event.payload.release.toString()
);
}
);
if (!releaseRecord) {
this.logger.info('beautifyBacktrace: no releaseRecord found');
return event.payload.backtrace;
}
this.logger.info(`beautifyBacktrace: release record found: ${JSON.stringify(releaseRecord)}`);
/**
* If we have a source map associated with passed release, override some values in backtrace with original line/file
*/
return Promise.all(event.payload.backtrace.map(async (frame: BacktraceFrame, index: number) => {
/**
* Get cached (or set if the value is missing) real backtrace frame
*/
const result = await this.cache.get(
`consumeBacktraceFrame:${event.payload.release.toString()}:${Crypto.hash(frame)}:${index}`,
() => {
return this.consumeBacktraceFrame(frame, releaseRecord)
.catch((error) => {
this.logger.error('Error while consuming ' + error.stack);
/**
* Send error to Hawk
*/
HawkCatcher.send(error, {
payload: event.payload as unknown as Record<string, never>,
});
return event.payload.backtrace[index];
});
}
);
return result;
}));
}
/**
* Try to parse backtrace item with source map
*
* @param {BacktraceFrame} stackFrame — one line of stack
* @param {SourceMapsRecord} releaseRecord — what we store in DB (map file name, origin file name, maps files)
*/
private async consumeBacktraceFrame(stackFrame: BacktraceFrame,
releaseRecord: SourceMapsRecord): Promise<BacktraceFrame> {
/**
* Sometimes catcher can't extract file from the backtrace
*/
if (!stackFrame.file) {
this.logger.info(`consumeBacktraceFrame: No stack frame file found`);
return stackFrame;
}
/**
* One releaseRecord can contain several source maps for different chunks,
* so find a map for current stack-frame file
*/
const mapForFrame: SourceMapDataExtended = releaseRecord.files.find((mapFileName: SourceMapDataExtended) => {
/**
* File name with full path from stack frame
* For example, 'file:///main.js' or 'file:///codex.so/static/js/main.js'
*/
const fullPathFileName = stackFrame.file;
/**
* Origin file name from source map
* For example, 'main.js' or 'static/js/main.js'
*/
const originFileName = mapFileName.originFileName;
return fullPathFileName.includes(originFileName);
});
if (!mapForFrame) {
this.logger.info(`consumeBacktraceFrame: No map file found for the frame: ${JSON.stringify(stackFrame)}`);
return stackFrame;
}
/**
* Load source map content from Grid fs
*/
const mapContent = await this.loadSourceMapFile(mapForFrame);
if (!mapContent) {
this.logger.info(`consumeBacktraceFrame: Can't load map content for ${JSON.stringify(mapForFrame)}`);
return stackFrame;
}
/**
* @todo cache source map consumer for file-keys
*/
const consumer = this.consumeSourceMap(mapContent);
/**
* Error's original position
*/
const originalLocation: MappedPosition = consumer.originalPositionFor({
line: stackFrame.line,
column: stackFrame.column,
/**
* Helps to get exact position if column is not accurate enough
*/
bias: SourceMapConsumer.LEAST_UPPER_BOUND,
});
/**
* Source code lines
*/
let lines = [];
let functionContext = originalLocation.name;
/**
* Get source code lines above and below event line
* If source file path is missing then skip source lines reading
*
* Fixes bug: https://github.com/codex-team/hawk.workers/issues/121
*/
if (originalLocation.source) {
console.log('original location source found')
/**
* Get 5 lines above and 5 below
*/
lines = this.readSourceLines(consumer, originalLocation);
const originalContent = consumer.sourceContentFor(originalLocation.source);
functionContext = this.getFunctionContext(originalContent, originalLocation.line) ?? originalLocation.name;
}
return Object.assign(stackFrame, {
line: originalLocation.line,
column: originalLocation.column,
file: originalLocation.source,
function: functionContext,
sourceCode: lines,
}) as BacktraceFrame;
}
/**
* Method that is used to parse full function context of the code position
* @param sourceCode - content of the source file
* @param line - number of the line from the stack trace
* @returns - string of the function context or null if it could not be parsed
*/
private getFunctionContext(sourceCode: string, line: number): string | null {
let functionName: string | null = null;
let className: string | null = null;
let isAsync: boolean = false;
try {
const ast = parse(sourceCode, {
sourceType: "module",
plugins: [
"typescript",
"jsx",
"classProperties",
"decorators",
"optionalChaining",
"nullishCoalescingOperator",
"dynamicImport",
"bigInt",
"topLevelAwait"
]
});
traverse(ast as any, {
/**
* It is used to get class decorator of the position, it will save class that is related to original position
*/
ClassDeclaration(path) {
console.log(`class declaration: loc: ${path.node.loc}, line: ${line}, node.start.line: ${path.node.loc.start.line}, node.end.line: ${path.node.loc.end.line}`)
if (path.node.loc && path.node.loc.start.line <= line && path.node.loc.end.line >= line) {
className = path.node.id.name || null;
}
},
/**
* It is used to get class and its method decorator of the position
* It will save class and method, that are related to original position
*/
ClassMethod(path) {
console.log(`class declaration: loc: ${path.node.loc}, line: ${line}, node.start.line: ${path.node.loc.start.line}, node.end.line: ${path.node.loc.end.line}`)
if (path.node.loc && path.node.loc.start.line <= line && path.node.loc.end.line >= line) {
// Handle different key types
if (path.node.key.type === 'Identifier') {
functionName = path.node.key.name;
}
isAsync = path.node.async;
}
},
/**
* It is used to get function name that is declared out of class
*/
FunctionDeclaration(path) {
console.log(`function declaration: loc: ${path.node.loc}, line: ${line}, node.start.line: ${path.node.loc.start.line}, node.end.line: ${path.node.loc.end.line}`)
if (path.node.loc && path.node.loc.start.line <= line && path.node.loc.end.line >= line) {
functionName = path.node.id.name || null;
isAsync = path.node.async;
}
},
/**
* It is used to get anonimous function names in function expressions or arrow function expressions
*/
VariableDeclarator(path) {
console.log(`variable declaration: node.type: ${path.node.init.type}, line: ${line}, `)
if (
path.node.init &&
(path.node.init.type === "FunctionExpression" || path.node.init.type === "ArrowFunctionExpression") &&
path.node.loc &&
path.node.loc.start.line <= line &&
path.node.loc.end.line >= line
) {
// Handle different id types
if (path.node.id.type === 'Identifier') {
functionName = path.node.id.name;
}
isAsync = (path.node.init as any).async;
}
}
});
} catch (e) {
console.error(`Failed to parse source code: ${e.message}`);
}
return functionName ? `${isAsync ? "async " : ""}${className ? `${className}.` : ""}${functionName}` : null;
}
/**
* Downloads source map file from Grid FS
*
* @param map - saved file info without content.
*/
private loadSourceMapFile(map: SourceMapDataExtended): Promise<string> {
return new Promise((resolve, reject) => {
let buf = Buffer.from('');
const readstream = this.db.getBucket().openDownloadStream(map._id)
.on('data', (chunk) => {
buf = Buffer.concat([buf, chunk]);
})
.on('error', (error) => {
reject(error);
})
.on('end', () => {
const res = buf.toString();
/**
* Clean up memory
*/
buf = null;
readstream.destroy();
resolve(res);
});
});
}
/**
* Reads near-placed lines from the original source
*
* @param {SourceMapConsumer} consumer - consumer for course maps
* @param {MappedPosition} original - source file's line,column,source etc
* @returns {SourceCodeLine[]}
*/
private readSourceLines(
consumer: SourceMapConsumer,
original: MappedPosition
): SourceCodeLine[] {
const sourceContent = consumer.sourceContentFor(original.source, true);
if (!sourceContent) {
return null;
}
const margin = 5;
const lines = sourceContent.split(/(?:\r\n|\r|\n)/g);
const focusedLines = lines.slice(original.line - margin - 1, original.line + margin);
return focusedLines.map((line, idx) => {
return {
line: Math.max(original.line - margin + idx, 1),
content: rightTrim(line),
} as SourceCodeLine;
});
}
/**
* Return source map for passed release from DB
* Source Map are delivered at the building-time from client's server to the Source Maps Worker
*
* @param {string} projectId - event's project id
* @param {string} release - bundle version passed with source map and same release passed to the catcher's init
*/
private async getReleaseRecord(projectId: string, release: string): Promise<SourceMapsRecord> {
try {
const releaseRecord = await this.releasesDbCollection
.findOne({
projectId,
release,
}, {
sort: {
_id: -1,
},
});
this.logger.info(`Got release record: \n${JSON.stringify(releaseRecord)}`);
return releaseRecord;
} catch (err) {
this.logger.error('Error while getting release record', err);
throw new DatabaseReadWriteError(err);
}
}
/**
* Promise style decorator around source-map consuming method.
* Source Map Consumer is an object allowed to extract original position by line and col
*
* @param {string} mapBody - source map content
*/
private consumeSourceMap(mapBody: string): SourceMapConsumer {
try {
const rawSourceMap = JSON.parse(mapBody);
return new SourceMapConsumer(rawSourceMap);
} catch (e) {
this.logger.error(`Error on source-map consumer initialization: ${e}`);
}
}
}