public
Description: XMPP bot that posts commit summaries to MUCs.
Homepage: http://github.com/metajack/commitbot/tree/master
Clone URL: git://github.com/metajack/commitbot.git
commitbot / commitbot.py
100644 78 lines (59 sloc) 2.352 kb
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
from twisted.python import log
from twisted.web import resource
from twisted.words.xish import domish
from wokkel.subprotocols import XMPPHandler
from wokkel.xmppim import AvailablePresence, Presence
 
import simplejson as json
 
 
NS_MUC = 'http://jabber.org/protocol/muc'
NS_XHTML_IM = 'http://jabber.org/protocols/xhtml-im'
NS_XHTML_W3C = 'http://www.w3.org/1999/xhtml'
 
class CommitBot(XMPPHandler):
 
    def __init__(self, room, nick):
        XMPPHandler.__init__(self)
 
        self.room = room
        self.nick = nick
 
    def connectionMade(self):
        self.send(AvailablePresence())
 
        # add handlers
 
        # join room
        pres = Presence()
        pres['to'] = self.room + '/' + self.nick
        pres.addElement((NS_MUC, 'x'))
        self.send(pres)
 
    def notify(self, data):
        # build the messages
        text = []
        html = []
        link = r"<a href='%s' name='%s'>%s</a>"
        
        text.append('New commits in %s:\n' % data['repository']['url'])
        html.append("New commits in " \
                        "<a href='%s'>%s</a>:<br/>" % \
                        (data['repository']['url'],
                         data['repository']['name']))
 
        for c in data['commits']:
            text.append('%s | %s | %s\n' % (c['message'],
                                            c['author']['email'],
                                            c['url']))
            ltxt = link % (c['url'], c['id'], c['id'][:7])
            html.append('%s | %s | %s<br />' % (c['message'],
                                                c['author']['email'],
                                                ltxt))
        msg = domish.Element((None, 'message'))
        msg['to'] = self.room
        msg['type'] = 'groupchat'
        msg.addElement('body', content=''.join(text))
        wrap = msg.addElement((NS_XHTML_IM, 'html'))
        body = wrap.addElement((NS_XHTML_W3C, 'body'))
        body.addRawXml(''.join(html))
 
        self.send(msg)
 
 
class WebHook(resource.Resource):
    isLeaf = True
 
    def __init__(self, bot):
        resource.Resource.__init__(self)
        self.bot = bot
 
    def render_GET(self, req):
        return "commitbot ready to rock!"
 
    def render_POST(self, req):
        data = json.loads(req.args['payload'][0])
        self.bot.notify(data)
        return ""