Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Python

Parsing MIME-encoded data in an HTTP request

 

 

Python python RSS feed   Index | Next | Previous | View Threaded


rNOSPAMon at flownet

Jul 3, 2008, 1:59 PM

Post #1 of 8 (94 views)
Permalink
Parsing MIME-encoded data in an HTTP request

I'm writing a little HTTP server and need to parse request content that
is mime-encoded. All the MIME routines in the Python standard library
seem to have been subsumed into the email package, which makes this
operation a little awkward. It seems I have to do the following:

1. Extract the content-length header from the HTTP request and use that
to read the payload.

2. Stick some artificial-looking headers onto the beginning of this
payload to make it look like an email message (including the
content-type and content-transfer-encoding headers)

3. Parse the resulting string into a email message

That works, but it feels way too hackish for my tastes. Surely there
must be a better/more standard way of doing this?

Thanks,
rg
--
http://mail.python.org/mailman/listinfo/python-list


s0suk3 at gmail

Jul 3, 2008, 8:50 PM

Post #2 of 8 (87 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

On Jul 3, 3:59 pm, Ron Garret <rNOSPA...@flownet.com> wrote:
> I'm writing a little HTTP server and need to parse request content that
> is mime-encoded. All the MIME routines in the Python standard library
> seem to have been subsumed into the email package, which makes this
> operation a little awkward.

To deal with messages of that kind, I've seen modules such as
'rfc822', and 'mimetools' (which apparently builds itself from
'rfc822', so it might be more complete). There's also 'mimetypes', in
case you need to deal with file extensions and their corresponding
MIME media type.

> It seems I have to do the following:
>
> 1. Extract the content-length header from the HTTP request and use that
> to read the payload.
>
> 2. Stick some artificial-looking headers onto the beginning of this
> payload to make it look like an email message (including the
> content-type and content-transfer-encoding headers)
>
> 3. Parse the resulting string into a email message
>

Email? Why does an HTTP server need to build an email message?

I remember doing things like that some time ago when building an HTTP
server myself (http://code.google.com/p/sws-d/). Incidentally, I
resisted the urge to use much of the Python's library facilities (most
things are done manually; am I a knucklehead or what!? :). You might
wanna take a look to get some ideas.

Sebastian

--
http://mail.python.org/mailman/listinfo/python-list


rNOSPAMon at flownet

Jul 4, 2008, 12:17 AM

Post #3 of 8 (83 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

In article
<4834df8f-2cf8-434c-8c95-ff53024766c8[at]p25g2000hsf.googlegroups.com>,
s0suk3[at]gmail.com wrote:

> On Jul 3, 3:59 pm, Ron Garret <rNOSPA...@flownet.com> wrote:
> > I'm writing a little HTTP server and need to parse request content that
> > is mime-encoded. All the MIME routines in the Python standard library
> > seem to have been subsumed into the email package, which makes this
> > operation a little awkward.
>
> To deal with messages of that kind, I've seen modules such as
> 'rfc822', and 'mimetools' (which apparently builds itself from
> 'rfc822', so it might be more complete). There's also 'mimetypes', in
> case you need to deal with file extensions and their corresponding
> MIME media type.

>From the mimetools docs:

"Deprecated since release 2.3. The email package should be used in
preference to the module. This module is present only to maintain
backward compatibility."

>
> > It seems I have to do the following:
> >
> > 1. Extract the content-length header from the HTTP request and use that
> > to read the payload.
> >
> > 2. Stick some artificial-looking headers onto the beginning of this
> > payload to make it look like an email message (including the
> > content-type and content-transfer-encoding headers)
> >
> > 3. Parse the resulting string into a email message
> >
>
> Email? Why does an HTTP server need to build an email message?

It shouldn't. That's my whole point. But see the docs excerpt above.

> I remember doing things like that some time ago when building an HTTP
> server myself (http://code.google.com/p/sws-d/). Incidentally, I
> resisted the urge to use much of the Python's library facilities (most
> things are done manually; am I a knucklehead or what!? :). You might
> wanna take a look to get some ideas.

I'd much prefer not to reinvent this particular wheel.

rg
--
http://mail.python.org/mailman/listinfo/python-list


michael at stroeder

Jul 4, 2008, 12:49 AM

Post #4 of 8 (80 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

Ron Garret wrote:
> I'm writing a little HTTP server and need to parse request content that
> is mime-encoded. All the MIME routines in the Python standard library
> seem to have been subsumed into the email package, which makes this
> operation a little awkward.

How about using cgi.parse_multipart()?

Ciao, Michael.
--
http://mail.python.org/mailman/listinfo/python-list


rNOSPAMon at flownet

Jul 4, 2008, 3:30 PM

Post #5 of 8 (79 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

In article <3a11k5-al7.ln1[at]nb2.stroeder.com>,
Michael Ströder <michael[at]stroeder.com> wrote:

> Ron Garret wrote:
> > I'm writing a little HTTP server and need to parse request content that
> > is mime-encoded. All the MIME routines in the Python standard library
> > seem to have been subsumed into the email package, which makes this
> > operation a little awkward.
>
> How about using cgi.parse_multipart()?
>
> Ciao, Michael.

