From a6dd217615be91a40cd3c45534a6c460c6777b3c Mon Sep 17 00:00:00 2001 From: hunsh Date: Fri, 21 Jan 2022 22:18:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20pass=20list=E9=A2=84=E5=A4=84=E7=90=86?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/main.py b/app/main.py index 7d0216b..808e030 100644 --- a/app/main.py +++ b/app/main.py @@ -38,6 +38,7 @@ ASSET_URL = 'https://hunshcn.github.io/gh-proxy' # 主页 white_list = [tuple([x.replace(' ', '') for x in i.split('/')]) for i in white_list.split('\n') if i] black_list = [tuple([x.replace(' ', '') for x in i.split('/')]) for i in black_list.split('\n') if i] +pass_list = [tuple([x.replace(' ', '') for x in i.split('/')]) for i in pass_list.split('\n') if i] app = Flask(__name__) CHUNK_SIZE = 1024 * 10 index_html = requests.get(ASSET_URL, timeout=10).text @@ -152,6 +153,11 @@ def handler(u): else: if exp2.match(u): u = u.replace('/blob/', '/raw/', 1) + if pass_by: + url = u + request.url.replace(request.base_url, '', 1) + if url.startswith('https:/') and not url.startswith('https://'): + url = 'https://' + url[7:] + return redirect(url) return proxy(u)