comparison mercurial/debugcommands.py @ 37047:fddcb51b5084

wireproto: define permissions-based routing of HTTPv2 wire protocol Now that we have a scaffolding for serving version 2 of the HTTP protocol, let's start implementing it. A good place to start is URL routing and basic request processing semantics. We can focus on content types, capabilities detect, etc later. Version 2 of the HTTP wire protocol encodes the needed permissions of the request in the URL path. The reasons for this are documented in the added documentation. In short, a) it makes it really easy and fail proof for server administrators to implement path-based authentication and b) it will enable clients to realize very early in a server exchange that authentication will be required to complete the operation. This latter point avoids all kinds of complexity and problems, like dealing with Expect: 100-continue and clients finding out later during `hg push` that they need to provide authentication. This will avoid the current badness where clients send a full bundle, get an HTTP 403, provide authentication, then retransmit the bundle. In order to implement command checking, we needed to implement a protocol handler for the new wire protocol. Our handler is just small enough to run the code we've implemented. Tests for the defined functionality have been added. I very much want to refactor the permissions checking code and define a better response format. But this can be done later. Nothing is covered by backwards compatibility at this point. Differential Revision: https://phab.mercurial-scm.org/D2836
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 19 Mar 2018 16:43:47 -0700
parents a708e1e4d7a8
children 40206e227412
comparison
equal deleted inserted replaced
37046:1cfef5693203 37047:fddcb51b5084
2968 line) 2968 line)
2969 2969
2970 url = path + httppath 2970 url = path + httppath
2971 req = urlmod.urlreq.request(pycompat.strurl(url), body, headers) 2971 req = urlmod.urlreq.request(pycompat.strurl(url), body, headers)
2972 2972
2973 # urllib.Request insists on using has_data() as a proxy for
2974 # determining the request method. Override that to use our
2975 # explicitly requested method.
2976 req.get_method = lambda: method
2977
2973 try: 2978 try:
2974 opener.open(req).read() 2979 opener.open(req).read()
2975 except util.urlerr.urlerror as e: 2980 except util.urlerr.urlerror as e:
2976 e.read() 2981 e.read()
2977 2982