Unfortunately cgi.parse_multipart doesn't handle nested multiparts,
which the requests I'm getting have. You have to use a FieldStorage
object to do that, and that only works if you're actually in a cgi
environment, which I am not. The server responds to these requests
directly.

Anyway, thanks for the idea.

rg


rNOSPAMon at flownet

Jul 4, 2008, 3:37 PM

Post #6 of 8 (79 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

In article <rNOSPAMon-BDA88C.15302904072008[at]news.gha.chartermi.net>,
Ron Garret <rNOSPAMon[at]flownet.com> wrote:

> In article <3a11k5-al7.ln1[at]nb2.stroeder.com>,
> Michael Ströder <michael[at]stroeder.com> wrote:
>
> > Ron Garret wrote:
> > > I'm writing a little HTTP server and need to parse request content that
> > > is mime-encoded. All the MIME routines in the Python standard library
> > > seem to have been subsumed into the email package, which makes this
> > > operation a little awkward.
> >
> > How about using cgi.parse_multipart()?
> >
> > Ciao, Michael.
>
> Unfortunately cgi.parse_multipart doesn't handle nested multiparts,
> which the requests I'm getting have. You have to use a FieldStorage
> object to do that, and that only works if you're actually in a cgi
> environment, which I am not. The server responds to these requests
> directly.
>
> Anyway, thanks for the idea.
>
> rg

Hm, it actually seems to work if I manually pass in the outerboundary
parameter and environ={'REQUEST_METHOD':'POST'} That seems like the
Right Answer.

Woohoo!

Thanks Michael!

rg


michael at stroeder

Jul 5, 2008, 2:11 AM

Post #7 of 8 (71 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

Ron Garret wrote:
> In article <rNOSPAMon-BDA88C.15302904072008[at]news.gha.chartermi.net>,
> Ron Garret <rNOSPAMon[at]flownet.com> wrote:
>
>> In article <3a11k5-al7.ln1[at]nb2.stroeder.com>,
>> Michael Ströder <michael[at]stroeder.com> wrote:
>>
>>> Ron Garret wrote:
>>>> I'm writing a little HTTP server and need to parse request content that
>>>> is mime-encoded. All the MIME routines in the Python standard library
>>>> seem to have been subsumed into the email package, which makes this
>>>> operation a little awkward.
>>> How about using cgi.parse_multipart()?
>>>
>> Unfortunately cgi.parse_multipart doesn't handle nested multiparts,
>> which the requests I'm getting have. You have to use a FieldStorage
>> object to do that, and that only works if you're actually in a cgi
>> environment, which I am not. The server responds to these requests
>> directly.
>>
>> Anyway, thanks for the idea.
>
> Hm, it actually seems to work if I manually pass in the outerboundary
> parameter and environ={'REQUEST_METHOD':'POST'} That seems like the
> Right Answer.

I'm also using it to parse form parameters in a message body received by
POST.

CIao, Michael.
--
http://mail.python.org/mailman/listinfo/python-list


rNOSPAMon at flownet

Jul 6, 2008, 12:47 AM

Post #8 of 8 (68 views)
Permalink
Re: Parsing MIME-encoded data in an HTTP request [In reply to]

In article <5fq3k5-eva.ln1[at]nb2.stroeder.com>,
Michael Ströder <michael[at]stroeder.com> wrote:

> Ron Garret wrote:
> > In article <rNOSPAMon-BDA88C.15302904072008[at]news.gha.chartermi.net>,
> > Ron Garret <rNOSPAMon[at]flownet.com> wrote:
> >
> >> In article <3a11k5-al7.ln1[at]nb2.stroeder.com>,
> >> Michael Ströder <michael[at]stroeder.com> wrote:
> >>
> >>> Ron Garret wrote:
> >>>> I'm writing a little HTTP server and need to parse request content that
> >>>> is mime-encoded. All the MIME routines in the Python standard library
> >>>> seem to have been subsumed into the email package, which makes this
> >>>> operation a little awkward.
> >>> How about using cgi.parse_multipart()?
> >>>
> >> Unfortunately cgi.parse_multipart doesn't handle nested multiparts,
> >> which the requests I'm getting have. You have to use a FieldStorage
> >> object to do that, and that only works if you're actually in a cgi
> >> environment, which I am not. The server responds to these requests
> >> directly.
> >>
> >> Anyway, thanks for the idea.
> >
> > Hm, it actually seems to work if I manually pass in the outerboundary
> > parameter and environ={'REQUEST_METHOD':'POST'} That seems like the
> > Right Answer.
>
> I'm also using it to parse form parameters in a message body received by
> POST.
>
> CIao, Michael.

Just for the record, here's the incantation I ended up with:


class post_handler(BaseHTTPRequestHandler):
def do_POST(self):
form = cgi.FieldStorage(fp=self.rfile, headers=self.headers,
environ={'REQUEST_METHOD':'POST'})
...


works like a charm.

rg

Python python RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.