policy.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. """This will be the home for the policy that hooks in the new
  2. code that adds all the email6 features.
  3. """
  4. from email._policybase import Policy, Compat32, compat32, _extend_docstrings
  5. from email.utils import _has_surrogates
  6. from email.headerregistry import HeaderRegistry as HeaderRegistry
  7. from email.contentmanager import raw_data_manager
  8. __all__ = [
  9. 'Compat32',
  10. 'compat32',
  11. 'Policy',
  12. 'EmailPolicy',
  13. 'default',
  14. 'strict',
  15. 'SMTP',
  16. 'HTTP',
  17. ]
  18. @_extend_docstrings
  19. class EmailPolicy(Policy):
  20. """+
  21. PROVISIONAL
  22. The API extensions enabled by this policy are currently provisional.
  23. Refer to the documentation for details.
  24. This policy adds new header parsing and folding algorithms. Instead of
  25. simple strings, headers are custom objects with custom attributes
  26. depending on the type of the field. The folding algorithm fully
  27. implements RFCs 2047 and 5322.
  28. In addition to the settable attributes listed above that apply to
  29. all Policies, this policy adds the following additional attributes:
  30. utf8 -- if False (the default) message headers will be
  31. serialized as ASCII, using encoded words to encode
  32. any non-ASCII characters in the source strings. If
  33. True, the message headers will be serialized using
  34. utf8 and will not contain encoded words (see RFC
  35. 6532 for more on this serialization format).
  36. refold_source -- if the value for a header in the Message object
  37. came from the parsing of some source, this attribute
  38. indicates whether or not a generator should refold
  39. that value when transforming the message back into
  40. stream form. The possible values are:
  41. none -- all source values use original folding
  42. long -- source values that have any line that is
  43. longer than max_line_length will be
  44. refolded
  45. all -- all values are refolded.
  46. The default is 'long'.
  47. header_factory -- a callable that takes two arguments, 'name' and
  48. 'value', where 'name' is a header field name and
  49. 'value' is an unfolded header field value, and
  50. returns a string-like object that represents that
  51. header. A default header_factory is provided that
  52. understands some of the RFC5322 header field types.
  53. (Currently address fields and date fields have
  54. special treatment, while all other fields are
  55. treated as unstructured. This list will be
  56. completed before the extension is marked stable.)
  57. content_manager -- an object with at least two methods: get_content
  58. and set_content. When the get_content or
  59. set_content method of a Message object is called,
  60. it calls the corresponding method of this object,
  61. passing it the message object as its first argument,
  62. and any arguments or keywords that were passed to
  63. it as additional arguments. The default
  64. content_manager is
  65. :data:`~email.contentmanager.raw_data_manager`.
  66. """
  67. utf8 = False
  68. refold_source = 'long'
  69. header_factory = HeaderRegistry()
  70. content_manager = raw_data_manager
  71. def __init__(self, **kw):
  72. # Ensure that each new instance gets a unique header factory
  73. # (as opposed to clones, which share the factory).
  74. if 'header_factory' not in kw:
  75. object.__setattr__(self, 'header_factory', HeaderRegistry())
  76. super().__init__(**kw)
  77. def header_max_count(self, name):
  78. """+
  79. The implementation for this class returns the max_count attribute from
  80. the specialized header class that would be used to construct a header
  81. of type 'name'.
  82. """
  83. return self.header_factory[name].max_count
  84. # The logic of the next three methods is chosen such that it is possible to
  85. # switch a Message object between a Compat32 policy and a policy derived
  86. # from this class and have the results stay consistent. This allows a
  87. # Message object constructed with this policy to be passed to a library
  88. # that only handles Compat32 objects, or to receive such an object and
  89. # convert it to use the newer style by just changing its policy. It is
  90. # also chosen because it postpones the relatively expensive full rfc5322
  91. # parse until as late as possible when parsing from source, since in many
  92. # applications only a few headers will actually be inspected.
  93. def header_source_parse(self, sourcelines):
  94. """+
  95. The name is parsed as everything up to the ':' and returned unmodified.
  96. The value is determined by stripping leading whitespace off the
  97. remainder of the first line, joining all subsequent lines together, and
  98. stripping any trailing carriage return or linefeed characters. (This
  99. is the same as Compat32).
  100. """
  101. name, value = sourcelines[0].split(':', 1)
  102. value = value.lstrip(' \t') + ''.join(sourcelines[1:])
  103. return (name, value.rstrip('\r\n'))
  104. def header_store_parse(self, name, value):
  105. """+
  106. The name is returned unchanged. If the input value has a 'name'
  107. attribute and it matches the name ignoring case, the value is returned
  108. unchanged. Otherwise the name and value are passed to header_factory
  109. method, and the resulting custom header object is returned as the
  110. value. In this case a ValueError is raised if the input value contains
  111. CR or LF characters.
  112. """
  113. if hasattr(value, 'name') and value.name.lower() == name.lower():
  114. return (name, value)
  115. if isinstance(value, str) and len(value.splitlines())>1:
  116. raise ValueError("Header values may not contain linefeed "
  117. "or carriage return characters")
  118. return (name, self.header_factory(name, value))
  119. def header_fetch_parse(self, name, value):
  120. """+
  121. If the value has a 'name' attribute, it is returned to unmodified.
  122. Otherwise the name and the value with any linesep characters removed
  123. are passed to the header_factory method, and the resulting custom
  124. header object is returned. Any surrogateescaped bytes get turned
  125. into the unicode unknown-character glyph.
  126. """
  127. if hasattr(value, 'name'):
  128. return value
  129. return self.header_factory(name, ''.join(value.splitlines()))
  130. def fold(self, name, value):
  131. """+
  132. Header folding is controlled by the refold_source policy setting. A
  133. value is considered to be a 'source value' if and only if it does not
  134. have a 'name' attribute (having a 'name' attribute means it is a header
  135. object of some sort). If a source value needs to be refolded according
  136. to the policy, it is converted into a custom header object by passing
  137. the name and the value with any linesep characters removed to the
  138. header_factory method. Folding of a custom header object is done by
  139. calling its fold method with the current policy.
  140. Source values are split into lines using splitlines. If the value is
  141. not to be refolded, the lines are rejoined using the linesep from the
  142. policy and returned. The exception is lines containing non-ascii
  143. binary data. In that case the value is refolded regardless of the
  144. refold_source setting, which causes the binary data to be CTE encoded
  145. using the unknown-8bit charset.
  146. """
  147. return self._fold(name, value, refold_binary=True)
  148. def fold_binary(self, name, value):
  149. """+
  150. The same as fold if cte_type is 7bit, except that the returned value is
  151. bytes.
  152. If cte_type is 8bit, non-ASCII binary data is converted back into
  153. bytes. Headers with binary data are not refolded, regardless of the
  154. refold_header setting, since there is no way to know whether the binary
  155. data consists of single byte characters or multibyte characters.
  156. If utf8 is true, headers are encoded to utf8, otherwise to ascii with
  157. non-ASCII unicode rendered as encoded words.
  158. """
  159. folded = self._fold(name, value, refold_binary=self.cte_type=='7bit')
  160. charset = 'utf8' if self.utf8 else 'ascii'
  161. return folded.encode(charset, 'surrogateescape')
  162. def _fold(self, name, value, refold_binary=False):
  163. if hasattr(value, 'name'):
  164. return value.fold(policy=self)
  165. maxlen = self.max_line_length if self.max_line_length else float('inf')
  166. lines = value.splitlines()
  167. refold = (self.refold_source == 'all' or
  168. self.refold_source == 'long' and
  169. (lines and len(lines[0])+len(name)+2 > maxlen or
  170. any(len(x) > maxlen for x in lines[1:])))
  171. if refold or refold_binary and _has_surrogates(value):
  172. return self.header_factory(name, ''.join(lines)).fold(policy=self)
  173. return name + ': ' + self.linesep.join(lines) + self.linesep
  174. default = EmailPolicy()
  175. # Make the default policy use the class default header_factory
  176. del default.header_factory
  177. strict = default.clone(raise_on_defect=True)
  178. SMTP = default.clone(linesep='\r\n')
  179. HTTP = default.clone(linesep='\r\n', max_line_length=None)
  180. SMTPUTF8 = SMTP.clone(utf8=True)