kiwi-vpn/api/kiwi_vpn_api/routers/_common.py

111 lines
2.6 KiB
Python
Raw Normal View History

2022-03-20 03:45:40 +00:00
"""
Common dependencies for routers.
"""
2022-03-23 00:39:19 +00:00
from fastapi import Depends, HTTPException, status
2022-03-19 04:07:19 +00:00
from fastapi.security import OAuth2PasswordBearer
2022-03-28 20:18:19 +00:00
from ..config import Config, Settings
2022-03-29 16:35:41 +00:00
from ..db import Device, User
2022-03-19 04:07:19 +00:00
2022-03-28 20:18:19 +00:00
oauth2_scheme = OAuth2PasswordBearer(
tokenUrl=f"{Settings._.api_v1_prefix}/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-30 02:02:45 +00:00
NEEDS_PERMISSION = {
2022-03-31 16:49:04 +00:00
"description": "Operation not permitted",
2022-03-23 15:44:35 +00:00
"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-23 13:25:00 +00:00
ENTRY_DOESNT_EXIST = {
"description": "Entry does not exist in database",
"content": None,
}
2022-03-19 17:11:52 +00:00
2022-03-30 20:57:09 +00:00
async def get_current_config(
2022-03-19 04:07:19 +00:00
current_config: Config | None = Depends(Config.load),
2022-03-30 20:57:09 +00:00
) -> Config:
2022-03-20 03:45:40 +00:00
"""
2022-03-30 20:57:09 +00:00
Get the current configuration if it exists.
2022-03-20 03:45:40 +00:00
"""
2022-03-30 20:57:09 +00:00
# fail if not configured
2022-03-19 04:07:19 +00:00
if current_config is None:
2022-03-24 15:51:36 +00:00
raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST)
2022-03-19 04:07:19 +00:00
2022-03-30 20:57:09 +00:00
return current_config
async def get_current_user(
token: str = Depends(oauth2_scheme),
current_config: Config = Depends(get_current_config),
) -> User:
"""
Get the currently logged-in user if it exists.
"""
2022-03-31 16:32:07 +00:00
# don't use error 404 here - possible user enumeration
2022-03-19 04:07:19 +00:00
2022-03-23 01:14:02 +00:00
# fail if not requested by a user
2022-03-31 16:32:07 +00:00
if (username := await current_config.jwt.decode_token(token)) is None:
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
2022-03-29 23:36:23 +00:00
if (user := User.get(username)) is None:
2022-03-29 16:12:29 +00:00
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
2022-03-23 01:14:02 +00:00
2022-03-29 23:36:23 +00:00
return user
2022-03-24 15:51:36 +00:00
2022-03-29 00:01:12 +00:00
async def get_user_by_name(
2022-03-23 01:14:02 +00:00
user_name: str,
2022-03-30 20:57:09 +00:00
_: Config = Depends(get_current_config),
2022-03-29 16:12:55 +00:00
) -> User | None:
2022-03-23 01:14:02 +00:00
"""
2022-03-29 00:01:12 +00:00
Get a user by name.
2022-03-23 01:14:02 +00:00
"""
2022-03-29 16:12:55 +00:00
return User.get(user_name)
2022-03-29 15:56:12 +00:00
async def get_device_by_id(
device_id: int,
2022-03-30 20:57:09 +00:00
current_config: Config = Depends(get_current_config),
2022-03-29 15:56:12 +00:00
) -> Device | None:
# can't connect to an unconfigured database
if current_config is None:
raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST)
# fail if device doesn't exist
2022-03-29 23:36:23 +00:00
if (device := Device.get(device_id)) is None:
2022-03-29 15:56:12 +00:00
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
return device