-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
63 lines (48 loc) · 1.18 KB
/
index.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
var Client = require('pigato').Client;
var debug = require('hitd-debug')('hitd-client');
module.exports = function(endpoint, conf, cb) {
var client = new Client(endpoint, conf);
client.once('start', function() {
var myclient = {
request: function(key, data, resCb, opts) {
if(typeof data == 'function'){
opts = resCb;
resCb = data;
data='';
}
opts = opts || {};
var full = [];
debug('new request to %s, data is %s', key, JSON.stringify(
data), typeof data);
var toSend = {
key: key,
body: data.body == undefined ? data : data.body,
};
if (data.clientId) {
toSend.clientId = data.clientId;
}
debug('will send data %s', key, JSON.stringify(
toSend));
var prec = undefined;
client.request(key, toSend, function(err, partial) {
debug("request get partial");
if (!prec && partial < 100) {
prec = partial;
} else if (prec < 100) {
resCb.apply(null, [null, prec, partial]);
prec = undefined;
} else {
full.push(partial);
}
}, function(err, last) {
full.push(last);
resCb.apply(null, [null].concat(full));
}, opts);
}
};
cb(null, myclient);
});
setImmediate(function() {
client.start();
});
};