forked from github.com/pypiserver
implement "supporting changing the prefix of the path of url" again, using before_request hook.
This commit is contained in:
parent
c3965e31a0
commit
a060e99a25
@ -21,9 +21,9 @@ except ImportError:
|
||||
from StringIO import StringIO as BytesIO
|
||||
|
||||
try: # PY3
|
||||
from urllib.parse import urljoin
|
||||
from urllib.parse import urljoin, urlparse
|
||||
except ImportError: # PY2
|
||||
from urlparse import urljoin
|
||||
from urlparse import urljoin, urlparse
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
@ -59,6 +59,13 @@ def log_request():
|
||||
log.info(config.log_req_frmt, request.environ)
|
||||
|
||||
|
||||
@app.hook('before_request')
|
||||
def print_request():
|
||||
parsed = urlparse(request.urlparts.scheme + "://" + request.urlparts.netloc)
|
||||
request.custom_host = parsed.netloc
|
||||
request.custom_fullpath = parsed.path.rstrip('/') + '/' + request.fullpath.lstrip('/')
|
||||
|
||||
|
||||
@app.hook('after_request')
|
||||
def log_response():
|
||||
log.info(config.log_res_frmt, { # vars(response)) ## DOES NOT WORK!
|
||||
@ -80,7 +87,7 @@ def favicon():
|
||||
|
||||
@app.route('/')
|
||||
def root():
|
||||
fp = request.fullpath
|
||||
fp = request.custom_fullpath
|
||||
|
||||
try:
|
||||
numpkgs = len(list(packages()))
|
||||
@ -197,7 +204,7 @@ def update():
|
||||
@app.route('/packages')
|
||||
@auth("list")
|
||||
def pep_503_redirects(prefix=None):
|
||||
return redirect(request.fullpath + "/", 301)
|
||||
return redirect(request.custom_fullpath + "/", 301)
|
||||
|
||||
|
||||
@app.post('/RPC2')
|
||||
@ -261,7 +268,7 @@ def simple(prefix=""):
|
||||
return redirect("%s/%s/" % (config.fallback_url.rstrip("/"), prefix))
|
||||
return HTTPError(404, 'Not Found (%s does not exist)\n\n' % normalized)
|
||||
|
||||
fp = request.fullpath
|
||||
fp = request.custom_fullpath
|
||||
links = [(os.path.basename(f.relfn),
|
||||
urljoin(fp, "../../packages/%s" % f.fname_and_hash(config.hash_algo)))
|
||||
for f in files]
|
||||
@ -284,7 +291,7 @@ def simple(prefix=""):
|
||||
@app.route('/packages/')
|
||||
@auth("list")
|
||||
def list_packages():
|
||||
fp = request.fullpath
|
||||
fp = request.custom_fullpath
|
||||
files = sorted(core.find_packages(packages()),
|
||||
key=lambda x: (os.path.dirname(x.relfn),
|
||||
x.pkgname,
|
||||
|
@ -96,7 +96,7 @@ def test_hashfile(tmpdir, algo, digest):
|
||||
def test_redirect_prefix_encodes_newlines():
|
||||
"""Ensure raw newlines are url encoded in the generated redirect."""
|
||||
request = Namespace(
|
||||
fullpath='/\nSet-Cookie:malicious=1;'
|
||||
custom_fullpath='/\nSet-Cookie:malicious=1;'
|
||||
)
|
||||
prefix = '\nSet-Cookie:malicious=1;'
|
||||
newpath = core.get_bad_url_redirect_path(request, prefix)
|
||||
|
Loading…
Reference in New Issue
Block a user