mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
17 lines
603 B
Python
17 lines
603 B
Python
# -*- coding: utf-8 -
|
|
|
|
def main(request, response):
|
|
image_url = str.replace(request.url, "http/resources/securedimage.py", "images/green.png")
|
|
|
|
if "authorization" not in request.headers:
|
|
response.status = 401
|
|
response.headers.set("WWW-Authenticate", "Basic")
|
|
return response
|
|
else:
|
|
auth = request.headers.get("Authorization")
|
|
if auth != "Basic dGVzdHVzZXI6dGVzdHBhc3M=":
|
|
response.set_error(403, "Invalid username or password - " + auth)
|
|
return response
|
|
|
|
response.status = 301
|
|
response.headers.set("Location", image_url)
|