-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
232 lines (186 loc) · 4.51 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
var http = require('http')
var networkInterfaces = require('os').networkInterfaces
var parse = require('url').parse
var Readable = require('stream').Readable
var concat = require('concat-stream')
var EventSource = require('eventsource')
var inherits = require('inherits')
const HOSTNAME = '0.0.0.0'
/**
* Filter the external IPv4 network interfaces
*
* @param {Object} info
* @param {string} [info.family]
* @param {Bollean} [info.internal]
*
* @return {Boolean}
*/
function filterIPv4(info)
{
return info.family === 'IPv4' && !info.internal
}
/**
* Get the adfress of an external IPv4 network interface in the current system
*
* @return {string|undefined}
*/
function getHostname()
{
var interfaces = networkInterfaces()
for(var name in interfaces)
{
var info = interfaces[name].filter(filterIPv4)[0]
if(info) return info.address
}
}
/**
* Connect to a remove SSE server to receive the webhook notifications
*
* @param {string} webhook
* @param {Object} [options]
* @param {Boolean} [options.withCredentials=false]
*
* @return {EventSource}
*/
function createEventSource(webhook, options)
{
var self = this
var eventSource = new EventSource(webhook, options)
eventSource.addEventListener('open', this.emit.bind(this, 'open', webhook))
eventSource.addEventListener('message', function(message)
{
self.push(message.data)
})
return eventSource
}
/**
* Create an ad-hoc web server where to receive the webhook notifications
*
* @param {Object} webhook
* @param {string} [webhook.hostname='0.0.0.0']
* @param {Number} [webhook.port=0]
*
* @return {http.Server}
*/
function createServer(webhook)
{
var self = this
var onError = this.emit.bind(this, 'error')
var port = webhook.port || 0
var hostname = webhook.hostname || HOSTNAME
var server = http.createServer(function(req, res)
{
if(req.method === 'GET')
{
res.end()
return self.push(parse(req.url).query)
}
req.pipe(concat(function(body)
{
res.end()
self.push(body.toString())
}))
})
.listen(port, hostname, function()
{
var address = this.address()
if(hostname === HOSTNAME) hostname = getHostname()
if(!hostname)
{
self.emit('error', new Error("There's no public available interfaces"))
return this.close()
}
self.emit('open', 'http://'+hostname+':'+address.port)
})
.on('error' , onError)
.on('clientError', onError)
return server
}
/**
* Create a stream of webhook notifications
*
* @constructor
*
* @param {Object|string|Number} [webhook={}]
* @param {string} [webhook.hostname='0.0.0.0']
* @param {Number} [webhook.port=0]
* @param {Object} [options]
* @param {Boolean} [options.withCredentials=false]
*
* @emits WebhookPost#open
* @emits WebhookPost#data
* @emits WebhookPost#error
* @emits Readable#end
*/
function WebhookPost(webhook, options)
{
if(!(this instanceof WebhookPost)) return new WebhookPost(webhook, options)
var self = this
options = options || {}
options.objectMode = true
WebhookPost.super_.call(this, options)
// Remote ServerSendEvent server
if(typeof webhook === 'string')
{
var eventSource = createEventSource.call(this, webhook, options)
eventSource.addEventListener('error', function(error)
{
if(this.readyState !== EventSource.CLOSED)
return self.emit('error', error)
self.push(null)
eventSource = null
})
}
// Ad-hoc local web server
else
{
if(webhook == null) webhook = {}
else if(typeof webhook === 'number') webhook = {port: webhook}
var server = createServer.call(this, webhook)
.on('close', function()
{
self.push(null)
server = null
})
}
//
// Public API
//
/**
* Close the connection and stop emitting more data updates
*/
this.close = function()
{
var connection = eventSource || server
if(!connection) return
connection.close()
}
}
inherits(WebhookPost, Readable)
/**
* Needed by {Readable} API, ignored
*
* @private
*/
WebhookPost.prototype._read = function(){}
/**
* The webhook is ready and start to emit incoming notifications
*
* The connection to the remote SSE server has been stablished or the local
* ad-hoc web server has started
*
* @event WebhookPost#open
*
* @type {string} - URL where to receive the notifications POST requests
*/
/**
* @event WebhookPost#data
*
* @type {string}
*/
/**
* @event WebhookPost#error
*
* @type {Error}
*/
module.exports = WebhookPost