forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeRequestInfoCollector.ts
More file actions
37 lines (32 loc) · 1.34 KB
/
NodeRequestInfoCollector.ts
File metadata and controls
37 lines (32 loc) · 1.34 KB
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
import { IRequestInfo } from '../models/IRequestInfo';
import { EventPluginContext } from '../plugins/EventPluginContext';
import { Utils } from '../Utils';
import { IRequestInfoCollector } from './IRequestInfoCollector';
export class NodeRequestInfoCollector implements IRequestInfoCollector {
public getRequestInfo(context: EventPluginContext): IRequestInfo {
const REQUEST_KEY: string = '@request'; // optimization for minifier.
if (!context.contextData[REQUEST_KEY]) {
return null;
}
const exclusions = context.client.config.dataExclusions;
// TODO: include referrer
const request = context.contextData[REQUEST_KEY];
const requestInfo: IRequestInfo = {
client_ip_address: request.ip,
user_agent: request.headers['user-agent'],
is_secure: request.secure,
http_method: request.method,
host: request.hostname || request.host,
path: request.path,
post_data: JSON.parse(Utils.stringify(request.body || {}, exclusions)),
cookies: Utils.getCookies(request.headers.cookie, exclusions),
query_string: JSON.parse(Utils.stringify(request.params || {}, exclusions))
};
const host = request.headers.host;
const port: number = host && parseInt(host.slice(host.indexOf(':') + 1), 10);
if (port > 0) {
requestInfo.port = port;
}
return requestInfo;
}
}