|
@@ -151,6 +151,27 @@ def protected(request: Request, Authorize: AuthJWT = Depends()):
|
|
|
current_user = Authorize.get_jwt_subject()
|
|
|
return current_user
|
|
|
|
|
|
+@app.post('/get_user')
|
|
|
+def get_user_post(token: str = Depends(oauth2_scheme)):
|
|
|
+ db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
|
|
|
+ credentials_exception = HTTPException(
|
|
|
+ status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
+ detail="Could not validate credentials",
|
|
|
+ headers={"WWW-Authenticate": "Bearer"},
|
|
|
+ )
|
|
|
+ try:
|
|
|
+ payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
|
|
|
+ username: str = payload.get("sub")
|
|
|
+ if username is None:
|
|
|
+ raise credentials_exception
|
|
|
+ token_data = models.TokenData(username=username)
|
|
|
+ except JWTError:
|
|
|
+ raise credentials_exception
|
|
|
+ user = get_user(username=token_data.username)
|
|
|
+ if user is None:
|
|
|
+ raise credentials_exception
|
|
|
+ return user
|
|
|
+
|
|
|
|
|
|
@app.get('/logout')
|
|
|
def logout(request: Request, Authorize: AuthJWT = Depends()):
|
|
@@ -290,7 +311,7 @@ def get_user(username: str):
|
|
|
return False
|
|
|
user_dict = next(
|
|
|
iter(db.query('SELECT * FROM AI_anchor.users where username ="'+username+'"')))
|
|
|
- user = User(**user_dict)
|
|
|
+ user = models.User(**user_dict)
|
|
|
return user
|
|
|
|
|
|
def user_register(user):
|