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