Show More
@@ -1,310 +1,312 | |||||
1 | # bugzilla.py - bugzilla integration for mercurial |
|
1 | # bugzilla.py - bugzilla integration for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> |
|
3 | # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms |
|
5 | # This software may be used and distributed according to the terms | |
6 | # of the GNU General Public License, incorporated herein by reference. |
|
6 | # of the GNU General Public License, incorporated herein by reference. | |
7 | # |
|
7 | # | |
8 | # hook extension to update comments of bugzilla bugs when changesets |
|
8 | # hook extension to update comments of bugzilla bugs when changesets | |
9 | # that refer to bugs by id are seen. this hook does not change bug |
|
9 | # that refer to bugs by id are seen. this hook does not change bug | |
10 | # status, only comments. |
|
10 | # status, only comments. | |
11 | # |
|
11 | # | |
12 | # to configure, add items to '[bugzilla]' section of hgrc. |
|
12 | # to configure, add items to '[bugzilla]' section of hgrc. | |
13 | # |
|
13 | # | |
14 | # to use, configure bugzilla extension and enable like this: |
|
14 | # to use, configure bugzilla extension and enable like this: | |
15 | # |
|
15 | # | |
16 | # [extensions] |
|
16 | # [extensions] | |
17 | # hgext.bugzilla = |
|
17 | # hgext.bugzilla = | |
18 | # |
|
18 | # | |
19 | # [hooks] |
|
19 | # [hooks] | |
20 | # # run bugzilla hook on every change pulled or pushed in here |
|
20 | # # run bugzilla hook on every change pulled or pushed in here | |
21 | # incoming.bugzilla = python:hgext.bugzilla.hook |
|
21 | # incoming.bugzilla = python:hgext.bugzilla.hook | |
22 | # |
|
22 | # | |
23 | # config items: |
|
23 | # config items: | |
24 | # |
|
24 | # | |
25 | # section name is 'bugzilla'. |
|
25 | # section name is 'bugzilla'. | |
26 | # [bugzilla] |
|
26 | # [bugzilla] | |
27 | # |
|
27 | # | |
28 | # REQUIRED: |
|
28 | # REQUIRED: | |
29 | # host = bugzilla # mysql server where bugzilla database lives |
|
29 | # host = bugzilla # mysql server where bugzilla database lives | |
30 | # password = ** # user's password |
|
30 | # password = ** # user's password | |
31 | # version = 2.16 # version of bugzilla installed |
|
31 | # version = 2.16 # version of bugzilla installed | |
32 | # |
|
32 | # | |
33 | # OPTIONAL: |
|
33 | # OPTIONAL: | |
34 | # bzuser = ... # fallback bugzilla user name to record comments with |
|
34 | # bzuser = ... # fallback bugzilla user name to record comments with | |
35 | # db = bugs # database to connect to |
|
35 | # db = bugs # database to connect to | |
36 | # notify = ... # command to run to get bugzilla to send mail |
|
36 | # notify = ... # command to run to get bugzilla to send mail | |
37 | # regexp = ... # regexp to match bug ids (must contain one "()" group) |
|
37 | # regexp = ... # regexp to match bug ids (must contain one "()" group) | |
38 | # strip = 0 # number of slashes to strip for url paths |
|
38 | # strip = 0 # number of slashes to strip for url paths | |
39 | # style = ... # style file to use when formatting comments |
|
39 | # style = ... # style file to use when formatting comments | |
40 | # template = ... # template to use when formatting comments |
|
40 | # template = ... # template to use when formatting comments | |
41 | # timeout = 5 # database connection timeout (seconds) |
|
41 | # timeout = 5 # database connection timeout (seconds) | |
42 | # user = bugs # user to connect to database as |
|
42 | # user = bugs # user to connect to database as | |
43 | # [web] |
|
43 | # [web] | |
44 | # baseurl = http://hgserver/... # root of hg web site for browsing commits |
|
44 | # baseurl = http://hgserver/... # root of hg web site for browsing commits | |
45 | # |
|
45 | # | |
46 | # if hg committer names are not same as bugzilla user names, use |
|
46 | # if hg committer names are not same as bugzilla user names, use | |
47 | # "usermap" feature to map from committer email to bugzilla user name. |
|
47 | # "usermap" feature to map from committer email to bugzilla user name. | |
48 | # usermap can be in hgrc or separate config file. |
|
48 | # usermap can be in hgrc or separate config file. | |
49 | # |
|
49 | # | |
50 | # [bugzilla] |
|
50 | # [bugzilla] | |
51 | # usermap = filename # cfg file with "committer"="bugzilla user" info |
|
51 | # usermap = filename # cfg file with "committer"="bugzilla user" info | |
52 | # [usermap] |
|
52 | # [usermap] | |
53 | # committer_email = bugzilla_user_name |
|
53 | # committer_email = bugzilla_user_name | |
54 |
|
54 | |||
55 | from mercurial.demandload import * |
|
55 | from mercurial.demandload import * | |
56 | from mercurial.i18n import gettext as _ |
|
56 | from mercurial.i18n import gettext as _ | |
57 | from mercurial.node import * |
|
57 | from mercurial.node import * | |
58 | demandload(globals(), 'mercurial:cmdutil,templater,util os re time') |
|
58 | demandload(globals(), 'mercurial:cmdutil,templater,util os re time') | |
59 |
|
59 | |||
60 | MySQLdb = None |
|
60 | MySQLdb = None | |
61 |
|
61 | |||
62 | def buglist(ids): |
|
62 | def buglist(ids): | |
63 | return '(' + ','.join(map(str, ids)) + ')' |
|
63 | return '(' + ','.join(map(str, ids)) + ')' | |
64 |
|
64 | |||
65 | class bugzilla_2_16(object): |
|
65 | class bugzilla_2_16(object): | |
66 | '''support for bugzilla version 2.16.''' |
|
66 | '''support for bugzilla version 2.16.''' | |
67 |
|
67 | |||
68 | def __init__(self, ui): |
|
68 | def __init__(self, ui): | |
69 | self.ui = ui |
|
69 | self.ui = ui | |
70 | host = self.ui.config('bugzilla', 'host', 'localhost') |
|
70 | host = self.ui.config('bugzilla', 'host', 'localhost') | |
71 | user = self.ui.config('bugzilla', 'user', 'bugs') |
|
71 | user = self.ui.config('bugzilla', 'user', 'bugs') | |
72 | passwd = self.ui.config('bugzilla', 'password') |
|
72 | passwd = self.ui.config('bugzilla', 'password') | |
73 | db = self.ui.config('bugzilla', 'db', 'bugs') |
|
73 | db = self.ui.config('bugzilla', 'db', 'bugs') | |
74 | timeout = int(self.ui.config('bugzilla', 'timeout', 5)) |
|
74 | timeout = int(self.ui.config('bugzilla', 'timeout', 5)) | |
75 | usermap = self.ui.config('bugzilla', 'usermap') |
|
75 | usermap = self.ui.config('bugzilla', 'usermap') | |
76 | if usermap: |
|
76 | if usermap: | |
77 | self.ui.readsections(usermap, 'usermap') |
|
77 | self.ui.readsections(usermap, 'usermap') | |
78 | self.ui.note(_('connecting to %s:%s as %s, password %s\n') % |
|
78 | self.ui.note(_('connecting to %s:%s as %s, password %s\n') % | |
79 | (host, db, user, '*' * len(passwd))) |
|
79 | (host, db, user, '*' * len(passwd))) | |
80 | self.conn = MySQLdb.connect(host=host, user=user, passwd=passwd, |
|
80 | self.conn = MySQLdb.connect(host=host, user=user, passwd=passwd, | |
81 | db=db, connect_timeout=timeout) |
|
81 | db=db, connect_timeout=timeout) | |
82 | self.cursor = self.conn.cursor() |
|
82 | self.cursor = self.conn.cursor() | |
83 | self.run('select fieldid from fielddefs where name = "longdesc"') |
|
83 | self.run('select fieldid from fielddefs where name = "longdesc"') | |
84 | ids = self.cursor.fetchall() |
|
84 | ids = self.cursor.fetchall() | |
85 | if len(ids) != 1: |
|
85 | if len(ids) != 1: | |
86 | raise util.Abort(_('unknown database schema')) |
|
86 | raise util.Abort(_('unknown database schema')) | |
87 | self.longdesc_id = ids[0][0] |
|
87 | self.longdesc_id = ids[0][0] | |
88 | self.user_ids = {} |
|
88 | self.user_ids = {} | |
89 |
|
89 | |||
90 | def run(self, *args, **kwargs): |
|
90 | def run(self, *args, **kwargs): | |
91 | '''run a query.''' |
|
91 | '''run a query.''' | |
92 | self.ui.note(_('query: %s %s\n') % (args, kwargs)) |
|
92 | self.ui.note(_('query: %s %s\n') % (args, kwargs)) | |
93 | try: |
|
93 | try: | |
94 | self.cursor.execute(*args, **kwargs) |
|
94 | self.cursor.execute(*args, **kwargs) | |
95 | except MySQLdb.MySQLError, err: |
|
95 | except MySQLdb.MySQLError, err: | |
96 | self.ui.note(_('failed query: %s %s\n') % (args, kwargs)) |
|
96 | self.ui.note(_('failed query: %s %s\n') % (args, kwargs)) | |
97 | raise |
|
97 | raise | |
98 |
|
98 | |||
99 | def filter_real_bug_ids(self, ids): |
|
99 | def filter_real_bug_ids(self, ids): | |
100 | '''filter not-existing bug ids from list.''' |
|
100 | '''filter not-existing bug ids from list.''' | |
101 | self.run('select bug_id from bugs where bug_id in %s' % buglist(ids)) |
|
101 | self.run('select bug_id from bugs where bug_id in %s' % buglist(ids)) | |
102 | ids = [c[0] for c in self.cursor.fetchall()] |
|
102 | ids = [c[0] for c in self.cursor.fetchall()] | |
103 | ids.sort() |
|
103 | ids.sort() | |
104 | return ids |
|
104 | return ids | |
105 |
|
105 | |||
106 | def filter_unknown_bug_ids(self, node, ids): |
|
106 | def filter_unknown_bug_ids(self, node, ids): | |
107 | '''filter bug ids from list that already refer to this changeset.''' |
|
107 | '''filter bug ids from list that already refer to this changeset.''' | |
108 |
|
108 | |||
109 | self.run('''select bug_id from longdescs where |
|
109 | self.run('''select bug_id from longdescs where | |
110 | bug_id in %s and thetext like "%%%s%%"''' % |
|
110 | bug_id in %s and thetext like "%%%s%%"''' % | |
111 | (buglist(ids), short(node))) |
|
111 | (buglist(ids), short(node))) | |
112 | unknown = dict.fromkeys(ids) |
|
112 | unknown = dict.fromkeys(ids) | |
113 | for (id,) in self.cursor.fetchall(): |
|
113 | for (id,) in self.cursor.fetchall(): | |
114 | self.ui.status(_('bug %d already knows about changeset %s\n') % |
|
114 | self.ui.status(_('bug %d already knows about changeset %s\n') % | |
115 | (id, short(node))) |
|
115 | (id, short(node))) | |
116 | unknown.pop(id, None) |
|
116 | unknown.pop(id, None) | |
117 | ids = unknown.keys() |
|
117 | ids = unknown.keys() | |
118 | ids.sort() |
|
118 | ids.sort() | |
119 | return ids |
|
119 | return ids | |
120 |
|
120 | |||
121 | def notify(self, ids): |
|
121 | def notify(self, ids): | |
122 | '''tell bugzilla to send mail.''' |
|
122 | '''tell bugzilla to send mail.''' | |
123 |
|
123 | |||
124 | self.ui.status(_('telling bugzilla to send mail:\n')) |
|
124 | self.ui.status(_('telling bugzilla to send mail:\n')) | |
125 | for id in ids: |
|
125 | for id in ids: | |
126 | self.ui.status(_(' bug %s\n') % id) |
|
126 | self.ui.status(_(' bug %s\n') % id) | |
127 | cmd = self.ui.config('bugzilla', 'notify', |
|
127 | cmd = self.ui.config('bugzilla', 'notify', | |
128 | 'cd /var/www/html/bugzilla && ' |
|
128 | 'cd /var/www/html/bugzilla && ' | |
129 | './processmail %s nobody@nowhere.com') % id |
|
129 | './processmail %s nobody@nowhere.com') % id | |
130 | fp = os.popen('(%s) 2>&1' % cmd) |
|
130 | fp = os.popen('(%s) 2>&1' % cmd) | |
131 | out = fp.read() |
|
131 | out = fp.read() | |
132 | ret = fp.close() |
|
132 | ret = fp.close() | |
133 | if ret: |
|
133 | if ret: | |
134 | self.ui.warn(out) |
|
134 | self.ui.warn(out) | |
135 | raise util.Abort(_('bugzilla notify command %s') % |
|
135 | raise util.Abort(_('bugzilla notify command %s') % | |
136 | util.explain_exit(ret)[0]) |
|
136 | util.explain_exit(ret)[0]) | |
137 | self.ui.status(_('done\n')) |
|
137 | self.ui.status(_('done\n')) | |
138 |
|
138 | |||
139 | def get_user_id(self, user): |
|
139 | def get_user_id(self, user): | |
140 | '''look up numeric bugzilla user id.''' |
|
140 | '''look up numeric bugzilla user id.''' | |
141 | try: |
|
141 | try: | |
142 | return self.user_ids[user] |
|
142 | return self.user_ids[user] | |
143 | except KeyError: |
|
143 | except KeyError: | |
144 | try: |
|
144 | try: | |
145 | userid = int(user) |
|
145 | userid = int(user) | |
146 | except ValueError: |
|
146 | except ValueError: | |
147 | self.ui.note(_('looking up user %s\n') % user) |
|
147 | self.ui.note(_('looking up user %s\n') % user) | |
148 | self.run('''select userid from profiles |
|
148 | self.run('''select userid from profiles | |
149 | where login_name like %s''', user) |
|
149 | where login_name like %s''', user) | |
150 | all = self.cursor.fetchall() |
|
150 | all = self.cursor.fetchall() | |
151 | if len(all) != 1: |
|
151 | if len(all) != 1: | |
152 | raise KeyError(user) |
|
152 | raise KeyError(user) | |
153 | userid = int(all[0][0]) |
|
153 | userid = int(all[0][0]) | |
154 | self.user_ids[user] = userid |
|
154 | self.user_ids[user] = userid | |
155 | return userid |
|
155 | return userid | |
156 |
|
156 | |||
157 | def map_committer(self, user): |
|
157 | def map_committer(self, user): | |
158 | '''map name of committer to bugzilla user name.''' |
|
158 | '''map name of committer to bugzilla user name.''' | |
159 | for committer, bzuser in self.ui.configitems('usermap'): |
|
159 | for committer, bzuser in self.ui.configitems('usermap'): | |
160 | if committer.lower() == user.lower(): |
|
160 | if committer.lower() == user.lower(): | |
161 | return bzuser |
|
161 | return bzuser | |
162 | return user |
|
162 | return user | |
163 |
|
163 | |||
164 | def add_comment(self, bugid, text, committer): |
|
164 | def add_comment(self, bugid, text, committer): | |
165 | '''add comment to bug. try adding comment as committer of |
|
165 | '''add comment to bug. try adding comment as committer of | |
166 | changeset, otherwise as default bugzilla user.''' |
|
166 | changeset, otherwise as default bugzilla user.''' | |
167 | user = self.map_committer(committer) |
|
167 | user = self.map_committer(committer) | |
168 | try: |
|
168 | try: | |
169 | userid = self.get_user_id(user) |
|
169 | userid = self.get_user_id(user) | |
170 | except KeyError: |
|
170 | except KeyError: | |
171 | try: |
|
171 | try: | |
172 | defaultuser = self.ui.config('bugzilla', 'bzuser') |
|
172 | defaultuser = self.ui.config('bugzilla', 'bzuser') | |
173 | if not defaultuser: |
|
173 | if not defaultuser: | |
174 | raise util.Abort(_('cannot find bugzilla user id for %s') % |
|
174 | raise util.Abort(_('cannot find bugzilla user id for %s') % | |
175 | user) |
|
175 | user) | |
176 | userid = self.get_user_id(defaultuser) |
|
176 | userid = self.get_user_id(defaultuser) | |
177 | except KeyError: |
|
177 | except KeyError: | |
178 | raise util.Abort(_('cannot find bugzilla user id for %s or %s') % |
|
178 | raise util.Abort(_('cannot find bugzilla user id for %s or %s') % | |
179 | (user, defaultuser)) |
|
179 | (user, defaultuser)) | |
180 | now = time.strftime('%Y-%m-%d %H:%M:%S') |
|
180 | now = time.strftime('%Y-%m-%d %H:%M:%S') | |
181 | self.run('''insert into longdescs |
|
181 | self.run('''insert into longdescs | |
182 | (bug_id, who, bug_when, thetext) |
|
182 | (bug_id, who, bug_when, thetext) | |
183 | values (%s, %s, %s, %s)''', |
|
183 | values (%s, %s, %s, %s)''', | |
184 | (bugid, userid, now, text)) |
|
184 | (bugid, userid, now, text)) | |
185 | self.run('''insert into bugs_activity (bug_id, who, bug_when, fieldid) |
|
185 | self.run('''insert into bugs_activity (bug_id, who, bug_when, fieldid) | |
186 | values (%s, %s, %s, %s)''', |
|
186 | values (%s, %s, %s, %s)''', | |
187 | (bugid, userid, now, self.longdesc_id)) |
|
187 | (bugid, userid, now, self.longdesc_id)) | |
188 |
|
188 | |||
189 | class bugzilla(object): |
|
189 | class bugzilla(object): | |
190 | # supported versions of bugzilla. different versions have |
|
190 | # supported versions of bugzilla. different versions have | |
191 | # different schemas. |
|
191 | # different schemas. | |
192 | _versions = { |
|
192 | _versions = { | |
193 | '2.16': bugzilla_2_16, |
|
193 | '2.16': bugzilla_2_16, | |
194 | } |
|
194 | } | |
195 |
|
195 | |||
196 | _default_bug_re = (r'bugs?\s*,?\s*(?:#|nos?\.?|num(?:ber)?s?)?\s*' |
|
196 | _default_bug_re = (r'bugs?\s*,?\s*(?:#|nos?\.?|num(?:ber)?s?)?\s*' | |
197 | r'((?:\d+\s*(?:,?\s*(?:and)?)?\s*)+)') |
|
197 | r'((?:\d+\s*(?:,?\s*(?:and)?)?\s*)+)') | |
198 |
|
198 | |||
199 | _bz = None |
|
199 | _bz = None | |
200 |
|
200 | |||
201 | def __init__(self, ui, repo): |
|
201 | def __init__(self, ui, repo): | |
202 | self.ui = ui |
|
202 | self.ui = ui | |
203 | self.repo = repo |
|
203 | self.repo = repo | |
204 |
|
204 | |||
205 | def bz(self): |
|
205 | def bz(self): | |
206 | '''return object that knows how to talk to bugzilla version in |
|
206 | '''return object that knows how to talk to bugzilla version in | |
207 | use.''' |
|
207 | use.''' | |
208 |
|
208 | |||
209 | if bugzilla._bz is None: |
|
209 | if bugzilla._bz is None: | |
210 | bzversion = self.ui.config('bugzilla', 'version') |
|
210 | bzversion = self.ui.config('bugzilla', 'version') | |
211 | try: |
|
211 | try: | |
212 | bzclass = bugzilla._versions[bzversion] |
|
212 | bzclass = bugzilla._versions[bzversion] | |
213 | except KeyError: |
|
213 | except KeyError: | |
214 | raise util.Abort(_('bugzilla version %s not supported') % |
|
214 | raise util.Abort(_('bugzilla version %s not supported') % | |
215 | bzversion) |
|
215 | bzversion) | |
216 | bugzilla._bz = bzclass(self.ui) |
|
216 | bugzilla._bz = bzclass(self.ui) | |
217 | return bugzilla._bz |
|
217 | return bugzilla._bz | |
218 |
|
218 | |||
219 | def __getattr__(self, key): |
|
219 | def __getattr__(self, key): | |
220 | return getattr(self.bz(), key) |
|
220 | return getattr(self.bz(), key) | |
221 |
|
221 | |||
222 | _bug_re = None |
|
222 | _bug_re = None | |
223 | _split_re = None |
|
223 | _split_re = None | |
224 |
|
224 | |||
225 | def find_bug_ids(self, node, desc): |
|
225 | def find_bug_ids(self, node, desc): | |
226 | '''find valid bug ids that are referred to in changeset |
|
226 | '''find valid bug ids that are referred to in changeset | |
227 | comments and that do not already have references to this |
|
227 | comments and that do not already have references to this | |
228 | changeset.''' |
|
228 | changeset.''' | |
229 |
|
229 | |||
230 | if bugzilla._bug_re is None: |
|
230 | if bugzilla._bug_re is None: | |
231 | bugzilla._bug_re = re.compile( |
|
231 | bugzilla._bug_re = re.compile( | |
232 | self.ui.config('bugzilla', 'regexp', bugzilla._default_bug_re), |
|
232 | self.ui.config('bugzilla', 'regexp', bugzilla._default_bug_re), | |
233 | re.IGNORECASE) |
|
233 | re.IGNORECASE) | |
234 | bugzilla._split_re = re.compile(r'\D+') |
|
234 | bugzilla._split_re = re.compile(r'\D+') | |
235 | start = 0 |
|
235 | start = 0 | |
236 | ids = {} |
|
236 | ids = {} | |
237 | while True: |
|
237 | while True: | |
238 | m = bugzilla._bug_re.search(desc, start) |
|
238 | m = bugzilla._bug_re.search(desc, start) | |
239 | if not m: |
|
239 | if not m: | |
240 | break |
|
240 | break | |
241 | start = m.end() |
|
241 | start = m.end() | |
242 | for id in bugzilla._split_re.split(m.group(1)): |
|
242 | for id in bugzilla._split_re.split(m.group(1)): | |
243 | if not id: continue |
|
243 | if not id: continue | |
244 | ids[int(id)] = 1 |
|
244 | ids[int(id)] = 1 | |
245 | ids = ids.keys() |
|
245 | ids = ids.keys() | |
246 | if ids: |
|
246 | if ids: | |
247 | ids = self.filter_real_bug_ids(ids) |
|
247 | ids = self.filter_real_bug_ids(ids) | |
248 | if ids: |
|
248 | if ids: | |
249 | ids = self.filter_unknown_bug_ids(node, ids) |
|
249 | ids = self.filter_unknown_bug_ids(node, ids) | |
250 | return ids |
|
250 | return ids | |
251 |
|
251 | |||
252 | def update(self, bugid, node, changes): |
|
252 | def update(self, bugid, node, changes): | |
253 | '''update bugzilla bug with reference to changeset.''' |
|
253 | '''update bugzilla bug with reference to changeset.''' | |
254 |
|
254 | |||
255 | def webroot(root): |
|
255 | def webroot(root): | |
256 | '''strip leading prefix of repo root and turn into |
|
256 | '''strip leading prefix of repo root and turn into | |
257 | url-safe path.''' |
|
257 | url-safe path.''' | |
258 | count = int(self.ui.config('bugzilla', 'strip', 0)) |
|
258 | count = int(self.ui.config('bugzilla', 'strip', 0)) | |
259 | root = util.pconvert(root) |
|
259 | root = util.pconvert(root) | |
260 | while count > 0: |
|
260 | while count > 0: | |
261 | c = root.find('/') |
|
261 | c = root.find('/') | |
262 | if c == -1: |
|
262 | if c == -1: | |
263 | break |
|
263 | break | |
264 | root = root[c+1:] |
|
264 | root = root[c+1:] | |
265 | count -= 1 |
|
265 | count -= 1 | |
266 | return root |
|
266 | return root | |
267 |
|
267 | |||
268 | mapfile = self.ui.config('bugzilla', 'style') |
|
268 | mapfile = self.ui.config('bugzilla', 'style') | |
269 | tmpl = self.ui.config('bugzilla', 'template') |
|
269 | tmpl = self.ui.config('bugzilla', 'template') | |
270 | sio = cmdutil.stringio() |
|
270 | t = cmdutil.changeset_templater(self.ui, self.repo, | |
271 | t = cmdutil.changeset_templater(self.ui, self.repo, mapfile, sio) |
|
271 | False, None, mapfile, False) | |
272 | if not mapfile and not tmpl: |
|
272 | if not mapfile and not tmpl: | |
273 | tmpl = _('changeset {node|short} in repo {root} refers ' |
|
273 | tmpl = _('changeset {node|short} in repo {root} refers ' | |
274 | 'to bug {bug}.\ndetails:\n\t{desc|tabindent}') |
|
274 | 'to bug {bug}.\ndetails:\n\t{desc|tabindent}') | |
275 | if tmpl: |
|
275 | if tmpl: | |
276 | tmpl = templater.parsestring(tmpl, quoted=False) |
|
276 | tmpl = templater.parsestring(tmpl, quoted=False) | |
277 | t.use_template(tmpl) |
|
277 | t.use_template(tmpl) | |
|
278 | self.ui.pushbuffer() | |||
278 | t.show(changenode=node, changes=changes, |
|
279 | t.show(changenode=node, changes=changes, | |
279 | bug=str(bugid), |
|
280 | bug=str(bugid), | |
280 | hgweb=self.ui.config('web', 'baseurl'), |
|
281 | hgweb=self.ui.config('web', 'baseurl'), | |
281 | root=self.repo.root, |
|
282 | root=self.repo.root, | |
282 | webroot=webroot(self.repo.root)) |
|
283 | webroot=webroot(self.repo.root)) | |
283 | self.add_comment(bugid, sio.getvalue(), templater.email(changes[1])) |
|
284 | data = self.ui.popbuffer() | |
|
285 | self.add_comment(bugid, data, templater.email(changes[1])) | |||
284 |
|
286 | |||
285 | def hook(ui, repo, hooktype, node=None, **kwargs): |
|
287 | def hook(ui, repo, hooktype, node=None, **kwargs): | |
286 | '''add comment to bugzilla for each changeset that refers to a |
|
288 | '''add comment to bugzilla for each changeset that refers to a | |
287 | bugzilla bug id. only add a comment once per bug, so same change |
|
289 | bugzilla bug id. only add a comment once per bug, so same change | |
288 | seen multiple times does not fill bug with duplicate data.''' |
|
290 | seen multiple times does not fill bug with duplicate data.''' | |
289 | try: |
|
291 | try: | |
290 | import MySQLdb as mysql |
|
292 | import MySQLdb as mysql | |
291 | global MySQLdb |
|
293 | global MySQLdb | |
292 | MySQLdb = mysql |
|
294 | MySQLdb = mysql | |
293 | except ImportError, err: |
|
295 | except ImportError, err: | |
294 | raise util.Abort(_('python mysql support not available: %s') % err) |
|
296 | raise util.Abort(_('python mysql support not available: %s') % err) | |
295 |
|
297 | |||
296 | if node is None: |
|
298 | if node is None: | |
297 | raise util.Abort(_('hook type %s does not pass a changeset id') % |
|
299 | raise util.Abort(_('hook type %s does not pass a changeset id') % | |
298 | hooktype) |
|
300 | hooktype) | |
299 | try: |
|
301 | try: | |
300 | bz = bugzilla(ui, repo) |
|
302 | bz = bugzilla(ui, repo) | |
301 | bin_node = bin(node) |
|
303 | bin_node = bin(node) | |
302 | changes = repo.changelog.read(bin_node) |
|
304 | changes = repo.changelog.read(bin_node) | |
303 | ids = bz.find_bug_ids(bin_node, changes[4]) |
|
305 | ids = bz.find_bug_ids(bin_node, changes[4]) | |
304 | if ids: |
|
306 | if ids: | |
305 | for id in ids: |
|
307 | for id in ids: | |
306 | bz.update(id, bin_node, changes) |
|
308 | bz.update(id, bin_node, changes) | |
307 | bz.notify(ids) |
|
309 | bz.notify(ids) | |
308 | except MySQLdb.MySQLError, err: |
|
310 | except MySQLdb.MySQLError, err: | |
309 | raise util.Abort(_('database error: %s') % err[1]) |
|
311 | raise util.Abort(_('database error: %s') % err[1]) | |
310 |
|
312 |
General Comments 0
You need to be logged in to leave comments.
Login now