-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
74 lines (61 loc) · 2.33 KB
/
utils.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"""This file contains utility functions"""
from datetime import datetime, timedelta
from calendar import timegm
import jwt
from fastapi import HTTPException, status
from sqlalchemy.ext.asyncio import AsyncSession
from constants import (
JWT_SECRET, JWT_ALGO, JWT_EXP_HOURS, API_DESCRIPTION, README_FILE)
from dao import SessionLocal
# --------------------------------------------------------------------------
async def get_db() -> AsyncSession:
"""This function returns a database session
:return: AsyncSession instance
"""
async with SessionLocal() as db:
return db
def create_token(email: str) -> dict[str, str]:
"""This function creates a new token
:param email: an email address to create a token for
:return: a dictionary containing access token
"""
token_data = {
'email': email,
'exp': timegm(
(datetime.utcnow() + timedelta(hours=JWT_EXP_HOURS)).timetuple())
}
access_token = jwt.encode(token_data, JWT_SECRET, algorithm=JWT_ALGO)
return {'access_token': access_token}
def decode_token(access_token: str) -> dict[str, str]:
"""This function serves to decode a provided token
:param access_token: a string representing the access token
:return: a dictionary containing extracted token data
"""
try:
token = access_token.split('Bearer ')[-1]
user_data = jwt.decode(token, JWT_SECRET, algorithms=[JWT_ALGO])
return user_data
except Exception as e:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail=f'Cannot confirm credentials, error: {e}')
def read_from_file(filename: str) -> str:
"""This function serves to load data from file by provided filename
:param filename: the name of the file to read
:return: a string containing the data read from the file
"""
try:
with open(filename, encoding='utf-8') as f:
file_data = f.read()
return file_data
except Exception as e:
print(f'Cannot read from file, error: {e}')
return ''
def get_description() -> str:
"""This function serves to return a description for application
:return: a string containing the description
"""
description = read_from_file(README_FILE)
if not description:
description = API_DESCRIPTION
return description