chiark / gitweb /
c3c047ab6e462c21e60108aaa9d304d904dd1be8
[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, email.Utils
19 from optparse import OptionParser, make_option
20
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit import stack, git, version, templates
24 from stgit.config import config
25
26
27 help = 'send a patch or series of patches by e-mail'
28 usage = """%prog [options] [<patch1>] [<patch2>] [<patch3>..<patch4>]
29
30 Send a patch or a range of patches by e-mail using the 'smtpserver'
31 configuration option. The From address and the e-mail format are
32 generated from the template file passed as argument to '--template'
33 (defaulting to '.git/patchmail.tmpl' or
34 '~/.stgit/templates/patchmail.tmpl' or or
35 '/usr/share/stgit/templates/patchmail.tmpl'). The To/Cc/Bcc addresses
36 can either be added to the template file or passed via the
37 corresponding command line options.
38
39 A preamble e-mail can be sent using the '--cover' and/or '--edit'
40 options. The first allows the user to specify a file to be used as a
41 template. The latter option will invoke the editor on the specified
42 file (defaulting to '.git/covermail.tmpl' or
43 '~/.stgit/templates/covermail.tmpl' or
44 '/usr/share/stgit/templates/covermail.tmpl').
45
46 All the subsequent e-mails appear as replies to the first e-mail sent
47 (either the preamble or the first patch). E-mails can be seen as
48 replies to a different e-mail by using the '--refid' option.
49
50 SMTP authentication is also possible with '--smtp-user' and
51 '--smtp-password' options, also available as configuration settings:
52 'smtpuser' and 'smtppassword'.
53
54 The template e-mail headers and body must be separated by
55 '%(endofheaders)s' variable, which is replaced by StGIT with
56 additional headers and a blank line. The patch e-mail template accepts
57 the following variables:
58
59   %(patch)s        - patch name
60   %(maintainer)s   - 'authname <authemail>' as read from the config file
61   %(shortdescr)s   - the first line of the patch description
62   %(longdescr)s    - the rest of the patch description, after the first line
63   %(endofheaders)s - delimiter between e-mail headers and body
64   %(diff)s         - unified diff of the patch
65   %(diffstat)s     - diff statistics
66   %(date)s         - current date/time
67   %(version)s      - ' version' string passed on the command line (or empty)
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   %(authname)s     - author's name
72   %(authemail)s    - author's email
73   %(authdate)s     - patch creation date
74   %(commname)s     - committer's name
75   %(commemail)s    - committer's e-mail
76
77 For the preamble e-mail template, only the %(maintainer)s, %(date)s,
78 %(endofheaders)s, %(version)s, %(patchnr)s, %(totalnr)s and %(number)s
79 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('--noreply',
94                        help = 'do not send subsequent messages as replies',
95                        action = 'store_true'),
96            make_option('-v', '--version', metavar = 'VERSION',
97                        help = 'add VERSION to the [PATCH ...] prefix'),
98            make_option('-t', '--template', metavar = 'FILE',
99                        help = 'use FILE as the message template'),
100            make_option('-c', '--cover', metavar = 'FILE',
101                        help = 'send FILE as the cover message'),
102            make_option('-e', '--edit',
103                        help = 'edit the cover message before sending',
104                        action = 'store_true'),
105            make_option('-s', '--sleep', type = 'int', metavar = 'SECONDS',
106                        help = 'sleep for SECONDS between e-mails sending'),
107            make_option('--refid',
108                        help = 'use REFID as the reference id'),
109            make_option('-u', '--smtp-user', metavar = 'USER',
110                        help = 'username for SMTP authentication'),
111            make_option('-p', '--smtp-password', metavar = 'PASSWORD',
112                        help = 'username for SMTP authentication'),
113            make_option('-b', '--branch',
114                        help = 'use BRANCH instead of the default one'),
115            make_option('-m', '--mbox',
116                        help = 'generate an mbox file instead of sending',
117                        action = 'store_true')]
118
119
120 def __get_maintainer():
121     """Return the 'authname <authemail>' string as read from the
122     configuration file
123     """
124     if config.has_option('stgit', 'authname') \
125            and config.has_option('stgit', 'authemail'):
126         return '%s <%s>' % (config.get('stgit', 'authname'),
127                             config.get('stgit', 'authemail'))
128     else:
129         return None
130
131 def __parse_addresses(addresses):
132     """Return a two elements tuple: (from, [to])
133     """
134     def __addr_list(addrs):
135         m = re.search('[^@\s<,]+@[^>\s,]+', addrs);
136         if (m == None):
137             return []
138         return [ m.group() ] + __addr_list(addrs[m.end():])
139
140     from_addr_list = []
141     to_addr_list = []
142     for line in addresses.split('\n'):
143         if re.match('from:\s+', line, re.I):
144             from_addr_list += __addr_list(line)
145         elif re.match('(to|cc|bcc):\s+', line, re.I):
146             to_addr_list += __addr_list(line)
147
148     if len(from_addr_list) == 0:
149         raise CmdException, 'No "From" address'
150     if len(to_addr_list) == 0:
151         raise CmdException, 'No "To/Cc/Bcc" addresses'
152
153     return (from_addr_list[0], to_addr_list)
154
155 def __send_message(smtpserver, from_addr, to_addr_list, msg, sleep,
156                    smtpuser, smtppassword):
157     """Send the message using the given SMTP server
158     """
159     try:
160         s = smtplib.SMTP(smtpserver)
161     except Exception, err:
162         raise CmdException, str(err)
163
164     s.set_debuglevel(0)
165     try:
166         if smtpuser and smtppassword:
167             s.ehlo()
168             s.login(smtpuser, smtppassword)
169
170         s.sendmail(from_addr, to_addr_list, msg)
171         # give recipients a chance of receiving patches in the correct order
172         time.sleep(sleep)
173     except Exception, err:
174         raise CmdException, str(err)
175
176     s.quit()
177
178 def __write_mbox(from_addr, msg):
179     """Write an mbox like file to the standard output
180     """
181     r = re.compile('^From ', re.M)
182     msg = r.sub('>\g<0>', msg)
183
184     print 'From %s %s' % (from_addr, datetime.datetime.today().ctime())
185     print msg
186     print
187
188 def __build_address_headers(options):
189     headers_end = ''
190     if options.to:
191         headers_end += 'To: '
192         for to in options.to:
193             headers_end += '%s, ' % to
194         headers_end = headers_end[:-2] + '\n'
195     if options.cc:
196         headers_end += 'Cc: '
197         for cc in options.cc:
198             headers_end += '%s, ' % cc
199         headers_end = headers_end[:-2] + '\n'
200     if options.bcc:
201         headers_end += 'Bcc: '
202         for bcc in options.bcc:
203             headers_end += '%s, ' % bcc
204         headers_end = headers_end[:-2] + '\n'
205     return headers_end
206
207 def __build_extra_headers():
208     """Build extra headers like content-type etc.
209     """
210     headers  = 'Content-Type: text/plain; charset=utf-8; format=fixed\n'
211     headers += 'Content-Transfer-Encoding: 8bit\n'
212     headers += 'User-Agent: StGIT/%s\n' % version.version
213
214     return headers
215
216 def __build_cover(tmpl, total_nr, msg_id, options):
217     """Build the cover message (series description) to be sent via SMTP
218     """
219     maintainer = __get_maintainer()
220     if not maintainer:
221         maintainer = ''
222
223     headers_end = __build_address_headers(options)
224     headers_end += 'Message-Id: %s\n' % msg_id
225     if options.refid:
226         headers_end += "In-Reply-To: %s\n" % options.refid
227         headers_end += "References: %s\n" % options.refid
228     headers_end += __build_extra_headers()
229
230     if options.version:
231         version_str = ' %s' % options.version
232     else:
233         version_str = ''
234
235     total_nr_str = str(total_nr)
236     patch_nr_str = '0'.zfill(len(total_nr_str))
237     if total_nr > 1:
238         number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
239     else:
240         number_str = ''
241
242     tmpl_dict = {'maintainer':   maintainer,
243                  'endofheaders': headers_end,
244                  'date':         email.Utils.formatdate(localtime = True),
245                  'version':      version_str,
246                  'patchnr':      patch_nr_str,
247                  'totalnr':      total_nr_str,
248                  'number':       number_str}
249
250     try:
251         msg = tmpl % tmpl_dict
252     except KeyError, err:
253         raise CmdException, 'Unknown patch template variable: %s' \
254               % err
255     except TypeError:
256         raise CmdException, 'Only "%(name)s" variables are ' \
257               'supported in the patch template'
258
259     if options.edit:
260         fname = '.stgitmail.txt'
261
262         # create the initial file
263         f = file(fname, 'w+')
264         f.write(msg)
265         f.close()
266
267         # the editor
268         if config.has_option('stgit', 'editor'):
269             editor = config.get('stgit', 'editor')
270         elif 'EDITOR' in os.environ:
271             editor = os.environ['EDITOR']
272         else:
273             editor = 'vi'
274         editor += ' %s' % fname
275
276         print 'Invoking the editor: "%s"...' % editor,
277         sys.stdout.flush()
278         print 'done (exit code: %d)' % os.system(editor)
279
280         # read the message back
281         f = file(fname)
282         msg = f.read()
283         f.close()
284
285     return msg.strip('\n')
286
287 def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
288     """Build the message to be sent via SMTP
289     """
290     p = crt_series.get_patch(patch)
291
292     descr = p.get_description().strip()
293     descr_lines = descr.split('\n')
294
295     short_descr = descr_lines[0].rstrip()
296     long_descr = reduce(lambda x, y: x + '\n' + y,
297                         descr_lines[1:], '').lstrip()
298
299     maintainer = __get_maintainer()
300     if not maintainer:
301         maintainer = '%s <%s>' % (p.get_commname(), p.get_commemail())
302
303     headers_end = __build_address_headers(options)
304     headers_end += 'Message-Id: %s\n' % msg_id
305     if ref_id:
306         headers_end += "In-Reply-To: %s\n" % ref_id
307         headers_end += "References: %s\n" % ref_id
308     headers_end += __build_extra_headers()
309
310     if options.version:
311         version_str = ' %s' % options.version
312     else:
313         version_str = ''
314
315     total_nr_str = str(total_nr)
316     patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
317     if total_nr > 1:
318         number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
319     else:
320         number_str = ''
321
322     tmpl_dict = {'patch':        patch,
323                  'maintainer':   maintainer,
324                  'shortdescr':   short_descr,
325                  'longdescr':    long_descr,
326                  'endofheaders': headers_end,
327                  'diff':         git.diff(rev1 = git_id('%s//bottom' % patch),
328                                           rev2 = git_id('%s//top' % patch)),
329                  'diffstat':     git.diffstat(rev1 = git_id('%s//bottom'%patch),
330                                               rev2 = git_id('%s//top' % patch)),
331                  'date':         email.Utils.formatdate(localtime = True),
332                  'version':      version_str,
333                  'patchnr':      patch_nr_str,
334                  'totalnr':      total_nr_str,
335                  'number':       number_str,
336                  'authname':     p.get_authname(),
337                  'authemail':    p.get_authemail(),
338                  'authdate':     p.get_authdate(),
339                  'commname':     p.get_commname(),
340                  'commemail':    p.get_commemail()}
341     for key in tmpl_dict:
342         if not tmpl_dict[key]:
343             tmpl_dict[key] = ''
344
345     try:
346         msg = tmpl % tmpl_dict
347     except KeyError, err:
348         raise CmdException, 'Unknown patch template variable: %s' \
349               % err
350     except TypeError:
351         raise CmdException, 'Only "%(name)s" variables are ' \
352               'supported in the patch template'
353
354     return msg.strip('\n')
355
356 def func(parser, options, args):
357     """Send the patches by e-mail using the patchmail.tmpl file as
358     a template
359     """
360     smtpserver = config.get('stgit', 'smtpserver')
361
362     smtpuser = None
363     smtppassword = None
364     if config.has_option('stgit', 'smtpuser'):
365         smtpuser = config.get('stgit', 'smtpuser')
366     if config.has_option('stgit', 'smtppassword'):
367         smtppassword = config.get('stgit', 'smtppassword')
368
369     applied = crt_series.get_applied()
370
371     if options.all:
372         patches = applied
373     elif len(args) >= 1:
374         patches = parse_patches(args, applied)
375     else:
376         raise CmdException, 'Incorrect options. Unknown patches to send'
377
378     if options.smtp_password:
379         smtppassword = options.smtp_password
380
381     if options.smtp_user:
382         smtpuser = options.smtp_user
383
384     if (smtppassword and not smtpuser):
385         raise CmdException, 'SMTP password supplied, username needed'
386     if (smtpuser and not smtppassword):
387         raise CmdException, 'SMTP username supplied, password needed'
388
389     total_nr = len(patches)
390     if total_nr == 0:
391         raise CmdException, 'No patches to send'
392
393     if options.noreply:
394         ref_id = None
395     else:
396         ref_id = options.refid
397
398     if options.sleep != None:
399         sleep = options.sleep
400     else:
401         sleep = config.getint('stgit', 'smtpdelay')
402
403     # send the cover message (if any)
404     if options.cover or options.edit:
405         # find the template file
406         if options.cover:
407             tmpl = file(options.cover).read()
408         else:
409             tmpl = templates.get_template('covermail.tmpl')
410             if not tmpl:
411                 raise CmdException, 'No cover message template file found'
412
413         msg_id = email.Utils.make_msgid('stgit')
414         msg = __build_cover(tmpl, total_nr, msg_id, options)
415         from_addr, to_addr_list = __parse_addresses(msg)
416
417         # subsequent e-mails are seen as replies to the first one
418         if not options.noreply:
419             ref_id = msg_id
420
421         if options.mbox:
422             __write_mbox(from_addr, msg)
423         else:
424             print 'Sending the cover message...',
425             sys.stdout.flush()
426             __send_message(smtpserver, from_addr, to_addr_list, msg, sleep,
427                            smtpuser, smtppassword)
428             print 'done'
429
430     # send the patches
431     if options.template:
432         tmpl = file(options.template).read()
433     else:
434         tmpl = templates.get_template('patchmail.tmpl')
435         if not tmpl:
436             raise CmdException, 'No e-mail template file found'
437
438     for (p, patch_nr) in zip(patches, range(1, len(patches) + 1)):
439         msg_id = email.Utils.make_msgid('stgit')
440         msg = __build_message(tmpl, p, patch_nr, total_nr, msg_id, ref_id,
441                               options)
442         from_addr, to_addr_list = __parse_addresses(msg)
443
444         # subsequent e-mails are seen as replies to the first one
445         if not options.noreply and not ref_id:
446             ref_id = msg_id
447
448         if options.mbox:
449             __write_mbox(from_addr, msg)
450         else:
451             print 'Sending patch "%s"...' % p,
452             sys.stdout.flush()
453             __send_message(smtpserver, from_addr, to_addr_list, msg, sleep,
454                            smtpuser, smtppassword)
455             print 'done'