forked from veggiematts/supybot-redmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.py
158 lines (123 loc) · 5.26 KB
/
plugin.py
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
###
# Copyright (c) 2012, Matthias Meusburger
# All rights reserved.
# Based on the Mantis/Bugzilla plugins
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
import supybot.utils as utils
from supybot.commands import *
import supybot.plugins as plugins
import supybot.ircutils as ircutils
import supybot.callbacks as callbacks
from supybot.utils.structures import TimeoutQueue
from restkit import BasicAuth, Resource, RequestError
import simplejson as json
import sys
import random
class Redmine(callbacks.PluginRegexp):
"""
Displays informations about a Redmine issue.
"""
threaded = True
unaddressedRegexps = ['snarfBug']
def __init__(self, irc):
self.__parent = super(Redmine, self)
self.__parent.__init__(irc)
self.saidBugs = ircutils.IrcDict()
sayTimeout = self.registryValue('bugSnarferTimeout')
for k in irc.state.channels.keys():
self.saidBugs[k] = TimeoutQueue(sayTimeout)
self.url = self.registryValue('urlbase')
self.auth = BasicAuth(self.registryValue('apikey'), str(random.random()))
self.resource = Resource(self.url, filters=[self.auth])
def snarfBug(self, irc, msg, match):
r"""\bbug\b[\s#]*(?P<id>\d+)"""
channel = msg.args[0]
if not self.registryValue('bugSnarfer', channel): return
id_matches = match.group('id').split()
ids = []
self.log.debug('Snarfed ID(s): ' + ' '.join(id_matches))
# Check if the bug has been already snarfed in the last X seconds
for id in id_matches:
should_say = self._shouldSayBug(id, channel)
if should_say:
ids.append(id)
if not ids: return
strings = self.getBugs(ids)
for s in strings:
irc.reply(s, prefixNick=False)
def _shouldSayBug(self, bug_id, channel):
if channel not in self.saidBugs:
sayTimeout = self.registryValue('bugSnarferTimeout')
self.saidBugs[channel] = TimeoutQueue(sayTimeout)
if bug_id in self.saidBugs[channel]:
return False
self.saidBugs[channel].enqueue(bug_id)
self.log.info('After checking bug %s queue is %r' \
% (bug_id, self.saidBugs[channel]))
return True
def getBugs(self, ids):
strings = [];
for id in ids:
# Getting response
try:
response = self.resource.get('/issues/' + str(id) + '.json')
data = response.body_string()
result = json.loads(data)
# Formatting reply
bugmsg = self.registryValue('bugMsgFormat')
#self.log.info("info " + bugmsg);
bugmsg = bugmsg.replace('_ID_', "%s" % id)
bugmsg = bugmsg.replace('_AUTHOR_', result['issue']['author']['name'])
bugmsg = bugmsg.replace('_SUBJECT_', result['issue']['subject'])
bugmsg = bugmsg.replace('_STATUS_', result['issue']['status']['name'])
bugmsg = bugmsg.replace('_PROJECT_', result['issue']['project']['name'])
bugmsg = bugmsg.replace('_TRACKER_', result['issue']['tracker']['name'])
try:
bugmsg = bugmsg.replace('_CATEGORY_', result['issue']['category']['name'])
except Exception:
bugmsg = bugmsg.replace('_CATEGORY_', 'uncategorized')
bugmsg = bugmsg.replace('_URL_', "%s/issues/%s" % (self.url, id))
bugmsg = bugmsg.split('_CRLF_')
for msg in bugmsg:
strings.append(msg)
except RequestError as e:
strings.append("An error occured when trying to query Redmine: " + str(e))
return strings
def bug(self, irc, msg, args, bugNumber):
"""
<bug number>
Expand bug # to a full URI
"""
strings = self.getBugs( [ bugNumber ] )
if strings == []:
irc.reply( "sorry, bug %s was not found" % bugNumber )
else:
for s in strings:
irc.reply(s, prefixNick=False)
bug = wrap(bug, ['int'])
Class = Redmine
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: