2004-05-09 00:46:42 -03:00
|
|
|
|
# Copyright (C) 2001-2004 Python Software Foundation
|
|
|
|
|
# Author: Barry Warsaw, Thomas Wouters, Anthony Baxter
|
|
|
|
|
# Contact: email-sig@python.org
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2004-05-09 00:46:42 -03:00
|
|
|
|
"""A parser of RFC 2822 and MIME email messages."""
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2002-05-19 20:51:50 -03:00
|
|
|
|
import re
|
2001-09-23 00:17:28 -03:00
|
|
|
|
from cStringIO import StringIO
|
2004-05-09 00:46:42 -03:00
|
|
|
|
from email.FeedParser import FeedParser
|
|
|
|
|
from email.Message import Message
|
2002-09-28 17:44:58 -03:00
|
|
|
|
|
2003-03-06 01:25:35 -04:00
|
|
|
|
NLCRE = re.compile('\r\n|\r|\n')
|
2002-10-07 14:27:35 -03:00
|
|
|
|
|
2002-09-28 17:44:58 -03:00
|
|
|
|
|
2001-10-04 14:05:11 -03:00
|
|
|
|
|
2001-09-23 00:17:28 -03:00
|
|
|
|
class Parser:
|
2004-05-09 00:46:42 -03:00
|
|
|
|
def __init__(self, _class=Message, strict=False):
|
2001-09-23 00:17:28 -03:00
|
|
|
|
"""Parser of RFC 2822 and MIME email messages.
|
|
|
|
|
|
|
|
|
|
Creates an in-memory object tree representing the email message, which
|
|
|
|
|
can then be manipulated and turned over to a Generator to return the
|
|
|
|
|
textual representation of the message.
|
|
|
|
|
|
|
|
|
|
The string must be formatted as a block of RFC 2822 headers and header
|
|
|
|
|
continuation lines, optionally preceeded by a `Unix-from' header. The
|
|
|
|
|
header block is terminated either by the end of the string or by a
|
|
|
|
|
blank line.
|
|
|
|
|
|
|
|
|
|
_class is the class to instantiate for new message objects when they
|
|
|
|
|
must be created. This class must have a constructor that can take
|
|
|
|
|
zero arguments. Default is Message.Message.
|
2002-07-08 23:50:02 -03:00
|
|
|
|
|
|
|
|
|
Optional strict tells the parser to be strictly RFC compliant or to be
|
|
|
|
|
more forgiving in parsing of ill-formatted MIME documents. When
|
|
|
|
|
non-strict mode is used, the parser will try to make up for missing or
|
|
|
|
|
erroneous boundaries and other peculiarities seen in the wild.
|
2002-07-19 19:25:34 -03:00
|
|
|
|
Default is non-strict parsing.
|
2001-09-23 00:17:28 -03:00
|
|
|
|
"""
|
|
|
|
|
self._class = _class
|
|
|
|
|
|
2002-09-28 17:44:58 -03:00
|
|
|
|
def parse(self, fp, headersonly=False):
|
2002-09-30 17:07:22 -03:00
|
|
|
|
"""Create a message structure from the data in a file.
|
|
|
|
|
|
|
|
|
|
Reads all the data from the file and returns the root of the message
|
|
|
|
|
structure. Optional headersonly is a flag specifying whether to stop
|
|
|
|
|
parsing after reading the headers or not. The default is False,
|
|
|
|
|
meaning it parses the entire contents of the file.
|
|
|
|
|
"""
|
2004-05-09 00:46:42 -03:00
|
|
|
|
feedparser = FeedParser(self._class)
|
|
|
|
|
if headersonly:
|
|
|
|
|
feedparser._set_headersonly()
|
|
|
|
|
while True:
|
|
|
|
|
data = fp.read(8192)
|
|
|
|
|
if not data:
|
|
|
|
|
break
|
|
|
|
|
feedparser.feed(data)
|
|
|
|
|
return feedparser.close()
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2002-09-28 17:44:58 -03:00
|
|
|
|
def parsestr(self, text, headersonly=False):
|
2002-09-30 17:07:22 -03:00
|
|
|
|
"""Create a message structure from a string.
|
|
|
|
|
|
|
|
|
|
Returns the root of the message structure. Optional headersonly is a
|
|
|
|
|
flag specifying whether to stop parsing after reading the headers or
|
|
|
|
|
not. The default is False, meaning it parses the entire contents of
|
|
|
|
|
the file.
|
|
|
|
|
"""
|
2002-07-08 23:50:02 -03:00
|
|
|
|
return self.parse(StringIO(text), headersonly=headersonly)
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2001-10-11 12:43:00 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HeaderParser(Parser):
|
2004-05-09 00:46:42 -03:00
|
|
|
|
def parse(self, fp, headersonly=True):
|
|
|
|
|
return Parser.parse(self, fp, True)
|
2001-10-11 12:43:00 -03:00
|
|
|
|
|
2004-05-09 00:46:42 -03:00
|
|
|
|
def parsestr(self, text, headersonly=True):
|
|
|
|
|
return Parser.parsestr(self, text, True)
|