This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathgithub-commits.coffee
59 lines (50 loc) · 1.75 KB
/
github-commits.coffee
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
# Description:
# An HTTP Listener for notifications on github pushes
#
# Dependencies:
# "url": ""
# "querystring": ""
# "gitio2": "2.0.0"
#
# Configuration:
# Just put this url <HUBOT_URL>:<PORT>/hubot/gh-commits?room=<room> into you'r github hooks
# HUBOT_GITHUB_COMMITS_ONLY -- Only report pushes with commits. Ignores creation of tags and branches.
#
# Commands:
# None
#
# URLS:
# POST /hubot/gh-commits?room=<room>[&type=<type]
#
# Authors:
# nesQuick
url = require('url')
querystring = require('querystring')
gitio = require('gitio2')
module.exports = (robot) ->
robot.router.post "/hubot/gh-commits", (req, res) ->
query = querystring.parse(url.parse(req.url).query)
res.send 200
user = {}
user.room = query.room if query.room
user.type = query.type if query.type
return if req.body.zen? # initial ping
push = req.body
try
if push.commits.length > 0
commitWord = if push.commits.length > 1 then "commits" else "commit"
robot.send user, "Got #{push.commits.length} new #{commitWord} from #{push.commits[0].author.name} on #{push.repository.name}"
for commit in push.commits
do (commit) ->
gitio commit.url, (err, data) ->
robot.send user, " * #{commit.message} (#{if err then commit.url else data})"
else if !process.env.HUBOT_GITHUB_COMMITS_ONLY
if push.created
if push.base_ref
robot.send user, "#{push.pusher.name} created: #{push.ref}: #{push.base_ref}"
else
robot.send user, "#{push.pusher.name} created: #{push.ref}"
if push.deleted
robot.send user, "#{push.pusher.name} deleted: #{push.ref}"
catch error
console.log "github-commits error: #{error}. Push: #{push}"