forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproto-client.ts
36 lines (32 loc) · 1.03 KB
/
proto-client.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
import http = require('http');
import url = require('url');
import { KubeConfig } from './config';
export class ProtoClient {
public readonly 'config': KubeConfig;
public async get(msgType: any, requestPath: string): Promise<any> {
const server = this.config.getCurrentCluster()!.server;
const u = new url.URL(server);
const options = {
path: requestPath,
hostname: u.hostname,
protocol: u.protocol,
};
await this.config.applyToHTTPSOptions(options);
const req = http.request(options);
const result = await new Promise<any>((resolve, reject) => {
let data = '';
req.on('data', (chunk) => {
data = data + chunk;
});
req.on('end', () => {
const obj = msgType.deserializeBinary(data);
resolve(obj);
});
req.on('error', (err) => {
reject(err);
});
});
req.end();
return result;
}
}