This repository was archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcapture-exception.js
79 lines (73 loc) · 1.78 KB
/
capture-exception.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
const onFinished = require('on-finished')
const uuid = require('uuid')
const _ = require('lodash')
const serverUrl = require('./server-url')
const {
log,
handlingResponse
} = require('./debug')
const Sentry = require('./sentry')
const ignoredHeaders = ['authorization', 'cookie']
process.on('unhandledRejection', handleException)
process.on('uncaughtException', handleException)
module.exports = captureException
captureException.middleware = captureExceptionMiddleware
function handleException (ex) {
const exception = ex || {}
const { stack, message } = exception
log('sentry', { message, stack })
captureException(exception)
}
function captureException (ex, data, optional = {}) {
const { req, info } = optional
if (req) {
try {
optional.req = setupException(req)
optional.extra = _.assign({}, data, info)
} catch (ex) {
return Sentry.captureException(ex)
}
}
Sentry.captureException(ex, optional)
}
function setupException (request) {
const {
query,
method,
headers,
originalUrl
} = request
const req = {
query,
method,
headers: _.omit(headers, ignoredHeaders)
}
try {
const url = new URL(originalUrl, serverUrl)
if (url) {
req.url = url
}
} catch (ex) {}
return req
}
function captureExceptionMiddleware () {
return (req, res, next) => {
const info = {
timestamp: (new Date().toISOString()),
id: uuid.v4()
}
req.info = info
res.captureException = (message, data) => {
captureException(message, data, { req, info })
}
onFinished(res, (err, res) => {
const { statusCode } = res
if (statusCode < 400 || statusCode === 404) {
return
}
handlingResponse('failed', req, res)
res.captureException(err)
})
next()
}
}