2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Common dependencies for routers.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-03-19 04:07:19 +00:00
|
|
|
from fastapi import Depends
|
|
|
|
from fastapi.security import OAuth2PasswordBearer
|
|
|
|
from sqlalchemy.orm import Session
|
|
|
|
|
|
|
|
from ..config import Config
|
2022-03-20 02:32:40 +00:00
|
|
|
from ..db import Connection
|
|
|
|
from ..db.schemas import User
|
2022-03-19 04:07:19 +00:00
|
|
|
|
2022-03-20 03:45:40 +00:00
|
|
|
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="user/authenticate")
|
2022-03-19 04:07:19 +00:00
|
|
|
|
|
|
|
|
2022-03-19 17:11:52 +00:00
|
|
|
class Responses:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Just a namespace.
|
|
|
|
|
|
|
|
Describes API response status codes.
|
|
|
|
"""
|
|
|
|
|
|
|
|
OK = {
|
2022-03-19 17:11:52 +00:00
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-20 03:45:40 +00:00
|
|
|
INSTALLED = {
|
2022-03-19 17:11:52 +00:00
|
|
|
"description": "kiwi-vpn already installed",
|
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-20 03:45:40 +00:00
|
|
|
NOT_INSTALLED = {
|
2022-03-19 17:11:52 +00:00
|
|
|
"description": "kiwi-vpn not installed",
|
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-20 03:45:40 +00:00
|
|
|
NEEDS_USER = {
|
2022-03-19 17:11:52 +00:00
|
|
|
"description": "Must be logged in",
|
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-20 03:45:40 +00:00
|
|
|
NEEDS_ADMIN = {
|
2022-03-19 17:11:52 +00:00
|
|
|
"description": "Must be admin",
|
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-20 03:45:40 +00:00
|
|
|
ENTRY_EXISTS = {
|
2022-03-19 18:06:28 +00:00
|
|
|
"description": "Entry exists in database",
|
|
|
|
"content": None,
|
|
|
|
}
|
2022-03-19 17:11:52 +00:00
|
|
|
|
|
|
|
|
2022-03-19 04:07:19 +00:00
|
|
|
async def get_current_user(
|
|
|
|
token: str = Depends(oauth2_scheme),
|
|
|
|
db: Session | None = Depends(Connection.get),
|
|
|
|
current_config: Config | None = Depends(Config.load),
|
|
|
|
):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Get the currently logged-in user from the database.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# can't connect to an unconfigured database
|
2022-03-19 04:07:19 +00:00
|
|
|
if current_config is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
username = await current_config.jwt.decode_token(token)
|
2022-03-20 02:32:40 +00:00
|
|
|
user = User.from_db(db, username)
|
2022-03-19 04:07:19 +00:00
|
|
|
|
|
|
|
return user
|