This is an archive of the discontinued Mercurial Phabricator instance.

hgweb: remove support for POST form data (BC)
ClosedPublic

Authored by indygreg on Mar 9 2018, 11:53 PM.

Details

Summary

Previously, we called out to cgi.parse(), which for POST requests
parsed multipart/form-data and application/x-www-form-urlencoded
Content-Type requests for form data, combined it with query string
parameters, returned a union of the values.

As far as I know, nothing in Mercurial actually uses this mechanism
to submit data to the HTTP server. The wire protocol has its own
mechanism for passing parameters. And the web interface only does
GET requests. Removing support for parsing POST data doesn't break
any tests.

Another reason to not like this feature is that cgi.parse() may
modify the QUERY_STRING environment variable as a side-effect.
In addition, it merges both POST data and the query string into
one data structure. This prevents consumers from knowing whether
a variable came from the query string or POST data. That can matter
for some operations.

I suspect we use cgi.parse() because back when this code was
initially implemented, it was the function that was readily
available. In other words, I don't think there was conscious
choice to support POST data: we just got it because cgi.parse()
supported it.

Since nothing uses the feature and it is untested, let's remove
support for parsing POST form data. We can add it back in easily
enough if we need it in the future.

.. bc::

Hgweb no longer reads form data in POST requests from
multipart/form-data and application/x-www-form-urlencoded
requests. Arguments should be specified as URL path components
or in the query string in the URL instead.

Diff Detail

Repository
rHG Mercurial
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.

Event Timeline

indygreg created this revision.Mar 9 2018, 11:53 PM
indygreg retitled this revision from hgweb: remove support for retrieving parameters from POST form data to hgweb: remove support for POST form data (BC).Mar 10 2018, 3:03 PM
indygreg updated this revision to Diff 6834.
durin42 accepted this revision.Mar 12 2018, 4:59 PM
This revision is now accepted and ready to land.Mar 12 2018, 4:59 PM
This revision was automatically updated to reflect the committed changes.