mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 14:08:09 +03:00
e1a740472f
* feat(chat): add name update * chore(linting): add flake8 * feat: add chat name edit
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
import os
|
|
from datetime import datetime, timedelta
|
|
from typing import Optional
|
|
|
|
from jose import jwt
|
|
from jose.exceptions import JWTError
|
|
|
|
SECRET_KEY = os.environ.get("JWT_SECRET_KEY")
|
|
ALGORITHM = "HS256"
|
|
|
|
|
|
def create_access_token(data: dict, expires_delta: Optional[timedelta] = None):
|
|
to_encode = data.copy()
|
|
if expires_delta:
|
|
expire = datetime.utcnow() + expires_delta
|
|
else:
|
|
expire = datetime.utcnow() + timedelta(minutes=15)
|
|
to_encode.update({"exp": expire})
|
|
encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)
|
|
return encoded_jwt
|
|
|
|
|
|
def decode_access_token(token: str):
|
|
try:
|
|
payload = jwt.decode(
|
|
token, SECRET_KEY, algorithms=[ALGORITHM], options={"verify_aud": False}
|
|
)
|
|
return payload
|
|
except JWTError:
|
|
return None
|
|
|
|
|
|
def verify_token(token: str):
|
|
payload = decode_access_token(token)
|
|
return payload is not None
|
|
|
|
|
|
def get_user_email_from_token(token: str):
|
|
payload = decode_access_token(token)
|
|
if payload:
|
|
return payload.get("email")
|
|
return "none"
|