OLD | NEW |
1 # coding: utf-8 | 1 # coding: utf-8 |
2 | 2 |
3 # This Source Code is subject to the terms of the Mozilla Public License | 3 # This Source Code is subject to the terms of the Mozilla Public License |
4 # version 2.0 (the "License"). You can obtain a copy of the License at | 4 # version 2.0 (the "License"). You can obtain a copy of the License at |
5 # http://mozilla.org/MPL/2.0/. | 5 # http://mozilla.org/MPL/2.0/. |
6 | 6 |
| 7 import base64 |
| 8 from sitescripts.utils import get_config |
| 9 |
7 handlers = {} | 10 handlers = {} |
| 11 authenticated_users = {} |
8 | 12 |
9 def url_handler(url): | 13 def url_handler(url): |
10 def decorator(func): | 14 def decorator(func): |
11 registerUrlHandler(url, func) | 15 registerUrlHandler(url, func) |
12 return func | 16 return func |
13 return decorator | 17 return decorator |
14 | 18 |
15 def registerUrlHandler(url, func): | 19 def registerUrlHandler(url, func): |
16 if url in handlers: | 20 if url in handlers: |
17 raise Exception('A handler for url %s is already registered' % url) | 21 raise Exception('A handler for url %s is already registered' % url) |
18 handlers[url] = func | 22 handlers[url] = func |
19 | 23 |
| 24 def basic_auth(f, config_section = "DEFAULT"): |
| 25 def decorator(environ, start_response): |
| 26 return authenticate(f, environ, start_response, config_section) |
| 27 return decorator |
| 28 |
| 29 def authenticate(f, environ, start_response, config_section): |
| 30 if "HTTP_AUTHORIZATION" in environ: |
| 31 auth = environ["HTTP_AUTHORIZATION"].split() |
| 32 if len(auth) == 2: |
| 33 if auth[0].lower() == "basic": |
| 34 username, password = base64.b64decode(auth[1]).split(":") |
| 35 config = get_config() |
| 36 expected_username = config.get(config_section, "basic_auth_username") |
| 37 expected_password = config.get(config_section, "basic_auth_password") |
| 38 if username == expected_username and password == expected_password: |
| 39 return f(environ, start_response) |
| 40 |
| 41 realm = get_config().get("DEFAULT", "basic_auth_realm") |
| 42 start_response("401 UNAUTHORIZED", |
| 43 [("WWW-Authenticate", 'Basic realm="%s"' % realm)]) |
| 44 return "" |
| 45 |
20 import openid.web.server | 46 import openid.web.server |
21 import subscriptions.web.fallback | 47 import subscriptions.web.fallback |
| 48 import crashes.web.submitCrash |
22 import reports.web.submitReport | 49 import reports.web.submitReport |
23 import reports.web.updateReport | 50 import reports.web.updateReport |
24 import reports.web.showDigest | 51 import reports.web.showDigest |
25 import extensions.web.translationCheck | 52 import extensions.web.translationCheck |
26 import tasks.web.tasks | 53 import tasks.web.tasks |
27 import formmail.web.formmail | 54 import formmail.web.formmail |
28 import crawler.web.crawler | 55 import crawler.web.crawler |
OLD | NEW |