-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,45 @@ | ||
# gitlab-webhook-handler | ||
|
||
[](https://nodei.co/npm/gitlab-webhook-handler/) | ||
[](https://nodei.co/npm/gitlab-webhook-handler/) | ||
|
||
Modify rvagg/github-webhook-handler to fit Gitlab. | ||
|
||
GitLab allows you to register **[Webhooks](https://developer.gitlab.com/webhooks/)** for your repositories. Each time an event occurs on your repository, whether it be pushing code, filling issues or creating pull requests, the webhook address you register can be configured to be pinged with details. | ||
|
||
This library is a small handler (or "middleware" if you must) for Node.js web servers that handles all the logic of receiving and verifying webhook requests from GitHub. | ||
|
||
## Example | ||
|
||
```js | ||
var http = require('http') | ||
var createHandler = require('gitlab-webhook-handler') | ||
var handler = createHandler({ path: '/webhook' }) | ||
|
||
http.createServer(function (req, res) { | ||
handler(req, res, function (err) { | ||
res.statusCode = 404 | ||
res.end('no such location') | ||
}) | ||
}).listen(7777) | ||
|
||
console.log("Gitlab Hook Server running at http://0.0.0.0:7777/webhook"); | ||
|
||
handler.on('error', function (err) { | ||
console.error('Error:', err.message) | ||
}) | ||
|
||
handler.on('push', function (event) { | ||
console.log('Received a push event for %s to %s', | ||
event.payload.repository.name, | ||
event.payload.ref) | ||
}) | ||
|
||
handler.on('issues', function (event) { | ||
console.log('Received an issue event for %s action=%s: #%d %s', | ||
event.payload.repository.name, | ||
event.payload.action, | ||
event.payload.issue.number, | ||
event.payload.issue.title) | ||
}) | ||
``` |