Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{urllib,urllib.parse}.urlencode should not use quote_plus #58074

Closed
StephenDay mannequin opened this issue Jan 25, 2012 · 19 comments
Closed

{urllib,urllib.parse}.urlencode should not use quote_plus #58074

StephenDay mannequin opened this issue Jan 25, 2012 · 19 comments
Labels
stdlib Python modules in the Lib dir type-feature A feature request or enhancement

Comments

@StephenDay
Copy link
Mannequin

StephenDay mannequin commented Jan 25, 2012

BPO 13866
Nosy @orsenthil, @ezio-melotti, @merwok, @bitdancer, @mmaker, @wiggin15, @berkerpeksag, @vadmium, @teruokun
Files
  • urllib_parse.diff: patch that adds a 'quote_via' keyword parameter to the urlencode function
  • issue13866.diff
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2015-05-18.00:45:36.894>
    created_at = <Date 2012-01-25.22:12:01.550>
    labels = ['type-feature', 'library']
    title = '{urllib,urllib.parse}.urlencode should not use quote_plus'
    updated_at = <Date 2015-05-19.00:12:53.754>
    user = 'https://bugs.python.org/StephenDay'

    bugs.python.org fields:

    activity = <Date 2015-05-19.00:12:53.754>
    actor = 'martin.panter'
    assignee = 'none'
    closed = True
    closed_date = <Date 2015-05-18.00:45:36.894>
    closer = 'r.david.murray'
    components = ['Library (Lib)']
    creation = <Date 2012-01-25.22:12:01.550>
    creator = 'Stephen.Day'
    dependencies = []
    files = ['26378', '39036']
    hgrepos = []
    issue_num = 13866
    keywords = ['patch']
    message_count = 19.0
    messages = ['151980', '153251', '153299', '154079', '154082', '165273', '165439', '209342', '240988', '241093', '241106', '241200', '241279', '241309', '243439', '243440', '243482', '243483', '243549']
    nosy_count = 15.0
    nosy_names = ['orsenthil', 'samwyse', 'ezio.melotti', 'eric.araujo', 'r.david.murray', 'cvrebert', 'maker', 'wiggin15', 'ronnix', 'python-dev', 'berker.peksag', 'martin.panter', 'Stephen.Day', 'jin', 'Jeff.Edwards']
    pr_nums = []
    priority = 'normal'
    resolution = 'fixed'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue13866'
    versions = ['Python 3.5']

    @StephenDay
    Copy link
    Mannequin Author

    StephenDay mannequin commented Jan 25, 2012

    The current behavior of the urlencode function (2.7: urllib, 3.x: urllib.parse) encodes spaces as pluses:

    >>> from urllib import urlencode
    >>> urlencode({'a': 'some param'})
    'a=some+param'

    However, in most instances, it would be desirable to merely encode spaces using percent encoding:

    >>> urlencode({'a': 'some param'})
    'a=some%20param'

    But there is no way to get this behavior in the standard library.

    It would probably best to change this so it defaults to use the regular quote function, but allows callers who need the legacy quote_plus behavior to pass that in as a function parameter.

    An acceptable fix would be to have the quote function taken as a keyword parameter, so legacy behavior remains:

    >>> urlencode({'a': 'some param'})
    'a=some+param'

    Then the behavior could be adjusted where needed:

    >>> from urllib import quote
    >>> urlencode({'a': 'some param'}, quote=quote)
    'a=some%20param'

    @StephenDay StephenDay mannequin added the stdlib Python modules in the Lib dir label Jan 25, 2012
    @terryjreedy terryjreedy added the type-feature A feature request or enhancement label Jan 27, 2012
    @orsenthil
    Copy link
    Member

    Stephen - urlencode is responsible for producing the application/x-www-form-urlencoded format, usually used in the FORMs in the web.
    As per the spec, the Space characters are replaced by `+'. -

    http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1

    What you are looking for is probably quote and quote_plus helper functions.

    When I had this doubt (long back), I referred to Java's URLEncoder class to see how it was behaving and then looked at the HTML specs. It was kind of standard behavior across different libraries. Closing this as invalid.

    @StephenDay
    Copy link
    Mannequin Author

    StephenDay mannequin commented Feb 13, 2012

    I apologize for reopening this bug, but I find your interpretation to be inaccurate. While technically valid, the combination of the documentation, the function name and the main use cases yields pathological invocations of urlencode. My bug report is to help mitigate these problems.

    The main use case for "url encoding" of mapping types is not for posting form data; the main use case is appending url parameters to a url:

    >>> from urllib import urlencode
    >>> from urlparse import urlunparse
    >>> urlunparse(('http', 'example.com', '/', None, urlencode({'a': 'some string'}), None))
    'http://example.com/?a=some+string'

    Any sane person would naturally gravitate to a function called "urlencode" to url encode a mapping type. If the urllib.urlencode function is indeed intended for form-encoding, as I agree is hinted in the documentation, it should indicate that its result is 'application/x-www-form-urlencoded' or it should be called "formencode".

    The quote or quote_plus is not at all "what I am looking for"; I am quite familiar with these library functions. These functions are for encoding component strings; they don't meet the use case described at all:

    >>> quote({'a': 1})
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib.py", line 1248, in quote
        if not s.rstrip(safe):
    AttributeError: 'dict' object has no attribute 'rstrip'

    In addition, Java's URLEncoder implementation is hardly a good example of standards compliant URL manipulation. Python is not Java. The Python community needs to make its own, independent, mature language decisions. In general, the use of '+' to encode spaces in content, even if it is compliant against an arbitrary standard, is pathological, especially when used in urls. Even though python's quote_plus function works symmetrically on its own, when pluses are used in a multi-language environment it can become impossible to tell whether a plus is a literal '+' or an encoded space. In addition, the usage of '%20' for spaces will work in almost all cases.

    RFC3986, Section 2 [1] describes the use of percent-encoding as a solution to representing reserved characters. In practice, percent-encoding is used on the value component of 'key=value' productions and this works in nearly all cases. The referenced standard [2], while relevant to the "implied" use case, is not applicable to url assembly.

    Given your interpretation, it seems that there is no function in the python standard library to meet the use case of correctly assembling url parameter values, leaving application developers to come up with something like this:

    >>> '&'.join(['='.join((quote(k), quote(v))) for k,v in {'a': '1', 'b': 'with spaces'}.iteritems()])
    'a=1&b=with%20spaces'

    In most cases, people will just use urlencode, which uses pluses for spaces, yielding pathological, noncompliant urls.

    In deference to this bug closure, there are a few options:

    1. Close this issue and keep polluting the world's urls with pluses for spaces.

    2. Make urlencode target path/query parameter encoding and then create a new function, formencode, for use in encoding form data, breaking backwards compatibility.

    3. Simply add a keyword argument to urlencode to allow the caller to specify the encoding function and separator, retaining compatibility and satisfying all of the above use cases.

    Naturally, 3 seems to be a very reasonable solution to this bug.

    [1] http://tools.ietf.org/html/rfc3986#section-2 explicitly covers
    [2] http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1

    @StephenDay StephenDay mannequin reopened this Feb 13, 2012
    @StephenDay StephenDay mannequin removed the invalid label Feb 13, 2012
    @orsenthil
    Copy link
    Member

    A couple of points to help summarize and to help come to a conclusion.

    In the initial message, Stephen pointed out, "it would be desirable to merely encode spaces using percent encoding".

    It seems to me that only in cases where a custom handling of query string is done, would space be encoded to %20 (or if it's an IRI instead of URI - details below) and for HTTP requests and in both GET and POST, encoding to space in a URI to + is a correct thing to do.

    The query part in the URL always needs to follow the application/x-www-form-urlencoded format, so even when urlencode is used for constructing a query parameters, it should encode space to +

    The argument that all characters should be hex encoded (and thereby space should be %20), seems to apply if it is an IRI. Look at an interesting discussion in this link:
    http://stackoverflow.com/questions/5366007/why-does-the-encodings-of-a-url-and-the-query-string-part-differ/5433216#5433216

    Only with this point as consideration. I think, sending a parameter for quote to use quote or quote_plus may be worthy option to consider (Stephen's point #3).

    But I have to add that the existing behavior of replacing space with "+" in "URL"s is not breaking anything and in fact is following the rules properly.

    @StephenDay
    Copy link
    Mannequin Author

    StephenDay mannequin commented Feb 23, 2012

    While it's likely that adding a quote/quote_plus function paramater to urlencode is the right solution, I want to ensure that the key point is communicated clearly: encoding a space as a '+' is pathological, in that in the common case, an unescaped encoded character is indistinguishable from a literal '+'. Take the case of the literal string '+ '. If one uses the javascript encodeURI function to encode the string in a browser console, one gets the following:

    encodeURI('+ ')
    "+%20"

    Now, we have a string that will not decode symmetrically. In other words, we cannot tell if this string should decode to ' ' or '+ '. And while use of encodeURI is discouraged, application developers still use it places, introducing these kinds of errors.

    Conversely, we can see that the behavior of encodeURIComponent, is unambiguous:

    encodeURIComponent('+ ')
    "%2B%20"

    And while these are analogues to quote and quote_plus (there exists now analogue to javascripts urlencode), it's easy to see that disambiguating the encoding of the resulting output of urlencode would be desirable.

    There is a similar situation with php library functions.

    Furthermore, it is agreed that urlencode does follow the rules, but the rules, as they are, introduce an asymmetrical, pathological encoding. Most services accept '%20' as space in lieu of '+' when data is encoded as 'application/x-www-form-urlencoded' anyway.

    Concluding, I know it seems a little silly to spend time filing this bug and provide relevant cases, but I'd like to cite professional experience in this matter; I have seen "pluses-for-spaces" introduce errors time and time again.

    @jin
    Copy link
    Mannequin

    jin mannequin commented Jul 11, 2012

    I just ran into exactly the same problem and was quite disappointed to see that urlencode does not provide an option to use percent encoding.

    My use case: I'm preparing some metadata on the server side that is stored as an url encoded string, the processing is done in python.

    The metadata is then deocded by a JavaScript web UI.

    So I end up with:
    urllib.urlencode({ 'key': 'val with space'}) which produces "key=val+with+space" which of course stays that way after processing it with JavaScript's decodeURI().

    So basically I seem to be forced to implement my own urlencode function... Most thing I like about python that it always seems to have exactly what one needs, unfortunately not in this specific case.

    IMHO Stephen's suggestion #3 makes a lot of sense, while '+' maybe correct for forms, it's simply not useful for a number of other situations and I was really surprised by the fact that there's no standard function that would url-encode with percentage encoding.

    @samwyse
    Copy link
    Mannequin

    samwyse mannequin commented Jul 14, 2012

    Since no one else seems willing to do it, here's a patch that adds a 'quote_via' keyword parameter to the urlencode function.

    >>> import urllib.parse
    >>> query={"foo": "+ "}
    >>> urllib.parse.urlencode(query)
    'foo=%2B+'
    >>> urllib.parse.urlencode(query, quote_via=urllib.parse.quote)
    'foo=%2B%20'

    @teruokun
    Copy link
    Mannequin

    teruokun mannequin commented Jan 26, 2014

    It's interesting how long this issue has been around. It seems to be because the form-urlencoded spec is specified as url-percent-encoding EXCEPT for ' ' -> '+', which does seem to be unintuitive.

    To note, there are a few known cases where the exception does lead to either confusion or outright breakage, such as AWS Signature V4 authentication which requires an an HMAC of the 'canonical' query string which expected the parameters sorted and url encoding where ' ' -> '%20'. While I do not believe that should be the sole reason to force a change, it does add to the utility of the currently-submitted patch as written.

    @wiggin15
    Copy link
    Mannequin

    wiggin15 mannequin commented Apr 14, 2015

    Updated patch to the correct format, added a test and some more documentation.

    @vadmium
    Copy link
    Member

    vadmium commented Apr 15, 2015

    To be consistent, I think the documentation should mark up the parameters with asterisks: *quote_via*. Also, you lost the markup for :func:`quote_plus`.

    The test cases should probably use self.assertEqual(). The “assert” statement is not appropriate for testing because it can be optimized away.

    You also need to clarify in the documentation and tests how the “safe” parameter interacts with the choice of quote function. Are slashes encoded or not by default with quote_via=quote?

    @wiggin15
    Copy link
    Mannequin

    wiggin15 mannequin commented Apr 15, 2015

    Fixed Martin's comments.

    @vadmium
    Copy link
    Member

    vadmium commented Apr 16, 2015

    New patch looks good.

    @bitdancer
    Copy link
    Member

    Martin, if you think the patch is complete and ready to commit, please change the stage to commit review. I'm trying to encourage core devs to look at the patches in commit review state and commit them :)

    @vadmium
    Copy link
    Member

    vadmium commented Apr 17, 2015

    Yep I think this is ready. I’ll keep your advice in mind for other patches as well :)

    @python-dev
    Copy link
    Mannequin

    python-dev mannequin commented May 18, 2015

    New changeset c7d82a7a9dea by R David Murray in branch 'default':
    Issue bpo-13866: add *quote_via* argument to urlencode.
    https://hg.python.org/cpython/rev/c7d82a7a9dea

    @bitdancer
    Copy link
    Member

    Thanks everyone.

    @berkerpeksag
    Copy link
    Member

    Just a suggestion: urlencode already has 5 parameters. We can make quote_via a keyword-only parameter.

    @bitdancer
    Copy link
    Member

    I don't see any particular motivation to make it keyword only.

    @vadmium
    Copy link
    Member

    vadmium commented May 19, 2015

    Forcing the “quote_via” keyword wouldn’t help that much. I suggest to leave it as it is.

    urlencode(query, True, "/", "ascii", "strict", quote)
    urlencode(query, True, "/", "ascii", "strict", quote_via=quote)

    On the other hand, forcing a keyword for the “doseq=True” flag would encourage easier-to-read code, but that ship has already bolted :)

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    stdlib Python modules in the Lib dir type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    5 participants