SSL Decorator

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import urlparse
from django.conf import settings
from django.http import HttpResponseRedirect


def ssl_required(view_func):
    def _checkssl(request, *args, **kwargs):
        if not settings.DEBUG and not request.is_secure():
            if hasattr(settings, 'SSL_DOMAIN'):
                url_str = urlparse.urljoin(
                    settings.SSL_DOMAIN,
                    request.get_full_path()
                )
            else:
                url_str = request.build_absolute_uri()
            url_str = url_str.replace('http://', 'https://')
            return HttpResponseRedirect(url_str)

        return view_func(request, *args, **kwargs)
    return _checkssl

More like this

  1. SSL Middleware for Webfaction by parlar 5 years ago
  2. SSL / HTTPS Middleware for Redirection and href Rewriting by DrMeers 2 years ago
  3. SSL Middleware by sjzabel 5 years, 2 months ago
  4. Enable AWS ELB with SSL Termination by zvikico 11 months ago
  5. Load static media from secure (SSL) static server (Context Processor) by ianreardon 2 years, 7 months ago

Comments

(Forgotten your password?)