-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgitlab-webhook-handler.js
78 lines (57 loc) · 1.78 KB
/
gitlab-webhook-handler.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
const EventEmitter = require('events').EventEmitter
, inherits = require('util').inherits
, bl = require('bl')
function create (options) {
if (typeof options != 'object')
throw new TypeError('must provide an options object')
if (typeof options.path != 'string')
throw new TypeError('must provide a \'path\' option')
// make it an EventEmitter, sort of
handler.__proto__ = EventEmitter.prototype
EventEmitter.call(handler)
return handler
function handler (req, res, callback) {
if (req.url.split('?').shift() !== options.path)
return callback()
function hasError (msg) {
res.writeHead(400, { 'content-type': 'application/json' })
res.end(JSON.stringify({ error: msg }))
var err = new Error(msg)
handler.emit('error', err, req)
callback(err)
}
var event = req.headers['x-gitlab-event'];
if (!event)
return hasError('No X-Gitlab-Event found on request')
req.pipe(bl(function (err, data) {
if (err) {
return hasError(err.message)
}
var obj
try {
obj = JSON.parse(data.toString())
} catch (e) {
return hasError(e)
}
// console.log(obj);
var event = obj.object_kind;
// invalid json
if (!obj || !obj.repository || !obj.repository.name) {
return hasError('received invalid data from ' + req.headers['host'] + ', returning 400');
}
var repo = obj.repository.name;
res.writeHead(200, { 'content-type': 'application/json' })
res.end('{"ok":true}')
var emitData = {
event : event
, payload : obj
, protocol: req.protocol
, host : req.headers['host']
, url : req.url
}
handler.emit(event, emitData)
handler.emit('*', emitData)
}))
}
}
module.exports = create