blob: 30bf9162014c3b81970dd9089d8dd277ba965fb9 [file] [log] [blame]
Guido van Rossum8b3febe2007-08-30 01:15:14 +00001# Copyright (C) 2001-2006 Python Software Foundation
2# Author: Ben Gertzfield
3# Contact: email-sig@python.org
4
5"""Quoted-printable content transfer encoding per RFCs 2045-2047.
6
7This module handles the content transfer encoding method defined in RFC 2045
8to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
9safely encode text that is in a character set similar to the 7-bit US ASCII
10character set, but that includes some 8-bit characters that are normally not
11allowed in email bodies or headers.
12
13Quoted-printable is very space-inefficient for encoding binary files; use the
Amaury Forgeot d'Arc1c25de62009-07-12 16:43:19 +000014email.base64mime module for that instead.
Guido van Rossum8b3febe2007-08-30 01:15:14 +000015
16This module provides an interface to encode and decode both headers and bodies
17with quoted-printable encoding.
18
19RFC 2045 defines a method for including character set information in an
20`encoded-word' in a header. This method is commonly used for 8-bit real names
21in To:/From:/Cc: etc. fields, as well as Subject: lines.
22
23This module does not do the line wrapping or end-of-line character
24conversion necessary for proper internationalized headers; it only
25does dumb encoding and decoding. To deal with the various line
Amaury Forgeot d'Arc1c25de62009-07-12 16:43:19 +000026wrapping issues, use the email.header module.
Guido van Rossum8b3febe2007-08-30 01:15:14 +000027"""
28
29__all__ = [
30 'body_decode',
31 'body_encode',
Guido van Rossum9604e662007-08-30 03:46:43 +000032 'body_length',
Guido van Rossum8b3febe2007-08-30 01:15:14 +000033 'decode',
34 'decodestring',
Guido van Rossum8b3febe2007-08-30 01:15:14 +000035 'header_decode',
36 'header_encode',
Guido van Rossum9604e662007-08-30 03:46:43 +000037 'header_length',
Guido van Rossum8b3febe2007-08-30 01:15:14 +000038 'quote',
39 'unquote',
40 ]
41
42import re
R David Murrayb938c8c2011-03-24 12:19:26 -040043import io
Guido van Rossum8b3febe2007-08-30 01:15:14 +000044
45from string import ascii_letters, digits, hexdigits
Guido van Rossum8b3febe2007-08-30 01:15:14 +000046
47CRLF = '\r\n'
48NL = '\n'
49EMPTYSTRING = ''
50
Guido van Rossum9604e662007-08-30 03:46:43 +000051# Build a mapping of octets to the expansion of that octet. Since we're only
52# going to have 256 of these things, this isn't terribly inefficient
53# space-wise. Remember that headers and bodies have different sets of safe
54# characters. Initialize both maps with the full expansion, and then override
55# the safe bytes with the more compact form.
R David Murray2313e152014-01-13 13:19:21 -050056_QUOPRI_MAP = ['=%02X' % c for c in range(256)]
57_QUOPRI_HEADER_MAP = _QUOPRI_MAP[:]
58_QUOPRI_BODY_MAP = _QUOPRI_MAP[:]
Guido van Rossum8b3febe2007-08-30 01:15:14 +000059
Guido van Rossum9604e662007-08-30 03:46:43 +000060# Safe header bytes which need no encoding.
Barry Warsaw2cc1f6d2007-08-30 14:28:55 +000061for c in b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii'):
Guido van Rossum9604e662007-08-30 03:46:43 +000062 _QUOPRI_HEADER_MAP[c] = chr(c)
63# Headers have one other special encoding; spaces become underscores.
64_QUOPRI_HEADER_MAP[ord(' ')] = '_'
Barry Warsaw8b3d6592007-08-30 02:10:49 +000065
Guido van Rossum9604e662007-08-30 03:46:43 +000066# Safe body bytes which need no encoding.
67for c in (b' !"#$%&\'()*+,-./0123456789:;<>'
68 b'?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`'
69 b'abcdefghijklmnopqrstuvwxyz{|}~\t'):
70 _QUOPRI_BODY_MAP[c] = chr(c)
Guido van Rossum8b3febe2007-08-30 01:15:14 +000071
72
Antoine Pitroufd036452008-08-19 17:56:33 +000073
Guido van Rossum8b3febe2007-08-30 01:15:14 +000074# Helpers
Guido van Rossum9604e662007-08-30 03:46:43 +000075def header_check(octet):
76 """Return True if the octet should be escaped with header quopri."""
77 return chr(octet) != _QUOPRI_HEADER_MAP[octet]
Guido van Rossum8b3febe2007-08-30 01:15:14 +000078
79
Guido van Rossum9604e662007-08-30 03:46:43 +000080def body_check(octet):
81 """Return True if the octet should be escaped with body quopri."""
82 return chr(octet) != _QUOPRI_BODY_MAP[octet]
Guido van Rossum8b3febe2007-08-30 01:15:14 +000083
84
Guido van Rossum9604e662007-08-30 03:46:43 +000085def header_length(bytearray):
86 """Return a header quoted-printable encoding length.
Guido van Rossum8b3febe2007-08-30 01:15:14 +000087
88 Note that this does not include any RFC 2047 chrome added by
89 `header_encode()`.
Guido van Rossum9604e662007-08-30 03:46:43 +000090
91 :param bytearray: An array of bytes (a.k.a. octets).
92 :return: The length in bytes of the byte array when it is encoded with
93 quoted-printable for headers.
Guido van Rossum8b3febe2007-08-30 01:15:14 +000094 """
Guido van Rossum9604e662007-08-30 03:46:43 +000095 return sum(len(_QUOPRI_HEADER_MAP[octet]) for octet in bytearray)
Guido van Rossum8b3febe2007-08-30 01:15:14 +000096
97
Guido van Rossum9604e662007-08-30 03:46:43 +000098def body_length(bytearray):
99 """Return a body quoted-printable encoding length.
100
101 :param bytearray: An array of bytes (a.k.a. octets).
102 :return: The length in bytes of the byte array when it is encoded with
103 quoted-printable for bodies.
104 """
105 return sum(len(_QUOPRI_BODY_MAP[octet]) for octet in bytearray)
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000106
107
108def _max_append(L, s, maxlen, extra=''):
109 if not isinstance(s, str):
110 s = chr(s)
111 if not L:
112 L.append(s.lstrip())
113 elif len(L[-1]) + len(s) <= maxlen:
114 L[-1] += extra + s
115 else:
116 L.append(s.lstrip())
117
118
119def unquote(s):
120 """Turn a string in the form =AB to the ASCII character with value 0xab"""
121 return chr(int(s[1:3], 16))
122
123
124def quote(c):
R David Murray2313e152014-01-13 13:19:21 -0500125 return _QUOPRI_MAP[ord(c)]
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000126
Antoine Pitroufd036452008-08-19 17:56:33 +0000127
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000128def header_encode(header_bytes, charset='iso-8859-1'):
129 """Encode a single header line with quoted-printable (like) encoding.
130
131 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
132 used specifically for email header fields to allow charsets with mostly 7
133 bit characters (and some 8 bit) to remain more or less readable in non-RFC
134 2045 aware mail clients.
135
136 charset names the character set to use in the RFC 2046 header. It
137 defaults to iso-8859-1.
138 """
R David Murraycafd79d2011-03-23 15:25:55 -0400139 # Return empty headers as an empty string.
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000140 if not header_bytes:
R David Murraycafd79d2011-03-23 15:25:55 -0400141 return ''
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000142 # Iterate over every byte, encoding if necessary.
R David Murray2313e152014-01-13 13:19:21 -0500143 encoded = header_bytes.decode('latin1').translate(_QUOPRI_HEADER_MAP)
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000144 # Now add the RFC chrome to each encoded chunk and glue the chunks
145 # together.
R David Murray2313e152014-01-13 13:19:21 -0500146 return '=?%s?q?%s?=' % (charset, encoded)
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000147
148
R David Murray2313e152014-01-13 13:19:21 -0500149_QUOPRI_BODY_ENCODE_MAP = _QUOPRI_BODY_MAP[:]
150for c in b'\r\n':
151 _QUOPRI_BODY_ENCODE_MAP[c] = chr(c)
Antoine Pitroufd036452008-08-19 17:56:33 +0000152
Guido van Rossum9604e662007-08-30 03:46:43 +0000153def body_encode(body, maxlinelen=76, eol=NL):
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000154 """Encode with quoted-printable, wrapping at maxlinelen characters.
155
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000156 Each line of encoded text will end with eol, which defaults to "\\n". Set
157 this to "\\r\\n" if you will be using the result of this function directly
158 in an email.
159
R David Murrayb938c8c2011-03-24 12:19:26 -0400160 Each line will be wrapped at, at most, maxlinelen characters before the
161 eol string (maxlinelen defaults to 76 characters, the maximum value
162 permitted by RFC 2045). Long lines will have the 'soft line break'
163 quoted-printable character "=" appended to them, so the decoded text will
164 be identical to the original text.
165
166 The minimum maxlinelen is 4 to have room for a quoted character ("=XX")
167 followed by a soft line break. Smaller values will generate a
168 ValueError.
169
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000170 """
R David Murrayb938c8c2011-03-24 12:19:26 -0400171
172 if maxlinelen < 4:
173 raise ValueError("maxlinelen must be at least 4")
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000174 if not body:
175 return body
176
R David Murray2313e152014-01-13 13:19:21 -0500177 # quote speacial characters
178 body = body.translate(_QUOPRI_BODY_ENCODE_MAP)
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000179
R David Murray2313e152014-01-13 13:19:21 -0500180 soft_break = '=' + eol
181 # leave space for the '=' at the end of a line
182 maxlinelen1 = maxlinelen - 1
R David Murrayb938c8c2011-03-24 12:19:26 -0400183
R David Murray2313e152014-01-13 13:19:21 -0500184 encoded_body = []
185 append = encoded_body.append
R David Murrayb938c8c2011-03-24 12:19:26 -0400186
R David Murray2313e152014-01-13 13:19:21 -0500187 for line in body.splitlines():
188 # break up the line into pieces no longer than maxlinelen - 1
189 start = 0
190 laststart = len(line) - 1 - maxlinelen
191 while start <= laststart:
192 stop = start + maxlinelen1
193 # make sure we don't break up an escape sequence
194 if line[stop - 2] == '=':
195 append(line[start:stop - 1])
196 start = stop - 2
197 elif line[stop - 1] == '=':
198 append(line[start:stop])
199 start = stop - 1
200 else:
201 append(line[start:stop] + '=')
202 start = stop
203
204 # handle rest of line, special case if line ends in whitespace
205 if line and line[-1] in ' \t':
206 room = start - laststart
207 if room >= 3:
208 # It's a whitespace character at end-of-line, and we have room
209 # for the three-character quoted encoding.
210 q = quote(line[-1])
211 elif room == 2:
212 # There's room for the whitespace character and a soft break.
213 q = line[-1] + soft_break
214 else:
215 # There's room only for a soft break. The quoted whitespace
216 # will be the only content on the subsequent line.
217 q = soft_break + quote(line[-1])
218 append(line[start:-1] + q)
219 else:
220 append(line[start:])
221
222 # add back final newline if present
223 if body[-1] in CRLF:
224 append('')
225
226 return eol.join(encoded_body)
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000227
228
Antoine Pitroufd036452008-08-19 17:56:33 +0000229
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000230# BAW: I'm not sure if the intent was for the signature of this function to be
231# the same as base64MIME.decode() or not...
232def decode(encoded, eol=NL):
233 """Decode a quoted-printable string.
234
235 Lines are separated with eol, which defaults to \\n.
236 """
237 if not encoded:
238 return encoded
239 # BAW: see comment in encode() above. Again, we're building up the
240 # decoded string with string concatenation, which could be done much more
241 # efficiently.
242 decoded = ''
243
244 for line in encoded.splitlines():
245 line = line.rstrip()
246 if not line:
247 decoded += eol
248 continue
249
250 i = 0
251 n = len(line)
252 while i < n:
253 c = line[i]
254 if c != '=':
255 decoded += c
256 i += 1
257 # Otherwise, c == "=". Are we at the end of the line? If so, add
258 # a soft line break.
259 elif i+1 == n:
260 i += 1
261 continue
262 # Decode if in form =AB
263 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
264 decoded += unquote(line[i:i+3])
265 i += 3
266 # Otherwise, not in form =AB, pass literally
267 else:
268 decoded += c
269 i += 1
270
271 if i == n:
272 decoded += eol
273 # Special case if original string did not end with eol
R David Murraycafd79d2011-03-23 15:25:55 -0400274 if encoded[-1] not in '\r\n' and decoded.endswith(eol):
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000275 decoded = decoded[:-1]
276 return decoded
277
278
279# For convenience and backwards compatibility w/ standard base64 module
280body_decode = decode
281decodestring = decode
282
283
Antoine Pitroufd036452008-08-19 17:56:33 +0000284
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000285def _unquote_match(match):
286 """Turn a match in the form =AB to the ASCII character with value 0xab"""
287 s = match.group(0)
288 return unquote(s)
289
290
291# Header decoding is done a bit differently
292def header_decode(s):
293 """Decode a string encoded with RFC 2045 MIME header `Q' encoding.
294
295 This function does not parse a full MIME header value encoded with
296 quoted-printable (like =?iso-8895-1?q?Hello_World?=) -- please use
Amaury Forgeot d'Arc1c25de62009-07-12 16:43:19 +0000297 the high level email.header class for that functionality.
Guido van Rossum8b3febe2007-08-30 01:15:14 +0000298 """
299 s = s.replace('_', ' ')
Ezio Melotti2a99d5d2013-07-06 17:16:04 +0200300 return re.sub(r'=[a-fA-F0-9]{2}', _unquote_match, s, flags=re.ASCII)