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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
|
#!/usr/bin/env python
#
# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
Provide and email interface to the distributed bugtracker Bugs
Everywhere. Recieves incoming email via procmail. Provides an
interface similar to the Debian Bug Tracker. There are currently
three distinct email types: submits, comments, and controls. The
email types are differentiated by tags in the email subject. See
SUBJECT_TAG* for the current values.
Submit emails create a bug (and optionally add some intitial
comments). The post-tag subject is used as the bug summary, and the
email body is parsed for a pseudo-header. Any text after the
psuedo-header but before a possible line starting with BREAK is added
as the initial bug comment.
Comment emails...
Control emails...
Any changes made to the repository are commited after the email is
executed, with the email's post-tag subject as the commit message.
"""
import codecs
import cStringIO as StringIO
import email
from email.mime.multipart import MIMEMultipart
import email.utils
import libbe.cmdutil, libbe.encoding, libbe.utility
import os
import os.path
import re
import send_pgp_mime
import sys
import time
import traceback
HANDLER_ADDRESS = u"BE Bugs <wking@thor.physics.drexel.edu>"
_THIS_DIR = os.path.abspath(os.path.dirname(__file__))
BE_DIR = _THIS_DIR
LOGPATH = os.path.join(_THIS_DIR, u"be-handle-mail.log")
LOGFILE = None
SUBJECT_TAG_BASE = u"[be-bug"
SUBJECT_TAG_RESPONSE = u"%s]" % SUBJECT_TAG_BASE
SUBJECT_TAG_NEW = u"%s:submit]" % SUBJECT_TAG_BASE
SUBJECT_TAG_COMMENT = re.compile(u"%s:([\-0-9a-z]*)]"
% SUBJECT_TAG_BASE.replace("[","\["))
SUBJECT_TAG_CONTROL = SUBJECT_TAG_RESPONSE
BREAK = u"--"
NEW_REQUIRED_PSEUDOHEADERS = [u"Version"]
NEW_OPTIONAL_PSEUDOHEADERS = [u"Reporter", u"Assign", u"Depend", u"Severity",
u"Status", u"Tag", u"Target"]
CONTROL_COMMENT = u"#"
ALLOWED_COMMANDS = [u"assign", u"comment", u"commit", u"depend", u"help",
u"list", u"merge", u"new", u"open", u"severity", u"status",
u"tag", u"target"]
AUTOCOMMIT = True
libbe.encoding.ENCODING = u"utf-8" # force default encoding
ENCODING = libbe.encoding.get_encoding()
class InvalidEmail (ValueError):
def __init__(self, msg, message):
ValueError.__init__(self, message)
self.msg = msg
def response(self):
header = self.msg.response_header
body = [u"Error processing email:\n",
self.response_body(), u""]
response_generator = \
send_pgp_mime.PGPMimeMessageFactory(u"\n".join(body))
response = MIMEMultipart()
response.attach(response_generator.plain())
response.attach(self.msg.msg)
ret = send_pgp_mime.attach_root(header, response)
return ret
def response_body(self):
err_text = [unicode(self)]
return u"\n".join(err_text)
class InvalidSubject (InvalidEmail):
def __init__(self, msg, message=None):
if message == None:
message = u"Invalid subject"
InvalidEmail.__init__(self, msg, message)
def response_body(self):
err_text = u"\n".join([unicode(self), u"",
u"full subject was:",
self.msg.subject()])
return err_text
class InvalidPseudoHeader (InvalidEmail):
def response_body(self):
err_text = [u"Invalid pseudo-header:\n",
unicode(self)]
return u"\n".join(err_text)
class InvalidCommand (InvalidEmail):
def __init__(self, msg, command, message=None):
bigmessage = u"Invalid execution command '%s'" % command
if message == None:
bigmessage += u"\n%s" % message
InvalidEmail.__init__(self, msg, bigmessage)
self.command = command
class InvalidOption (InvalidCommand):
def __init__(self, msg, option, message=None):
bigmessage = u"Invalid option '%s'" % (option)
if message == None:
bigmessage += u"\n%s" % message
InvalidCommand.__init__(self, msg, info, command, bigmessage)
self.option = option
class ID (object):
"""
Sometimes you want to reference the output of a command that
hasn't been executed yet. ID is there for situations like
> a = Command(msg, "new", ["create a bug"])
> b = Command(msg, "comment", [ID(a), "and comment on it"])
"""
def __init__(self, command):
self.command = command
def extract_id(self):
assert self.command.ret == 0, self.command.ret
if self.command.command == u"new":
regexp = re.compile(u"Created bug with ID (.*)")
else:
raise NotImplementedError, self.command.command
match = regexp.match(self.command.stdout)
assert len(match.groups()) == 1, str(match.groups())
return match.group(1)
class Command (object):
"""
A becommands command wrapper.
Doesn't validate input, so do that before initializing.
Initialize with
Command(msg, command, args=None, stdin=None)
where
msg: the Message instance prompting this command
command: name of becommand to execute, e.g. "new"
args: list of arguments to pass to the command
stdin: if non-null, a string to pipe into the command's stdin
"""
def __init__(self, msg, command, args=None, stdin=None):
self.msg = msg
self.command = command
if args == None:
self.args = []
else:
self.args = args
self.stdin = stdin
self.ret = None
self.stdout = None
self.stderr = None
self.err = None
def __str__(self):
return "<command: %s %s>" % (self.command, " ".join(self.args))
def normalize_args(self):
"""
Expand any ID placeholders in self.args.
"""
for i,arg in enumerate(self.args):
if isinstance(arg, ID):
self.args[i] = arg.extract_id()
def run(self):
"""
Attempt to execute the command whose info is given in the dictionary
info. Returns the exit code, stdout, and stderr produced by the
command.
"""
if self.command in [None, u""]: # don't accept blank commands
raise InvalidCommand(self.msg, self)
elif self.command not in ALLOWED_COMMANDS:
raise InvalidCommand(self.msg, self)
assert self.ret == None, u"running %s twice!" % unicode(self)
self.normalize_args()
# set stdin and catch stdout and stderr
if self.stdin != None:
new_stdin = StringIO.StringIO(self.stdin)
orig___stdin = sys.__stdin__
sys.__stdin__ = new_stdin
orig_stdin = sys.stdin
sys.stdin = new_stdin
new_stdout = codecs.getwriter(ENCODING)(StringIO.StringIO())
new_stderr = codecs.getwriter(ENCODING)(StringIO.StringIO())
orig_stdout = sys.stdout
orig_stderr = sys.stderr
sys.stdout = new_stdout
sys.stderr = new_stderr
# run the command
os.chdir(BE_DIR)
try:
self.ret = libbe.cmdutil.execute(self.command, self.args,
manipulate_encodings=False)
except libbe.cmdutil.GetHelp:
print libbe.cmdutil.help(command)
except libbe.cmdutil.GetCompletions:
self.err = InvalidOption(self.msg, self.command, u"--complete")
except libbe.cmdutil.UsageError, e:
self.err = InvalidCommand(self.msg, self, type(e))
except libbe.cmdutil.UserError, e:
self.err = InvalidCommand(self.msg, self, type(e))
# restore stdin, stdout, and stderr
if self.stdin != None:
sys.__stdin__ = new_stdin
sys.__stdin__ = orig___stdin
sys.stdin = orig_stdin
sys.stdout.flush()
sys.stderr.flush()
sys.stdout = orig_stdout
sys.stderr = orig_stderr
self.stdout = codecs.decode(new_stdout.getvalue(), ENCODING)
self.stderr = codecs.decode(new_stderr.getvalue(), ENCODING)
if self.err != None:
raise self.err
return (self.ret, self.stdout, self.stderr)
def response_msg(self):
response_body = [u"Results of running: (exit code %d)" % self.ret,
u" %s %s" % (self.command, u" ".join(self.args))]
if self.stdout != None and len(self.stdout) > 0:
response_body.extend([u"", u"stdout:", u"", self.stdout])
if self.stderr != None and len(self.stderr) > 0:
response_body.extend([u"", u"stderr:", u"", self.stderr])
response_body.append(u"") # trailing endline
response_generator = \
send_pgp_mime.PGPMimeMessageFactory(u"\n".join(response_body))
return response_generator.plain()
class Message (object):
def __init__(self, email_text):
self.text = email_text
p=email.Parser.Parser()
self.msg=p.parsestr(self.text)
if LOGFILE != None:
LOGFILE.write(u"handling %s\n" % self.author_addr())
LOGFILE.write(u"\n%s\n\n" % self.text)
def author_tuple(self):
"""
Extract and normalize the sender's email address. Returns a
(name, email) tuple.
"""
if not hasattr(self, "author_tuple_cache"):
self.author_tuple_cache = \
send_pgp_mime.source_email(self.msg, return_realname=True)
return self.author_tuple_cache
def author_addr(self):
return email.utils.formataddr(self.author_tuple())
def author_name(self):
return self.author_tuple()[0]
def author_email(self):
return self.author_tuple()[1]
def default_msg_attribute_access(self, attr_name, default=None):
if attr_name in self.msg:
return self.msg[attr_name]
return default
def message_id(self, default=None):
return self.default_msg_attribute_access("message-id", default=default)
def subject(self):
if "subject" not in self.msg:
raise InvalidSubject(self, u"Email must contain a subject")
return self.msg["subject"]
def _split_subject(self):
"""
Returns (tag, subject), with missing values replaced by None.
"""
if hasattr(self, "_split_subject_cache"):
return self._split_subject_cache
args = self.subject().split(u"]",1)
if len(args) < 1:
self._split_subject_cache = (None, None)
elif len(args) < 2:
self._split_subject_cache = (args[0]+u"]", None)
else:
self._split_subject_cache = (args[0]+u"]", args[1].strip())
return self._split_subject_cache
def _subject_tag_type(self):
"""
Parse subject tag, return (type, value), where type is one of
None, "new", "comment", or "control"; and value is None except
in the case of "comment", in which case it's the bug
ID/shortname.
"""
tag,subject = self._split_subject()
type = None
value = None
if tag == SUBJECT_TAG_NEW:
type = u"new"
elif tag == SUBJECT_TAG_CONTROL:
type = u"control"
else:
match = SUBJECT_TAG_COMMENT.match(tag)
if len(match.groups()) == 1:
type = u"comment"
value = match.group(1)
return (type, value)
def validate_subject(self):
"""
Validate the subject line.
"""
tag,subject = self._split_subject()
if not tag.startswith(SUBJECT_TAG_BASE):
raise InvalidSubject(
self, u"Subject must start with '%s'" % SUBJECT_TAG_BASE)
tag_type,value = self._subject_tag_type()
if tag_type == None:
raise InvalidSubject(self, u"Invalid tag '%s'" % tag)
elif tag_type == u"new" and len(subject) == 0:
raise InvalidSubject(self, u"Cannot create a bug with blank title")
elif tag_type == u"comment" and len(value) == 0:
raise InvalidSubject(self, u"Must specify a bug ID to comment")
def _get_bodies_and_mime_types(self):
"""
Traverse the email message returning (body, mime_type) for
each non-mulitpart portion of the message.
"""
for part in self.msg.walk():
if part.is_multipart():
continue
body,mime_type=(part.get_payload(decode=1),part.get_content_type())
yield (body, mime_type)
def _parse_body_pseudoheaders(self, body, required, optional,
dictionary=None):
"""
Grab any pseudo-headers from the beginning of body. Raise
InvalidPseudoHeader on errors. Returns the body text after
the pseudo-header and a dictionary of set options. If you
like, you can initialize the dictionary with some defaults
and pass your initialized dict in as dictionary.
"""
if dictionary == None:
dictionary = {}
body_lines = body.splitlines()
all = required+optional
for i,line in enumerate(body_lines):
line = line.strip()
if len(line) == 0:
break
key,value = line.split(":", 1)
value = value.strip()
if key not in all:
raise InvalidPseudoHeader(self, key)
if len(value) == 0:
raise InvalidEmail(
self, u"Blank value for: %s" % key)
dictionary[key] = value
missing = []
for key in required:
if key not in dictionary:
missing.append(key)
if len(missing) > 0:
raise InvalidPseudoHeader(self,
u"Missing required pseudo-headers:\n%s"
% u", ".join(missing))
remaining_body = u"\n".join(body_lines[i:]).strip()
return (remaining_body, dictionary)
def _strip_footer(self, body):
body_lines = body.splitlines()
for i,line in enumerate(body_lines):
if line.startswith(BREAK):
break
return u"\n".join(body_lines[:i]).strip()
def parse(self):
"""
Parse the commands given in the email. Raises assorted
subclasses of InvalidEmail in the case of invalid messages,
otherwise returns a list of suggested commands to run.
"""
self.validate_subject()
tag,subject = self._split_subject()
tag_type,value = self._subject_tag_type()
commands = []
if tag_type == u"new":
command = u"new"
summary = subject
options = {u"Reporter": self.author_addr()}
body,mime_type = list(self._get_bodies_and_mime_types())[0]
comment_body,options = \
self._parse_body_pseudoheaders(body,
NEW_REQUIRED_PSEUDOHEADERS,
NEW_OPTIONAL_PSEUDOHEADERS,
options)
args = [u"--reporter", options[u"Reporter"]]
args.append(summary)
commands.append(Command(self, command, args))
comment_body = self._strip_footer(comment_body)
if len(comment_body) > 0:
command = u"comment"
comment = u"Version: %s\n\n"%options[u"Version"] + comment_body
args = [u"--author", self.author_addr(),
u"--alt-id", self.message_id(),
u"--content-type", mime_type]
args.append(ID(commands[0]))
args.append(u"-")
commands.append(Command(self, u"comment", args, stdin=comment))
elif tag_type == u"comment":
command = u"comment"
bug_id = value
author = self.author_addr()
alt_id = self.message_id()
body,mime_type = list(self._get_bodies_and_mime_types())[0]
if mime_type == "text/plain":
body = self._strip_footer(body)
content_type = mime_type
args = [u"--author", author, u"--alt-id", alt_id,
u"--content-type", content_type, bug_id, u"-"]
commands.append(Command(self, command, args, stdin=body))
elif tag_type == u"control":
body,mime_type = list(self._get_bodies_and_mime_types())[0]
for line in body.splitlines():
line = line.strip()
if line.startswith(CONTROL_COMMENT) or len(line) == 0:
continue
if line.startswith(BREAK):
break
fields = line.split()
command,args = (fields[0], fields[1:])
commands.append(Command(self, command, args))
if len(commands) == 0:
raise InvalidEmail(self, u"No commands in control email.")
else:
raise Exception, u"Unrecognized tag type '%s'" % tag_type
if AUTOCOMMIT == True:
commands.append(Command(self, "commit", [subject]))
return commands
def run(self):
self._begin_response()
commands = self.parse()
if LOGFILE != None:
LOGFILE.write("Running:\n %s\n\n" % "\n ".join([str(c) for c in commands]))
for command in commands:
command.run()
self._add_response(command.response_msg())
def _begin_response(self):
tag,subject = self._split_subject()
response_header = [u"From: %s" % HANDLER_ADDRESS,
u"To: %s" % self.author_addr(),
u"Date: %s" % libbe.utility.time_to_str(time.time()),
u"Subject: %s Re: %s"%(SUBJECT_TAG_RESPONSE,subject)
]
if self.message_id() != None:
response_header.append(u"In-reply-to: %s" % self.message_id())
self.response_header = \
send_pgp_mime.header_from_text(text=u"\n".join(response_header))
self._response_messages = []
def _add_response(self, response_message):
self._response_messages.append(response_message)
def response_email(self):
assert len(self._response_messages) > 0
if len(self._response_messages) == 1:
response_body = self._response_messages[0])
else:
repsonse_body = MIMEMultipart()
for message in self._response_messages:
resposne_body.attach(message)
return send_pgp_mime.attach_root(self.response_header, response_body)
def open_logfile(logpath=None):
"""
If logpath=None, default to global LOGPATH.
Special logpath strings:
"-" set LOGFILE to sys.stderr
"none" disable logging
Relative logpaths are expanded relative to _THIS_DIR
"""
global LOGPATH, LOGFILE
if logpath != None:
if logpath == u"-":
LOGPATH = u"stderr"
LOGFILE = sys.stderr
elif logpath == u"none":
LOGPATH = u"none"
LOGFILE = None
elif os.path.isabs(logpath):
LOGPATH = logpath
else:
LOGPATH = os.path.join(_THIS_DIR, logpath)
if LOGFILE == None and LOGPATH != u"none":
LOGFILE = codecs.open(LOGPATH, u"a+", ENCODING)
LOGFILE.write(u"Default encoding: %s\n" % ENCODING)
def close_logfile():
if LOGFILE != None and LOGPATH not in [u"stderr", u"none"]:
LOGFILE.close()
def main():
from optparse import OptionParser
global AUTOCOMMIT
usage="be-handle-mail [options]\n\n%s" % (__doc__)
parser = OptionParser(usage=usage)
parser.add_option('-o', '--output', dest='output', action='store_true',
help="Don't mail the generated message, print it to stdout instead. Useful for testing be-handle-mail functionality without the whole mail transfer agent and procmail setup.")
parser.add_option('-l', '--logfile', dest='logfile', metavar='LOGFILE',
help='Set the logfile to LOGFILE. Relative paths are relative to the location of this be-handle-mail file (%s). The special value of "-" directs the log output to stderr, and "none" disables logging.' % _THIS_DIR)
parser.add_option('-a', '--disable-autocommit', dest='autocommit',
default=True, action='store_false',
help='Disable the autocommit after parsing the email.')
options,args = parser.parse_args()
AUTOCOMMIT = options.autocommit
msg_text = sys.stdin.read()
libbe.encoding.set_IO_stream_encodings(ENCODING) # _after_ reading message
open_logfile(options.logfile)
if len(msg_text.strip()) == 0: # blank email!?
if LOGFILE != None:
LOGFILE.write(u"Blank email!\n")
close_logfile()
sys.exit(1)
try:
m = Message(msg_text)
m.run()
except InvalidEmail, e:
response = e.response()
except Exception, e:
if LOGFILE != None:
LOGFILE.write(u"Uncaught exception:\n%s\n" % (e,))
traceback.print_tb(sys.exc_traceback, file=LOGFILE)
close_logfile()
sys.exit(1)
else:
response = m.response_email()
if options.output == True:
print send_pgp_mime.flatten(response, to_unicode=True)
else:
if LOGFILE != None:
LOGFILE.write(u"sending response to %s\n" % m.author_addr())
LOGFILE.write(u"\n%s\n\n" % send_pgp_mime.flatten(response,
to_unicode=True))
send_pgp_mime.mail(response, send_pgp_mime.sendmail)
close_logfile()
if __name__ == "__main__":
main()
|