fixup! [feat] allow to rewrite url before download using netrc and macdef
(new commit message) This adds a generic mechanism in the Download API to rewrite the URL to be downloaded, possibly with extra headers. Substitued groups from the matching regular expression can be optionally quoted. .netrc: macdef buildout:HOSTNAME RULE_1_REGEX RULE_1_NEW_URL HEADER1=VALUE1 HEADER2=VALUE2 ... RULE_2_REGEX RULE_2_NEW_URL ... ... macdef buildout:OTHER_HOSTNAME ... A rewriting rule is defined by a pair of lines with optional indentation (only there for readability). The first line of a rule is a regex that matches fully against the path?query part of the URL. If the second line is empty, the request isn't changed. Else parts are parsed using shell-like syntax: - the first one must produce the full URL to download - the next ones are optional headers to send - each part is subject to regex substitution using the Python Format Specification Mini-Language: captured grouped from the first line are numbered starting from 1, {0} is the base URL (scheme://location) and the optional `quote` attribute returns the urlencoded value A use case is to work around https://gitlab.com/gitlab-org/gitlab/-/issues/19189 for example with the following .netrc: macdef buildout:lab.nexedi.com /(.+)/-/raw/([^/]+)/(.+) {0}/api/v4/projects/{1.quote}/repository/files/{3.quote}/raw?ref={2} PRIVATE-TOKEN=<ACCESS_TOKEN>
Showing
... | ... | @@ -397,7 +397,6 @@ class Handler(BaseHTTPRequestHandler): |
def __init__(self, request, address, server): | ||
self.__server = server | ||
self.tree = server.tree | ||
self.url = "http://%s:%s/" % (server.server_name, server.server_port) | ||
|
||
BaseHTTPRequestHandler.__init__(self, request, address, server) | ||
def do_GET(self): | ||
... | ... | @@ -449,7 +448,7 @@ class Handler(BaseHTTPRequestHandler): |
# This path is private and need /api | ||
return forbidden() | ||
if self.path.startswith('/api/v4/projects/namespace%2Fproject/repository/files/'): | ||
# path is : /api/v4/projects/namespace%2Fproject/repository/files/FILE_PATH_XXXX/raw/?ref=master | ||
# path is: .../files/FILE_PATH_XXXX/raw/?ref=master | ||
u = unquote(self.path.split('/')[7]) | ||
username, password = u.split(':') | ||
token = self.headers.get('PRIVATE-TOKEN') | ||
... | ... |
-
Owner
I wanted to say more about:
- we should mention (at least with a link) what we are replacing (an extension to gitlab);
- that is too much work to maintain
- probably also a word about performance, because if I understand correctly our gitlab patch was also about that
- (and the gitlab issue if confirmed)
but I realized this is mostly specific to Nexedi and we should rather focus on upstreaming our changes to buildout.
I also wondered if there could be other services that don't support basic auth. The gitlab limitation is so old and easy to fix that I thought it was on purpose (some security reason?) but I couldn't find any justification on the gitlab issue.