Commit c5410570 authored by Vincent Pelletier's avatar Vincent Pelletier

erp5_oauth2_authorisation/logged_in_once: Tolerate multipart/form-data request encoding

For better compatibility, as not all templates may be reconfigured to post
in application/x-www-form-urlencoded.
Also, tolerate a missing Content-Type request header, treating as an
unhandler type instead of raising a KeyError exception.
parent 915b20c4
......@@ -12,7 +12,7 @@ if portal.portal_skins.updateSkinCookie():
environ = REQUEST.environ
if (
environ['REQUEST_METHOD'] != 'POST' or
environ['CONTENT_TYPE'] != 'application/x-www-form-urlencoded' or
environ.get('CONTENT_TYPE', '').split(';', 1)[0].rstrip() not in ('application/x-www-form-urlencoded', 'multipart/form-data') or
environ['QUERY_STRING']
):
# There may be foul play, so escape to wherever.
......@@ -45,6 +45,10 @@ with substituteRequest(
method='POST',
form=form,
) as inner_request:
# XXX: Zope request to oauthlib request compatibility layer (see document.erp5.OAuth2AuthorisationServerConnector)
# only supports application/x-www-form-urlencoded, so force this content-type while accepting multipart/form-data input.
# Non-basestring values are ignored, so it will ignore any posted file.
inner_request.environ['CONTENT_TYPE'] = 'application/x-www-form-urlencoded'
return connector_value.authorize(
REQUEST=inner_request,
RESPONSE=inner_request.RESPONSE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment