-
Notifications
You must be signed in to change notification settings - Fork 4
/
nbhttp.js
118 lines (111 loc) · 2.49 KB
/
nbhttp.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
const http = require('http')
const https = require('https')
const urlParser = require('url')
module.exports.http = {}
module.exports.https = {}
module.exports.http.get = function(url, callback) {
http.get(url, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
})
}
module.exports.https.get = function(url, callback) {
https.get(url, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
})
}
module.exports.http.post = function(link, data, callback) {
let url = urlParser.parse(link)
let postRequest = http.request({host: url.host, path: url.path, method: 'POST'}, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
})
postRequest.write(JSON.stringify(data))
postRequest.end()
}
module.exports.https.post = function(link, data, callback) {
let url = urlParser.parse(link)
let postRequest = https.request({host: url.host, path: url.path, method: 'POST'}, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
})
postRequest.write(JSON.stringify(data))
postRequest.end()
}
module.exports.http.put = function(host, port, path, data, callback) {
let dataString = JSON.stringify(data)
let options = {
host: host,
port: port,
path: path,
method: 'PUT',
headers: {
'Content-Type': 'application/json',
'Content-Length': dataString.length
}
}
http.request(options, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
}).write(dataString)
}
module.exports.https.put = function(host, port, path, data, callback) {
let dataString = JSON.stringify(data)
let options = {
host: host,
port: port,
path: path,
method: 'PUT',
headers: {
'Content-Type': 'application/json',
'Content-Length': dataString.length
}
}
https.request(options, response => {
let data = ''
response.on('data', chunk => {
data += chunk
})
response.on('end', () => {
callback(null, data)
})
}).on('error', err => {
callback(err)
}).write(dataString)
}