-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathNodeRequests.ts
156 lines (134 loc) · 4.21 KB
/
NodeRequests.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
import * as http from 'http';
import * as https from 'https';
import * as createHttpsProxyAgent from 'https-proxy-agent';
import { HttpsProxyAgentOptions } from 'https-proxy-agent';
// No types for the event source.
// @ts-ignore
import { EventSource as LDEventSource } from 'launchdarkly-eventsource';
import {
LDLogger,
LDProxyOptions,
LDTLSOptions,
platform,
} from '@launchdarkly/js-server-sdk-common';
import NodeResponse from './NodeResponse';
function processTlsOptions(tlsOptions: LDTLSOptions): https.AgentOptions {
const options: https.AgentOptions & { [index: string]: any } = {
ca: tlsOptions.ca,
cert: tlsOptions.cert,
checkServerIdentity: tlsOptions.checkServerIdentity,
ciphers: tlsOptions.ciphers,
// Our interface says object for the pfx object. But the node
// type is more strict. This is also true for the key and KeyObject.
// @ts-ignore
pfx: tlsOptions.pfx,
// @ts-ignore
key: tlsOptions.key,
passphrase: tlsOptions.passphrase,
rejectUnauthorized: tlsOptions.rejectUnauthorized,
secureProtocol: tlsOptions.secureProtocol,
servername: tlsOptions.servername,
};
// Node does not take kindly to undefined keys.
Object.keys(options).forEach((key) => {
if (options[key] === undefined) {
delete options[key];
}
});
return options;
}
function processProxyOptions(
proxyOptions: LDProxyOptions,
additional: https.AgentOptions = {},
): https.Agent | http.Agent {
const protocol = proxyOptions.scheme?.startsWith('https') ? 'https:' : 'http';
const parsedOptions: HttpsProxyAgentOptions & { [index: string]: any } = {
port: proxyOptions.port,
host: proxyOptions.host,
protocol,
...additional,
};
if (proxyOptions.auth) {
parsedOptions.headers = {
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}}`,
};
}
// Node does not take kindly to undefined keys.
Object.keys(parsedOptions).forEach((key) => {
if (parsedOptions[key] === undefined) {
delete parsedOptions[key];
}
});
return createHttpsProxyAgent(parsedOptions);
}
function createAgent(
tlsOptions?: LDTLSOptions,
proxyOptions?: LDProxyOptions,
logger?: LDLogger,
): https.Agent | http.Agent | undefined {
if (!proxyOptions?.auth?.startsWith('https') && tlsOptions) {
logger?.warn('Proxy configured with TLS options, but is not using an https auth.');
}
if (tlsOptions) {
const agentOptions = processTlsOptions(tlsOptions);
if (proxyOptions) {
return processProxyOptions(proxyOptions, agentOptions);
}
return new https.Agent(agentOptions);
}
if (proxyOptions) {
return processProxyOptions(proxyOptions);
}
return undefined;
}
export default class NodeRequests implements platform.Requests {
private agent: https.Agent | http.Agent | undefined;
private tlsOptions: LDTLSOptions | undefined;
private hasProxy: boolean = false;
private hasProxyAuth: boolean = false;
constructor(tlsOptions?: LDTLSOptions, proxyOptions?: LDProxyOptions, logger?: LDLogger) {
this.agent = createAgent(tlsOptions, proxyOptions, logger);
this.hasProxy = !!proxyOptions;
this.hasProxyAuth = !!proxyOptions?.auth;
}
fetch(url: string, options: platform.Options = {}): Promise<platform.Response> {
const isSecure = url.startsWith('https://');
const impl = isSecure ? https : http;
return new Promise((resolve, reject) => {
const req = impl.request(
url,
{
timeout: options.timeout,
headers: options.headers,
method: options.method,
agent: this.agent,
},
(res) => resolve(new NodeResponse(res)),
);
if (options.body) {
req.write(options.body);
}
req.on('error', (err) => {
reject(err);
});
req.end();
});
}
createEventSource(
url: string,
eventSourceInitDict: platform.EventSourceInitDict,
): platform.EventSource {
const expandedOptions = {
...eventSourceInitDict,
agent: this.agent,
tlsParams: this.tlsOptions,
};
return new LDEventSource(url, expandedOptions);
}
usingProxy(): boolean {
return this.hasProxy;
}
usingProxyAuth(): boolean {
return this.hasProxyAuth;
}
}