Spaces:
Sleeping
Sleeping
File size: 1,262 Bytes
c4dc0b3 |
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 36 |
from fastapi import APIRouter,UploadFile,Form,File
from sqlite3 import connect
IndoorDataUploader=APIRouter(prefix="/Uploader")
@IndoorDataUploader.post("/UploadeWiFiData")
async def FunctionName(Dataset:UploadFile=File(...),Email:str=Form(...),Password:str=Form(...)):
try:
con=connect("DataBase/DataBase.bd")
cursor=con.execute(f'''
SELECT UserId,Password FROM Users where Email='{Email}'
''')
Data=cursor.fetchall()
if len(Data) !=0 :
if Data[0][0]==None:
return {"Status":False,"Message":"Email or Password Is Incorrect "}
HasedPassword=Data[0][1]
UserId=Data[0][0]
State=Password==HasedPassword
con.close()
if State:
with open(f"./IndoorLocalization/Data/{UserId}/Data.csv","wb") as File:
File.write(Dataset.file.read())
return {"Status":True,"Message":"File Added Correctly"}
else:
return {"Status":False,"Message":"Email or Password is not correct"}
except Exception as e:
return {"Status":False,"message":e}
|