]> sipb.mit.edu Git - snippets/.git/blob - TracZephyrPlugin/ZephyrPlugin.py
0f40125be8d2cf7190d6df13cfa346948d547574
[snippets/.git] / TracZephyrPlugin / ZephyrPlugin.py
1 from trac.core import *
2 from trac.ticket import ITicketChangeListener
3 import subprocess
4 import textwrap
5 import shlex
6
7 class ZephyrPlugin(Component):
8     implements(ITicketChangeListener)
9     
10     def zwrite(self, id, message):
11         zclass = self.config.get('ZephyrPlugin', 'class')
12         if zclass == '':
13             return
14         command = shlex.split(self.config.get('ZephyrPlugin', 'command'))
15         if not command:
16             command = ['zwrite', '-q', '-l', '-d']
17         p = subprocess.Popen(command +
18                              ['-c', zclass,
19                               '-i', 'trac-#%s' % id],
20                              stdin=subprocess.PIPE)
21         p.stdin.write(message.replace('@', '@@').encode('utf-8', 'replace'))
22         p.stdin.close()
23         p.wait()
24     
25     def ticket_created(self, ticket):
26         message = "%s filed a new ticket:\n%s\n\n%s" % (ticket['reporter'],
27                                                         ticket['summary'],
28                                                         textwrap.fill(ticket['description'][:255]))
29         self.zwrite(ticket.id, message)
30     
31     def ticket_changed(self, ticket, comment, author, old_values):
32         if old_values.has_key('status'):
33             if ticket['status'] == 'closed':
34                 message = "%s closed ticket as %s\n(%s)" % (author, ticket['resolution'], ticket['summary'])
35             else:
36                 message = "%s set status to %s\n(%s)" % (author, ticket['status'], ticket['summary'])
37         else:
38             message = "%s updated this ticket\n(%s)" % (author, ticket['summary'])
39         self.zwrite(ticket.id, message)
40     
41     def ticket_deleted(self, ticket):
42         pass