wsj1995 commited on
Commit
71c789f
·
verified ·
1 Parent(s): 3ef4631

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -0
app.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi.responses import JSONResponse
2
+ from fastapi import Depends, FastAPI, HTTPException, Request, Form, UploadFile
3
+ import subprocess
4
+ import hashlib
5
+ import time
6
+ import os
7
+
8
+
9
+ with open("download.py", "w") as file:
10
+ file.write(os.environ.get('DOWNALOD_SCRIPT'))
11
+
12
+ API_AUTH_KEY = os.environ.get('AUTH_KEY')
13
+
14
+
15
+ async def verify_internal_token(request: Request):
16
+ auth_key = request.query_params.get("auth_key")
17
+ if not auth_key:
18
+ raise HTTPException(status_code=403, detail="Forbidden")
19
+ timestamp = int(time.time())
20
+ timestampStr, rand, uid, hashStr = auth_key.split('-', 3)
21
+ path = request.url.path
22
+ if timestamp > int(timestampStr):
23
+ raise HTTPException(status_code=403, detail="Forbidden")
24
+ md5hash = hashlib.md5(
25
+ f"{path}-{timestampStr}-{rand}-{uid}-{API_AUTH_KEY}".encode())
26
+ md5 = md5hash.hexdigest()
27
+ if md5 != hashStr:
28
+ raise HTTPException(status_code=403, detail="Forbidden")
29
+
30
+ app = FastAPI(dependencies=[Depends(verify_internal_token)])
31
+
32
+
33
+ @app.get("/ping")
34
+ def ping():
35
+ subprocess.Popen(['python', '/app/download.py'])
36
+ return True