2001-09-23 00:17:28 -03:00
|
|
|
|
# Copyright (C) 2001 Python Software Foundation
|
|
|
|
|
# Author: barry@zope.com (Barry Warsaw)
|
|
|
|
|
|
|
|
|
|
"""Various types of useful iterators and generators.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from __future__ import generators
|
|
|
|
|
from cStringIO import StringIO
|
|
|
|
|
from types import StringType
|
|
|
|
|
|
|
|
|
|
|
2001-10-04 14:05:11 -03:00
|
|
|
|
|
2001-09-23 00:17:28 -03:00
|
|
|
|
def body_line_iterator(msg):
|
2001-09-26 02:35:47 -03:00
|
|
|
|
"""Iterate over the parts, returning string payloads line-by-line."""
|
2001-09-23 00:17:28 -03:00
|
|
|
|
for subpart in msg.walk():
|
|
|
|
|
payload = subpart.get_payload()
|
|
|
|
|
if type(payload) is StringType:
|
|
|
|
|
for line in StringIO(payload):
|
|
|
|
|
yield line
|
|
|
|
|
|
|
|
|
|
|
2001-10-04 14:05:11 -03:00
|
|
|
|
|
2001-09-26 02:35:47 -03:00
|
|
|
|
def typed_subpart_iterator(msg, maintype='text', subtype=None):
|
|
|
|
|
"""Iterate over the subparts with a given MIME type.
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2001-09-26 02:35:47 -03:00
|
|
|
|
Use `maintype' as the main MIME type to match against; this defaults to
|
|
|
|
|
"text". Optional `subtype' is the MIME subtype to match against; if
|
2001-09-23 00:17:28 -03:00
|
|
|
|
omitted, only the main type is matched.
|
|
|
|
|
"""
|
|
|
|
|
for subpart in msg.walk():
|
2001-10-15 01:38:22 -03:00
|
|
|
|
if subpart.get_main_type('text') == maintype:
|
|
|
|
|
if subtype is None or subpart.get_subtype('plain') == subtype:
|
2001-09-23 00:17:28 -03:00
|
|
|
|
yield subpart
|