Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (24 loc) · 979 Bytes

File metadata and controls

35 lines (24 loc) · 979 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# coding: utf-8
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import os
from werkzeug.wrappers import Request
from werkzeug.utils import redirect
__author__ = "asaka <lan@leancloud.rocks>"
is_prod = True if os.environ.get("LEANCLOUD_APP_ENV") == "production" else False
class HttpsRedirectMiddleware(object):
def __init__(self, wsgi_app):
self.origin_app = wsgi_app
def __call__(self, environ, start_response):
request = Request(environ)
engine_health = "/1.1/functions/_ops/metadatas"
if (
is_prod
and request.path != engine_health
and request.headers.get("X-Forwarded-Proto") != "https"
):
url = "https://{0}{1}".format(request.host, request.full_path)
return redirect(url)(environ, start_response)
return self.origin_app(environ, start_response)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.