-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.js
76 lines (65 loc) · 1.93 KB
/
watch.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
const request = require('request');
const { LineStream } = require('byline');
class Watch {
constructor(config) {
this.config = config;
}
// Get current state of cluster and then watch for new events
watchNew(path, queryParams, callback, done) {
const uri = `${this.config.getCurrentCluster().server}${path}`;
const requestOptions = { uri, json: true, headers: {} };
this.config.applyToRequest(requestOptions);
request.get(uri, requestOptions, (error, response, body) => {
if (error) {
console.error(error);
}
const rv = (body && body.metadata && body.metadata.resourceVersion) ? body.metadata.resourceVersion : undefined;
this.watch(path, queryParams, callback, done, rv);
});
}
// Watch path for events
// If rv (resourceVersion) is passed in, start watching from rv and don't fetch old events
watch(path, queryParams, callback, done, rv) {
const url = `${this.config.getCurrentCluster().server}${path}`;
const qp = {
...queryParams,
resourceVersion: rv || undefined,
watch: true,
};
const requestOptions = {
method: 'GET',
qs: qp,
headers: {},
uri: url,
useQuerystring: true,
json: true,
keepAlive: true,
forever: true,
timeoutSeconds: 60 * 60,
};
this.config.applyToRequest(requestOptions);
const stream = new LineStream();
stream.on('data', (data) => {
let obj = null;
if (data instanceof Buffer) {
obj = JSON.parse(data.toString());
} else {
obj = JSON.parse(data);
}
if (obj.type && obj.object) {
callback(obj.type, obj.object);
} else {
console.log(`unexpected object: ${JSON.stringify(obj)}`);
}
});
const req = request(requestOptions, (error) => {
if (error) {
done(error);
}
done(null);
});
req.pipe(stream);
return req;
}
}
module.exports = { Watch };