-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathHttpConnection.ts
93 lines (76 loc) · 2.64 KB
/
HttpConnection.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
const thrift = require('thrift');
import IThriftConnection from "../contracts/IThriftConnection";
import IConnectionProvider from "../contracts/IConnectionProvider";
import IConnectionOptions, { Options } from "../contracts/IConnectionOptions";
import IAuthentication from "../contracts/IAuthentication";
import HttpTransport from "../transports/HttpTransport";
import { IncomingMessage } from "http";
type NodeOptions = {
ca?: Buffer | string,
cert?: Buffer | string,
key?: Buffer | string,
rejectUnauthorized?: boolean
};
export default class HttpConnection implements IConnectionProvider, IThriftConnection {
private thrift: any = thrift;
private connection: any;
connect(options: IConnectionOptions, authProvider: IAuthentication): Promise<IThriftConnection> {
const httpTransport = new HttpTransport({
transport: thrift.TBufferedTransport,
protocol: thrift.TBinaryProtocol,
...options.options,
nodeOptions: {
...this.getNodeOptions(options.options || {}),
...(options.options?.nodeOptions || {}),
}
})
return authProvider.authenticate(httpTransport).then(() => {
this.connection = this.thrift.createHttpConnection(
options.host,
options.port,
httpTransport.getOptions(),
);
this.addCookieHandler();
return this;
});
}
getConnection() {
return this.connection;
}
isConnected(): boolean {
if (this.connection) {
return true;
} else {
return false;
}
}
private getNodeOptions(options: Options): object {
const { ca, cert, key, https } = options;
const nodeOptions: NodeOptions = {};
if (ca) {
nodeOptions.ca = ca;
}
if (cert) {
nodeOptions.cert = cert;
}
if (key) {
nodeOptions.key = key;
}
if (https) {
nodeOptions.rejectUnauthorized = false;
}
return nodeOptions;
}
private addCookieHandler() {
const responseCallback = this.connection.responseCallback;
this.connection.responseCallback = (response: IncomingMessage) => {
if (Array.isArray(response.headers['set-cookie'])) {
let cookie = [this.connection.nodeOptions.headers['cookie']];
this.connection.nodeOptions.headers['cookie'] = cookie.concat(response.headers['set-cookie'])
.filter(Boolean)
.join(';');
}
responseCallback.call(this.connection, response);
};
}
}