-
Notifications
You must be signed in to change notification settings - Fork 28
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
Optionally replace +
in parseUrlencoded
#62
base: master
Are you sure you want to change the base?
Conversation
9bb4477
to
76e2d9f
Compare
76e2d9f
to
4e50610
Compare
In this commit I've also dropped @owickstrom: Should I open separate issue regarding refactoring of some type classes into plain records (so I think we will have more flexible and extensible API and simpler type inference)? |
Travis detected that examples from docs use |
I've tried to fix example for form handling, but I'm not sure if I should finish this fix or drop it all together. I don't know if we should provide an API or make any assumptions about API for validation (which assumes for example error type to be As an author of validation libraries (https://github.com/paluh/purescript-polyform) I think that such a validation glue code could be easily extracted into separate library. |
+
in parseUrlencoded
Can I merge this (dropping |
@owickstrom ping... |
Sorry for unresponsiveness! Yeah, I think ultimately these form-related things shouldn't go in the core Hyper library. I did the initial versions a bit to feature-heavy just to try out things. I'm happy you remove them and remove the corresponding docs. 👍 |
This PR provides a way to optionally replace
+
by space in query values before passing them to uri decoding. (I want to reemphasize importance of this change, so I'm coping here my arguments frompurescript-uri
issue).Without this option hyper user is not able to distinguish
+
from%2B
in original query as both are decoded to+
and finally is not able parse text input values containing spaces send by all tested by me modern browsers.I've tested on two versions of Firefox and Chromium (latest Firefox nightly 59.0a1 (2017-11-20), Chromium 62.0.3202.89 and Firefox 56.0.2) that this form:
results in + in queries (so we get "value+with+spaces"). The same behavior is observed when I add explicit enctype=application/x-www-form-urlencoded.
I know that this is not a real argument for discussion, but other libs/tools/frameworks do seem to decode
+
as space in query strings:Haskell http-types (Servant uses http-api-data which uses http-types):
parseQuery calls two times
urlDecode
withTrue
as the first argument:https://github.com/aristidb/http-types/blob/master/Network/HTTP/Types/URI.hs#L136
urlDecode
:https://github.com/aristidb/http-types/blob/master/Network/HTTP/Types/URI.hs#L206
Haskell Snap framework decodes
+
in query keys and values to space:https://github.com/snapframework/snap-core/blob/master/src/Snap/Internal/Parsing.hs#L368
Python3
urllib.parse
decodes+
in queries (even in strict mode ;-)):https://github.com/python/cpython/blob/3.6/Lib/urllib/parse.py#L697
Javascript
query-string
repalces+
in query keys and values:https://github.com/sindresorhus/query-string/blob/master/index.js#L148