diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-21 17:19:56 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-21 17:19:56 +0000 |
commit | 9376f9afbade89253f354e9164a6f40328fa494a (patch) | |
tree | e2511c810365a029b1327c281ce4bbc7ebd9c68a /rpki/gui/decorators.py | |
parent | 28f0a684e348c4d8e3e83827f4367aaa4f21522f (diff) |
More relatively straightforward merges.
svn path=/branches/tk705/; revision=6083
Diffstat (limited to 'rpki/gui/decorators.py')
-rw-r--r-- | rpki/gui/decorators.py | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/rpki/gui/decorators.py b/rpki/gui/decorators.py index 75efeae0..b5c52afb 100644 --- a/rpki/gui/decorators.py +++ b/rpki/gui/decorators.py @@ -15,24 +15,18 @@ __version__ = '$Id$' from django import http -from os import getenv - - -# Don't set this in production, ever. Really. You have been warned. -# -_allow_plain_http_for_testing = getenv("ALLOW_PLAIN_HTTP_FOR_TESTING") == "I solemnly swear that I am not running this in production" +from django.conf import settings def tls_required(f): - """ - Decorator which returns a 500 error if the connection is not - secured with TLS (https). - """ + """Decorator which returns a 500 error if the connection is not secured + with TLS (https). + """ def _tls_required(request, *args, **kwargs): - if not request.is_secure() and not _allow_plain_http_for_testing: - return http.HttpResponseServerError( - 'This resource may only be accessed securely via https', - content_type='text/plain') - return f(request, *args, **kwargs) + if settings.DEBUG or request.is_secure(): + return f(request, *args, **kwargs) + return http.HttpResponseServerError( + 'This resource may only be accessed securely via https', + content_type='text/plain') return _tls_required |