Fixed completion function hardcoding .git/.
[stgit] / stgit / commands / mail.py
1 __copyright__ = """
2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 """
17
18 import sys, os, re, time, datetime, smtplib
19 import email, email.Utils, email.Header
20 from optparse import OptionParser, make_option
21
22 from stgit.commands.common import *
23 from stgit.utils import *
24 from stgit import stack, git, version, templates
25 from stgit.config import config
26
27
28 help = 'send a patch or series of patches by e-mail'
29 usage = """%prog [options] [<patch1>] [<patch2>] [<patch3>..<patch4>]
30
31 Send a patch or a range of patches by e-mail using the 'smtpserver'
32 configuration option. The From address and the e-mail format are
33 generated from the template file passed as argument to '--template'
34 (defaulting to '.git/patchmail.tmpl' or
35 '~/.stgit/templates/patchmail.tmpl' or
36 '/usr/share/stgit/templates/patchmail.tmpl').
37
38 The To/Cc/Bcc addresses can either be added to the template file or
39 passed via the corresponding command line options. They can be e-mail
40 addresses or aliases which are automatically expanded to the values
41 stored in the [mail "alias"] section of GIT configuration files.
42
43 A preamble e-mail can be sent using the '--cover' and/or
44 '--edit-cover' options. The first allows the user to specify a file to
45 be used as a template. The latter option will invoke the editor on the
46 specified file (defaulting to '.git/covermail.tmpl' or
47 '~/.stgit/templates/covermail.tmpl' or
48 '/usr/share/stgit/templates/covermail.tmpl').
49
50 All the subsequent e-mails appear as replies to the first e-mail sent
51 (either the preamble or the first patch). E-mails can be seen as
52 replies to a different e-mail by using the '--refid' option.
53
54 SMTP authentication is also possible with '--smtp-user' and
55 '--smtp-password' options, also available as configuration settings:
56 'smtpuser' and 'smtppassword'.
57
58 The patch e-mail template accepts the following variables:
59
60 %(patch)s - patch name
61 %(sender)s - 'sender' or 'authname <authemail>' as per the config file
62 %(shortdescr)s - the first line of the patch description
63 %(longdescr)s - the rest of the patch description, after the first line
64 %(diff)s - unified diff of the patch
65 %(diffstat)s - diff statistics
66 %(version)s - ' version' string passed on the command line (or empty)
67 %(prefix)s - 'prefix ' string passed on the command line
68 %(patchnr)s - patch number
69 %(totalnr)s - total number of patches to be sent
70 %(number)s - empty if only one patch is sent or ' patchnr/totalnr'
71 %(fromauth)s - 'From: author\\n\\n' if different from sender
72 %(authname)s - author's name
73 %(authemail)s - author's email
74 %(authdate)s - patch creation date
75 %(commname)s - committer's name
76 %(commemail)s - committer's e-mail
77
78 For the preamble e-mail template, only the %(sender)s, %(version)s,
79 %(patchnr)s, %(totalnr)s and %(number)s variables are supported."""
80
81 options = [make_option('-a', '--all',
82 help = 'e-mail all the applied patches',
83 action = 'store_true'),
84 make_option('--to',
85 help = 'add TO to the To: list',
86 action = 'append'),
87 make_option('--cc',
88 help = 'add CC to the Cc: list',
89 action = 'append'),
90 make_option('--bcc',
91 help = 'add BCC to the Bcc: list',
92 action = 'append'),
93 make_option('--auto',
94 help = 'automatically cc the patch signers',
95 action = 'store_true'),
96 make_option('--noreply',
97 help = 'do not send subsequent messages as replies',
98 action = 'store_true'),
99 make_option('--unrelated',
100 help = 'send patches without sequence numbering',
101 action = 'store_true'),
102 make_option('-v', '--version', metavar = 'VERSION',
103 help = 'add VERSION to the [PATCH ...] prefix'),
104 make_option('--prefix', metavar = 'PREFIX',
105 help = 'add PREFIX to the [... PATCH ...] prefix'),
106 make_option('-t', '--template', metavar = 'FILE',
107 help = 'use FILE as the message template'),
108 make_option('-c', '--cover', metavar = 'FILE',
109 help = 'send FILE as the cover message'),
110 make_option('-e', '--edit-cover',
111 help = 'edit the cover message before sending',
112 action = 'store_true'),
113 make_option('-E', '--edit-patches',
114 help = 'edit each patch before sending',
115 action = 'store_true'),
116 make_option('-s', '--sleep', type = 'int', metavar = 'SECONDS',
117 help = 'sleep for SECONDS between e-mails sending'),
118 make_option('--refid',
119 help = 'use REFID as the reference id'),
120 make_option('-u', '--smtp-user', metavar = 'USER',
121 help = 'username for SMTP authentication'),
122 make_option('-p', '--smtp-password', metavar = 'PASSWORD',
123 help = 'username for SMTP authentication'),
124 make_option('-b', '--branch',
125 help = 'use BRANCH instead of the default one'),
126 make_option('-O', '--diff-opts',
127 help = 'options to pass to git-diff'),
128 make_option('-m', '--mbox',
129 help = 'generate an mbox file instead of sending',
130 action = 'store_true')]
131
132
133 def __get_sender():
134 """Return the 'authname <authemail>' string as read from the
135 configuration file
136 """
137 sender=config.get('stgit.sender')
138 if not sender:
139 try:
140 sender = str(git.user())
141 except git.GitException:
142 sender = str(git.author())
143
144 if not sender:
145 raise CmdException, 'unknown sender details'
146
147 return address_or_alias(sender)
148
149 def __parse_addresses(msg):
150 """Return a two elements tuple: (from, [to])
151 """
152 def __addr_list(msg, header):
153 return [name_addr[1] for name_addr in
154 email.Utils.getaddresses(msg.get_all(header, []))]
155
156 from_addr_list = __addr_list(msg, 'From')
157 if len(from_addr_list) == 0:
158 raise CmdException, 'No "From" address'
159
160 to_addr_list = __addr_list(msg, 'To') + __addr_list(msg, 'Cc') \
161 + __addr_list(msg, 'Bcc')
162 if len(to_addr_list) == 0:
163 raise CmdException, 'No "To/Cc/Bcc" addresses'
164
165 return (from_addr_list[0], to_addr_list)
166
167 def __send_message(smtpserver, from_addr, to_addr_list, msg, sleep,
168 smtpuser, smtppassword):
169 """Send the message using the given SMTP server
170 """
171 try:
172 s = smtplib.SMTP(smtpserver)
173 except Exception, err:
174 raise CmdException, str(err)
175
176 s.set_debuglevel(0)
177 try:
178 if smtpuser and smtppassword:
179 s.ehlo()
180 s.login(smtpuser, smtppassword)
181
182 result = s.sendmail(from_addr, to_addr_list, msg)
183 if len(result):
184 print "mail server refused delivery for the following recipients: %s" % result
185 # give recipients a chance of receiving patches in the correct order
186 time.sleep(sleep)
187 except Exception, err:
188 raise CmdException, str(err)
189
190 s.quit()
191
192 def __build_address_headers(msg, options, extra_cc = []):
193 """Build the address headers and check existing headers in the
194 template.
195 """
196 def __replace_header(header, addr):
197 if addr:
198 crt_addr = msg[header]
199 del msg[header]
200
201 if crt_addr:
202 msg[header] = address_or_alias(', '.join([crt_addr, addr]))
203 else:
204 msg[header] = address_or_alias(addr)
205
206 to_addr = ''
207 cc_addr = ''
208 bcc_addr = ''
209
210 autobcc = config.get('stgit.autobcc') or ''
211
212 if options.to:
213 to_addr = ', '.join(options.to)
214 if options.cc:
215 cc_addr = ', '.join(options.cc + extra_cc)
216 elif extra_cc:
217 cc_addr = ', '.join(extra_cc)
218 if options.bcc:
219 bcc_addr = ', '.join(options.bcc + [autobcc])
220 elif autobcc:
221 bcc_addr = autobcc
222
223 __replace_header('To', to_addr)
224 __replace_header('Cc', cc_addr)
225 __replace_header('Bcc', bcc_addr)
226
227 def __get_signers_list(msg):
228 """Return the address list generated from signed-off-by and
229 acked-by lines in the message.
230 """
231 addr_list = []
232
233 r = re.compile('^(signed-off-by|acked-by|cc):\s+(.+)$', re.I)
234 for line in msg.split('\n'):
235 m = r.match(line)
236 if m:
237 addr_list.append(m.expand('\g<2>'))
238
239 return addr_list
240
241 def __build_extra_headers(msg, msg_id, ref_id = None):
242 """Build extra email headers and encoding
243 """
244 del msg['Date']
245 msg['Date'] = email.Utils.formatdate(localtime = True)
246 msg['Message-ID'] = msg_id
247 if ref_id:
248 msg['In-Reply-To'] = ref_id
249 msg['References'] = ref_id
250 msg['User-Agent'] = 'StGIT/%s' % version.version
251
252 def __encode_message(msg):
253 # 7 or 8 bit encoding
254 charset = email.Charset.Charset('utf-8')
255 charset.body_encoding = None
256
257 # encode headers
258 for header, value in msg.items():
259 words = []
260 for word in value.split(' '):
261 try:
262 uword = unicode(word, 'utf-8')
263 except UnicodeDecodeError:
264 # maybe we should try a different encoding or report
265 # the error. At the moment, we just ignore it
266 pass
267 words.append(email.Header.Header(uword).encode())
268 new_val = ' '.join(words)
269 msg.replace_header(header, new_val)
270
271 # encode the body and set the MIME and encoding headers
272 msg.set_charset(charset)
273
274 def __edit_message(msg):
275 fname = '.stgitmail.txt'
276
277 # create the initial file
278 f = file(fname, 'w')
279 f.write(msg)
280 f.close()
281
282 call_editor(fname)
283
284 # read the message back
285 f = file(fname)
286 msg = f.read()
287 f.close()
288
289 return msg
290
291 def __build_cover(tmpl, total_nr, msg_id, options):
292 """Build the cover message (series description) to be sent via SMTP
293 """
294 sender = __get_sender()
295
296 if options.version:
297 version_str = ' %s' % options.version
298 else:
299 version_str = ''
300
301 if options.prefix:
302 prefix_str = options.prefix + ' '
303 else:
304 confprefix = config.get('stgit.mail.prefix')
305 if confprefix:
306 prefix_str = confprefix + ' '
307 else:
308 prefix_str = ''
309
310 total_nr_str = str(total_nr)
311 patch_nr_str = '0'.zfill(len(total_nr_str))
312 if total_nr > 1:
313 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
314 else:
315 number_str = ''
316
317 tmpl_dict = {'sender': sender,
318 # for backward template compatibility
319 'maintainer': sender,
320 # for backward template compatibility
321 'endofheaders': '',
322 # for backward template compatibility
323 'date': '',
324 'version': version_str,
325 'prefix': prefix_str,
326 'patchnr': patch_nr_str,
327 'totalnr': total_nr_str,
328 'number': number_str}
329
330 try:
331 msg_string = tmpl % tmpl_dict
332 except KeyError, err:
333 raise CmdException, 'Unknown patch template variable: %s' \
334 % err
335 except TypeError:
336 raise CmdException, 'Only "%(name)s" variables are ' \
337 'supported in the patch template'
338
339 if options.edit_cover:
340 msg_string = __edit_message(msg_string)
341
342 # The Python email message
343 try:
344 msg = email.message_from_string(msg_string)
345 except Exception, ex:
346 raise CmdException, 'template parsing error: %s' % str(ex)
347
348 __build_address_headers(msg, options)
349 __build_extra_headers(msg, msg_id, options.refid)
350 __encode_message(msg)
351
352 return msg
353
354 def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
355 """Build the message to be sent via SMTP
356 """
357 p = crt_series.get_patch(patch)
358
359 descr = p.get_description().strip()
360 descr_lines = descr.split('\n')
361
362 short_descr = descr_lines[0].rstrip()
363 long_descr = '\n'.join(descr_lines[1:]).lstrip()
364
365 authname = p.get_authname();
366 authemail = p.get_authemail();
367 commname = p.get_commname();
368 commemail = p.get_commemail();
369
370 sender = __get_sender()
371
372 fromauth = '%s <%s>' % (authname, authemail)
373 if fromauth != sender:
374 fromauth = 'From: %s\n\n' % fromauth
375 else:
376 fromauth = ''
377
378 if options.version:
379 version_str = ' %s' % options.version
380 else:
381 version_str = ''
382
383 if options.prefix:
384 prefix_str = options.prefix + ' '
385 else:
386 confprefix = config.get('stgit.mail.prefix')
387 if confprefix:
388 prefix_str = confprefix + ' '
389 else:
390 prefix_str = ''
391
392 if options.diff_opts:
393 diff_flags = options.diff_opts.split()
394 else:
395 diff_flags = []
396
397 total_nr_str = str(total_nr)
398 patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
399 if not options.unrelated and total_nr > 1:
400 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
401 else:
402 number_str = ''
403
404 tmpl_dict = {'patch': patch,
405 'sender': sender,
406 # for backward template compatibility
407 'maintainer': sender,
408 'shortdescr': short_descr,
409 'longdescr': long_descr,
410 # for backward template compatibility
411 'endofheaders': '',
412 'diff': git.diff(rev1 = git_id('%s//bottom' % patch),
413 rev2 = git_id('%s//top' % patch),
414 diff_flags = diff_flags ),
415 'diffstat': git.diffstat(rev1 = git_id('%s//bottom'%patch),
416 rev2 = git_id('%s//top' % patch)),
417 # for backward template compatibility
418 'date': '',
419 'version': version_str,
420 'prefix': prefix_str,
421 'patchnr': patch_nr_str,
422 'totalnr': total_nr_str,
423 'number': number_str,
424 'fromauth': fromauth,
425 'authname': authname,
426 'authemail': authemail,
427 'authdate': p.get_authdate(),
428 'commname': commname,
429 'commemail': commemail}
430 # change None to ''
431 for key in tmpl_dict:
432 if not tmpl_dict[key]:
433 tmpl_dict[key] = ''
434
435 try:
436 msg_string = tmpl % tmpl_dict
437 except KeyError, err:
438 raise CmdException, 'Unknown patch template variable: %s' \
439 % err
440 except TypeError:
441 raise CmdException, 'Only "%(name)s" variables are ' \
442 'supported in the patch template'
443
444 if options.edit_patches:
445 msg_string = __edit_message(msg_string)
446
447 # The Python email message
448 try:
449 msg = email.message_from_string(msg_string)
450 except Exception, ex:
451 raise CmdException, 'template parsing error: %s' % str(ex)
452
453 if options.auto:
454 extra_cc = __get_signers_list(descr)
455 else:
456 extra_cc = []
457
458 __build_address_headers(msg, options, extra_cc)
459 __build_extra_headers(msg, msg_id, ref_id)
460 __encode_message(msg)
461
462 return msg
463
464 def func(parser, options, args):
465 """Send the patches by e-mail using the patchmail.tmpl file as
466 a template
467 """
468 smtpserver = config.get('stgit.smtpserver')
469
470 applied = crt_series.get_applied()
471
472 if options.all:
473 patches = applied
474 elif len(args) >= 1:
475 unapplied = crt_series.get_unapplied()
476 patches = parse_patches(args, applied + unapplied, len(applied))
477 else:
478 raise CmdException, 'Incorrect options. Unknown patches to send'
479
480 smtppassword = options.smtp_password or config.get('stgit.smtppassword')
481 smtpuser = options.smtp_user or config.get('stgit.smtpuser')
482
483 if (smtppassword and not smtpuser):
484 raise CmdException, 'SMTP password supplied, username needed'
485 if (smtpuser and not smtppassword):
486 raise CmdException, 'SMTP username supplied, password needed'
487
488 total_nr = len(patches)
489 if total_nr == 0:
490 raise CmdException, 'No patches to send'
491
492 if options.refid:
493 if options.noreply or options.unrelated:
494 raise CmdException, \
495 '--refid option not allowed with --noreply or --unrelated'
496 ref_id = options.refid
497 else:
498 ref_id = None
499
500 sleep = options.sleep or config.getint('stgit.smtpdelay')
501
502 # send the cover message (if any)
503 if options.cover or options.edit_cover:
504 if options.unrelated:
505 raise CmdException, 'cover sending not allowed with --unrelated'
506
507 # find the template file
508 if options.cover:
509 tmpl = file(options.cover).read()
510 else:
511 tmpl = templates.get_template('covermail.tmpl')
512 if not tmpl:
513 raise CmdException, 'No cover message template file found'
514
515 msg_id = email.Utils.make_msgid('stgit')
516 msg = __build_cover(tmpl, total_nr, msg_id, options)
517 from_addr, to_addr_list = __parse_addresses(msg)
518
519 msg_string = msg.as_string(options.mbox)
520
521 # subsequent e-mails are seen as replies to the first one
522 if not options.noreply:
523 ref_id = msg_id
524
525 if options.mbox:
526 out.stdout_raw(msg_string + '\n')
527 else:
528 out.start('Sending the cover message')
529 __send_message(smtpserver, from_addr, to_addr_list, msg_string,
530 sleep, smtpuser, smtppassword)
531 out.done()
532
533 # send the patches
534 if options.template:
535 tmpl = file(options.template).read()
536 else:
537 tmpl = templates.get_template('patchmail.tmpl')
538 if not tmpl:
539 raise CmdException, 'No e-mail template file found'
540
541 for (p, patch_nr) in zip(patches, range(1, len(patches) + 1)):
542 msg_id = email.Utils.make_msgid('stgit')
543 msg = __build_message(tmpl, p, patch_nr, total_nr, msg_id, ref_id,
544 options)
545 from_addr, to_addr_list = __parse_addresses(msg)
546
547 msg_string = msg.as_string(options.mbox)
548
549 # subsequent e-mails are seen as replies to the first one
550 if not options.noreply and not options.unrelated and not ref_id:
551 ref_id = msg_id
552
553 if options.mbox:
554 out.stdout_raw(msg_string + '\n')
555 else:
556 out.start('Sending patch "%s"' % p)
557 __send_message(smtpserver, from_addr, to_addr_list, msg_string,
558 sleep, smtpuser, smtppassword)
559 out.done()