-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathns-client.js
57 lines (43 loc) · 1.26 KB
/
ns-client.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
var http = require('http');
var accessKey = "OXh3aVVnQm5UT0YwOVlZVTd0cTlUU0RGR0hNK0hFS1FwZG8xK1NJRGh1Z2tGbEMw";
var path = "/api/v1/notifications/send";
module.exports = {
sendNotification: function(hostEnv, notification){
var header = {
"Content-Type": "application/json",
"access-Key": accessKey
};
var options = {
host: hostEnv.host,
port: hostEnv.port,
path: path,
method: 'POST',
headers: header
};
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('BODY: ' + chunk);
});
});
// write data to request body
req.write(notification);
req.end();
req.on('error', function(err) {
console.log('error: ' + err);
});
},
env: function(env){
var val;
if(env.toLowerCase()=='prod'){
val = { host: "ns.admin.redmart.com", port: 80}
}else if(env.toLowerCase()=='alpha'){
val = { host: "dev.ns.admin.redmart.com", port: 80}
}else if(env.toLowerCase()=='local'){
val = { host: "localhost", port: 9010}
}
return val;
}
};