2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Configuration definition.
|
|
|
|
|
|
|
|
Converts per-run (environment) variables and config files into the
|
|
|
|
"python world" using `pydantic`.
|
|
|
|
|
|
|
|
Pydantic models might have convenience methods attached.
|
|
|
|
"""
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import functools
|
2022-03-18 18:22:17 +00:00
|
|
|
import json
|
2022-03-19 02:22:49 +00:00
|
|
|
from datetime import datetime, timedelta
|
2022-03-18 18:24:09 +00:00
|
|
|
from enum import Enum
|
2022-03-20 02:25:42 +00:00
|
|
|
from pathlib import Path
|
|
|
|
from secrets import token_urlsafe
|
2022-03-16 00:23:57 +00:00
|
|
|
|
2022-03-19 02:22:49 +00:00
|
|
|
from jose import JWTError, jwt
|
2022-03-16 00:23:57 +00:00
|
|
|
from jose.constants import ALGORITHMS
|
2022-03-15 16:19:37 +00:00
|
|
|
from passlib.context import CryptContext
|
2022-03-19 16:57:25 +00:00
|
|
|
from pydantic import BaseModel, BaseSettings, Field, validator
|
2022-03-18 18:22:17 +00:00
|
|
|
from sqlalchemy import create_engine
|
2022-03-18 18:24:09 +00:00
|
|
|
from sqlalchemy.engine import Engine
|
2022-03-16 00:23:57 +00:00
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
|
|
|
|
class Settings(BaseSettings):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Per-run settings
|
|
|
|
"""
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
production_mode: bool = False
|
2022-03-20 02:25:42 +00:00
|
|
|
data_dir: Path = Path("./tmp")
|
2022-03-18 22:43:02 +00:00
|
|
|
openapi_url: str = "/openapi.json"
|
|
|
|
docs_url: str | None = "/docs"
|
2022-03-19 02:23:29 +00:00
|
|
|
redoc_url: str | None = "/redoc"
|
2022-03-18 22:43:02 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@functools.lru_cache
|
|
|
|
def get() -> Settings:
|
|
|
|
return Settings()
|
2022-03-17 22:47:31 +00:00
|
|
|
|
2022-03-20 03:45:40 +00:00
|
|
|
@property
|
|
|
|
def config_file(self) -> Path:
|
|
|
|
return self.data_dir.joinpath("config.json")
|
|
|
|
|
2022-03-16 00:23:57 +00:00
|
|
|
|
|
|
|
class DBType(Enum):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Supported database types
|
|
|
|
"""
|
|
|
|
|
2022-03-16 00:23:57 +00:00
|
|
|
sqlite = "sqlite"
|
|
|
|
mysql = "mysql"
|
|
|
|
|
|
|
|
|
|
|
|
class DBConfig(BaseModel):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Database connection configuration
|
|
|
|
"""
|
|
|
|
|
2022-03-19 03:31:15 +00:00
|
|
|
type: DBType = DBType.sqlite
|
|
|
|
user: str | None = None
|
|
|
|
password: str | None = None
|
|
|
|
host: str | None = None
|
2022-03-20 02:25:42 +00:00
|
|
|
database: str | None = Settings.get().data_dir.joinpath("vpn.db")
|
2022-03-19 03:31:15 +00:00
|
|
|
|
|
|
|
mysql_driver: str = "pymysql"
|
|
|
|
mysql_args: list[str] = ["charset=utf8mb4"]
|
2022-03-16 00:23:57 +00:00
|
|
|
|
2022-03-18 18:22:17 +00:00
|
|
|
@property
|
2022-03-19 02:28:18 +00:00
|
|
|
async def db_engine(self) -> Engine:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Construct an SQLAlchemy engine
|
|
|
|
"""
|
|
|
|
|
2022-03-19 03:31:15 +00:00
|
|
|
if self.type is DBType.sqlite:
|
|
|
|
# SQLite backend
|
|
|
|
return create_engine(
|
|
|
|
f"sqlite:///{self.database}",
|
|
|
|
connect_args={"check_same_thread": False},
|
|
|
|
)
|
|
|
|
|
|
|
|
elif self.type is DBType.mysql:
|
|
|
|
# MySQL backend
|
|
|
|
if self.mysql_args:
|
|
|
|
args_str = "?" + "&".join(self.mysql_args)
|
|
|
|
else:
|
|
|
|
args_str = ""
|
|
|
|
|
|
|
|
return create_engine(
|
|
|
|
f"mysql+{self.mysql_driver}://"
|
|
|
|
f"{self.user}:{self.password}@{self.host}"
|
|
|
|
f"/{self.database}{args_str}",
|
|
|
|
pool_recycle=3600,
|
|
|
|
)
|
2022-03-18 18:22:17 +00:00
|
|
|
|
2022-03-16 00:23:57 +00:00
|
|
|
|
|
|
|
class JWTConfig(BaseModel):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Configuration for JSON Web Tokens
|
|
|
|
"""
|
|
|
|
|
2022-03-17 23:00:49 +00:00
|
|
|
secret: str | None = None
|
2022-03-16 00:23:57 +00:00
|
|
|
hash_algorithm: str = ALGORITHMS.HS256
|
|
|
|
expiry_minutes: int = 30
|
|
|
|
|
2022-03-19 16:57:25 +00:00
|
|
|
@validator("secret")
|
|
|
|
@classmethod
|
|
|
|
def ensure_secret(cls, value: str | None) -> str:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Generate a per-run secret if `None` was loaded from the config file
|
|
|
|
"""
|
|
|
|
|
2022-03-19 16:57:25 +00:00
|
|
|
if value is None:
|
2022-03-20 02:25:53 +00:00
|
|
|
return token_urlsafe(128)
|
2022-03-19 16:57:25 +00:00
|
|
|
|
|
|
|
return value
|
|
|
|
|
2022-03-19 02:38:32 +00:00
|
|
|
async def create_token(
|
2022-03-19 02:22:49 +00:00
|
|
|
self,
|
|
|
|
username: str,
|
|
|
|
expiry_minutes: int | None = None,
|
|
|
|
) -> str:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Build and sign a JSON Web Token
|
|
|
|
"""
|
|
|
|
|
2022-03-19 02:22:49 +00:00
|
|
|
if expiry_minutes is None:
|
|
|
|
expiry_minutes = self.expiry_minutes
|
|
|
|
|
|
|
|
return jwt.encode(
|
|
|
|
{
|
|
|
|
"sub": username,
|
|
|
|
"exp": datetime.utcnow() + timedelta(minutes=expiry_minutes),
|
|
|
|
},
|
|
|
|
self.secret,
|
|
|
|
algorithm=self.hash_algorithm,
|
|
|
|
)
|
|
|
|
|
2022-03-19 02:38:32 +00:00
|
|
|
async def decode_token(
|
2022-03-19 02:22:49 +00:00
|
|
|
self,
|
|
|
|
token: str,
|
|
|
|
) -> str | None:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Verify a JSON Web Token, then extract the username
|
|
|
|
"""
|
|
|
|
|
2022-03-19 02:22:49 +00:00
|
|
|
# decode JWT token
|
|
|
|
try:
|
|
|
|
payload = jwt.decode(
|
|
|
|
token,
|
|
|
|
self.secret,
|
|
|
|
algorithms=[self.hash_algorithm],
|
|
|
|
)
|
|
|
|
|
|
|
|
except JWTError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# check expiry
|
|
|
|
expiry = payload.get("exp")
|
|
|
|
if expiry is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if datetime.fromtimestamp(expiry) < datetime.utcnow():
|
|
|
|
return None
|
|
|
|
|
|
|
|
# get username
|
|
|
|
username = payload.get("sub")
|
|
|
|
if username is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return username
|
|
|
|
|
2022-03-16 00:23:57 +00:00
|
|
|
|
|
|
|
class CryptoConfig(BaseModel):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Configuration for hash algorithms
|
|
|
|
"""
|
|
|
|
|
2022-03-16 00:23:57 +00:00
|
|
|
schemes: list[str] = ["bcrypt"]
|
|
|
|
|
2022-03-27 01:17:48 +00:00
|
|
|
@property
|
|
|
|
def crypt_context_sync(self) -> CryptContext:
|
|
|
|
return CryptContext(
|
|
|
|
schemes=self.schemes,
|
|
|
|
deprecated="auto",
|
|
|
|
)
|
|
|
|
|
2022-03-18 17:36:44 +00:00
|
|
|
@property
|
2022-03-19 02:28:18 +00:00
|
|
|
async def crypt_context(self) -> CryptContext:
|
2022-03-18 17:36:44 +00:00
|
|
|
return CryptContext(
|
2022-03-18 18:22:17 +00:00
|
|
|
schemes=self.schemes,
|
2022-03-18 17:36:44 +00:00
|
|
|
deprecated="auto",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
class Config(BaseModel):
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Configuration for `kiwi-vpn-api`
|
|
|
|
"""
|
|
|
|
|
2022-03-18 18:22:17 +00:00
|
|
|
db: DBConfig = Field(default_factory=DBConfig)
|
|
|
|
jwt: JWTConfig = Field(default_factory=JWTConfig)
|
|
|
|
crypto: CryptoConfig = Field(default_factory=CryptoConfig)
|
2022-03-18 17:36:44 +00:00
|
|
|
|
2022-03-27 01:17:48 +00:00
|
|
|
@staticmethod
|
|
|
|
def load_sync() -> Config | None:
|
|
|
|
"""
|
|
|
|
Load configuration from config file
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(Settings.get().config_file, "r") as config_file:
|
|
|
|
return Config.parse_obj(json.load(config_file))
|
|
|
|
|
|
|
|
except FileNotFoundError:
|
|
|
|
return None
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
@staticmethod
|
2022-03-19 02:38:32 +00:00
|
|
|
async def load() -> Config | None:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Load configuration from config file
|
|
|
|
"""
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
try:
|
|
|
|
with open(Settings.get().config_file, "r") as config_file:
|
|
|
|
return Config.parse_obj(json.load(config_file))
|
|
|
|
|
|
|
|
except FileNotFoundError:
|
|
|
|
return None
|
|
|
|
|
2022-03-19 02:38:32 +00:00
|
|
|
async def save(self) -> None:
|
2022-03-20 03:45:40 +00:00
|
|
|
"""
|
|
|
|
Save configuration to config file
|
|
|
|
"""
|
|
|
|
|
2022-03-18 22:43:02 +00:00
|
|
|
with open(Settings.get().config_file, "w") as config_file:
|
2022-03-19 02:28:18 +00:00
|
|
|
config_file.write(self.json(indent=2))
|