mirror of
https://github.com/not-kennethreitz/flask-sslify.git
synced 2026-06-05 15:00:21 +00:00
59 lines
1.6 KiB
Python
59 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flask import request, redirect
|
|
|
|
YEAR_IN_SECS = 31536000
|
|
|
|
|
|
class SSLify(object):
|
|
"""Secures your Flask App."""
|
|
|
|
def __init__(self, app=None, age=YEAR_IN_SECS, subdomains=False, permanent=False):
|
|
self.hsts_age = age
|
|
self.hsts_include_subdomains = subdomains
|
|
self.permanent = permanent
|
|
|
|
if app is not None:
|
|
self.init_app(self.app)
|
|
|
|
def init_app(self, app):
|
|
"""Configures the configured Flask app to enforce SSL."""
|
|
|
|
self.app = app
|
|
app.before_request(self.redirect_to_ssl)
|
|
app.after_request(self.set_hsts_header)
|
|
|
|
@property
|
|
def hsts_header(self):
|
|
"""Returns the proper HSTS policy."""
|
|
hsts_policy = 'max-age={0}'.format(self.hsts_age)
|
|
|
|
if self.hsts_include_subdomains:
|
|
hsts_policy += '; includeSubDomains'
|
|
|
|
return hsts_policy
|
|
|
|
def redirect_to_ssl(self):
|
|
"""Redirect incoming requests to HTTPS."""
|
|
# Should we redirect?
|
|
criteria = [
|
|
request.is_secure,
|
|
self.app.debug,
|
|
request.headers.get('X-Forwarded-Proto', 'http') == 'https'
|
|
]
|
|
|
|
if not any(criteria):
|
|
if request.url.startswith('http://'):
|
|
url = request.url.replace('http://', 'https://', 1)
|
|
code = 302
|
|
if self.permanent:
|
|
code = 301
|
|
r = redirect(url, code=code)
|
|
|
|
return r
|
|
|
|
def set_hsts_header(self, response):
|
|
"""Adds HSTS header to each response."""
|
|
response.headers.setdefault('Strict-Transport-Security', self.hsts_header)
|
|
return response
|