microblog.pub/app/config.py

262 lines
6.9 KiB
Python
Raw Normal View History

2022-08-13 15:35:39 +02:00
import hashlib
import hmac
2022-06-22 20:11:22 +02:00
import os
2022-07-11 09:34:06 +02:00
import secrets
2022-06-22 20:11:22 +02:00
from pathlib import Path
import bcrypt
2022-07-11 09:34:06 +02:00
import itsdangerous
2022-06-22 20:11:22 +02:00
import pydantic
import tomli
from fastapi import Form
from fastapi import HTTPException
from fastapi import Request
2022-07-11 09:34:06 +02:00
from itsdangerous import URLSafeTimedSerializer
from loguru import logger
2022-10-19 20:46:01 +02:00
from mistletoe import markdown # type: ignore
2022-06-22 20:11:22 +02:00
from app.customization import _CUSTOM_ROUTES
2022-06-27 20:55:44 +02:00
from app.utils.emoji import _load_emojis
2022-08-24 09:02:20 +02:00
from app.utils.version import get_version_commit
2022-06-27 20:55:44 +02:00
2022-06-22 20:11:22 +02:00
ROOT_DIR = Path().parent.resolve()
2022-07-07 20:37:16 +02:00
_CONFIG_FILE = os.getenv("MICROBLOGPUB_CONFIG_FILE", "profile.toml")
2022-06-22 20:11:22 +02:00
2022-07-18 20:44:55 +02:00
VERSION_COMMIT = "dev"
try:
from app._version import VERSION_COMMIT # type: ignore
except ImportError:
2022-08-24 09:02:20 +02:00
VERSION_COMMIT = get_version_commit()
2022-07-18 20:44:55 +02:00
2022-08-13 15:35:39 +02:00
# Force reloading cache when the CSS is updated
CSS_HASH = "none"
try:
css_data = (ROOT_DIR / "app" / "static" / "css" / "main.css").read_bytes()
CSS_HASH = hashlib.md5(css_data, usedforsecurity=False).hexdigest()
except FileNotFoundError:
pass
2022-08-29 20:11:31 +02:00
# Force reloading cache when the JS is changed
JS_HASH = "none"
try:
# To keep things simple, we keep a single hash for the 2 files
js_data_common = (ROOT_DIR / "app" / "static" / "common-admin.js").read_bytes()
js_data_new = (ROOT_DIR / "app" / "static" / "new.js").read_bytes()
JS_HASH = hashlib.md5(
js_data_common + js_data_new, usedforsecurity=False
).hexdigest()
except FileNotFoundError:
pass
2022-09-08 20:00:02 +02:00
MOVED_TO_FILE = ROOT_DIR / "data" / "moved_to.dat"
def _get_moved_to() -> str | None:
if not MOVED_TO_FILE.exists():
return None
return MOVED_TO_FILE.read_text()
def set_moved_to(moved_to: str) -> None:
MOVED_TO_FILE.write_text(moved_to)
2022-07-04 21:45:23 +02:00
VERSION = f"2.0.0+{VERSION_COMMIT}"
2022-06-22 20:11:22 +02:00
USER_AGENT = f"microblogpub/{VERSION}"
AP_CONTENT_TYPE = "application/activity+json"
class _PrivacyReplace(pydantic.BaseModel):
domain: str
replace_by: str
2022-08-10 08:58:18 +02:00
class _ProfileMetadata(pydantic.BaseModel):
key: str
value: str
2022-08-15 10:15:00 +02:00
class _BlockedServer(pydantic.BaseModel):
hostname: str
reason: str | None = None
2022-06-22 20:11:22 +02:00
class Config(pydantic.BaseModel):
domain: str
username: str
admin_password: bytes
name: str
summary: str
https: bool
icon_url: str | None = None
image_url: str | None = None
2022-06-22 20:11:22 +02:00
secret: str
debug: bool = False
2022-07-30 08:46:29 +02:00
trusted_hosts: list[str] = ["127.0.0.1"]
manually_approves_followers: bool = False
privacy_replace: list[_PrivacyReplace] | None = None
2022-08-10 08:58:18 +02:00
metadata: list[_ProfileMetadata] | None = None
2022-08-04 19:10:57 +02:00
code_highlighting_theme = "friendly_grayscale"
2022-08-15 10:15:00 +02:00
blocked_servers: list[_BlockedServer] = []
2022-08-24 21:18:30 +02:00
custom_footer: str | None = None
2022-08-31 19:16:03 +02:00
emoji: str | None = None
also_known_as: str | None = None
2022-06-22 20:11:22 +02:00
hides_followers: bool = False
hides_following: bool = False
inbox_retention_days: int = 15
2022-11-09 21:26:43 +01:00
custom_content_security_policy: str | None = None
2022-06-22 20:11:22 +02:00
# Config items to make tests easier
2022-06-29 20:43:17 +02:00
sqlalchemy_database: str | None = None
2022-06-22 20:11:22 +02:00
key_path: str | None = None
2022-11-04 19:28:21 +01:00
# Only set when the app is served on a non-root path
id: str | None = None
2022-06-22 20:11:22 +02:00
def load_config() -> Config:
try:
return Config.parse_obj(
tomli.loads((ROOT_DIR / "data" / _CONFIG_FILE).read_text())
)
except FileNotFoundError:
2022-06-22 20:48:48 +02:00
raise ValueError(
f"Please run the configuration wizard, {_CONFIG_FILE} is missing"
)
2022-06-22 20:11:22 +02:00
def is_activitypub_requested(req: Request) -> bool:
accept_value = req.headers.get("accept")
if not accept_value:
return False
for val in {
"application/ld+json",
"application/activity+json",
}:
if accept_value.startswith(val):
return True
return False
def verify_password(pwd: str) -> bool:
return bcrypt.checkpw(pwd.encode(), CONFIG.admin_password)
CONFIG = load_config()
DOMAIN = CONFIG.domain
_SCHEME = "https" if CONFIG.https else "http"
ID = f"{_SCHEME}://{DOMAIN}"
2022-11-04 19:28:21 +01:00
# When running the app on a path, the ID maybe set by the config, but in this
# case, a valid webfinger must be served on the root domain
if CONFIG.id:
ID = CONFIG.id
2022-06-22 20:11:22 +02:00
USERNAME = CONFIG.username
MANUALLY_APPROVES_FOLLOWERS = CONFIG.manually_approves_followers
HIDES_FOLLOWERS = CONFIG.hides_followers
HIDES_FOLLOWING = CONFIG.hides_following
PRIVACY_REPLACE = None
if CONFIG.privacy_replace:
PRIVACY_REPLACE = {pr.domain: pr.replace_by for pr in CONFIG.privacy_replace}
2022-08-15 10:15:00 +02:00
BLOCKED_SERVERS = {blocked_server.hostname for blocked_server in CONFIG.blocked_servers}
ALSO_KNOWN_AS = CONFIG.also_known_as
2022-11-09 21:26:43 +01:00
CUSTOM_CONTENT_SECURITY_POLICY = CONFIG.custom_content_security_policy
2022-08-15 10:15:00 +02:00
INBOX_RETENTION_DAYS = CONFIG.inbox_retention_days
2022-08-24 21:18:30 +02:00
CUSTOM_FOOTER = (
2022-10-19 20:46:01 +02:00
markdown(CONFIG.custom_footer.replace("{version}", VERSION))
2022-08-24 21:18:30 +02:00
if CONFIG.custom_footer
else None
)
2022-06-22 20:11:22 +02:00
BASE_URL = ID
DEBUG = CONFIG.debug
2022-06-29 20:43:17 +02:00
DB_PATH = CONFIG.sqlalchemy_database or ROOT_DIR / "data" / "microblogpub.db"
SQLALCHEMY_DATABASE_URL = f"sqlite:///{DB_PATH}"
2022-06-22 20:11:22 +02:00
KEY_PATH = (
(ROOT_DIR / CONFIG.key_path) if CONFIG.key_path else ROOT_DIR / "data" / "key.pem"
)
2022-06-27 20:55:44 +02:00
EMOJIS = "😺 😸 😹 😻 😼 😽 🙀 😿 😾"
2022-08-31 19:16:03 +02:00
if CONFIG.emoji:
EMOJIS = CONFIG.emoji
2022-06-27 20:55:44 +02:00
# Emoji template for the FE
2022-11-04 19:28:21 +01:00
EMOJI_TPL = (
'<img src="{base_url}/static/twemoji/{filename}.svg" alt="{raw}" class="emoji">'
)
2022-06-27 20:55:44 +02:00
_load_emojis(ROOT_DIR, BASE_URL)
2022-06-22 20:11:22 +02:00
2022-08-04 19:10:57 +02:00
CODE_HIGHLIGHTING_THEME = CONFIG.code_highlighting_theme
2022-09-08 20:00:02 +02:00
MOVED_TO = _get_moved_to()
2022-06-22 20:11:22 +02:00
_NavBarItem = tuple[str, str]
class NavBarItems:
EXTRA_NAVBAR_ITEMS: list[_NavBarItem] = []
INDEX_NAVBAR_ITEM: _NavBarItem | None = None
NOTES_PATH = "/"
def load_custom_routes() -> None:
try:
from data import custom_routes # type: ignore # noqa: F401
except ImportError:
pass
for path, custom_handler in _CUSTOM_ROUTES.items():
# If a handler wants to replace the root, move the index to /notes
if path == "/":
NavBarItems.NOTES_PATH = "/notes"
NavBarItems.INDEX_NAVBAR_ITEM = (path, custom_handler.title)
else:
if custom_handler.show_in_navbar:
NavBarItems.EXTRA_NAVBAR_ITEMS.append((path, custom_handler.title))
2022-07-11 09:42:39 +02:00
session_serializer = URLSafeTimedSerializer(
CONFIG.secret,
salt=f"{ID}.session",
)
2022-07-11 09:34:06 +02:00
csrf_serializer = URLSafeTimedSerializer(
2022-07-11 09:42:39 +02:00
CONFIG.secret,
salt=f"{ID}.csrf",
2022-06-22 20:11:22 +02:00
)
def generate_csrf_token() -> str:
2022-07-11 09:34:06 +02:00
return csrf_serializer.dumps(secrets.token_hex(16)) # type: ignore
2022-06-22 20:11:22 +02:00
def verify_csrf_token(
csrf_token: str = Form(),
redirect_url: str | None = Form(None),
) -> None:
please_try_again = "please try again"
if redirect_url:
please_try_again = f'<a href="{redirect_url}">please try again</a>'
2022-07-11 09:34:06 +02:00
try:
2022-07-11 09:42:39 +02:00
csrf_serializer.loads(csrf_token, max_age=1800)
2022-07-11 09:34:06 +02:00
except (itsdangerous.BadData, itsdangerous.SignatureExpired):
logger.exception("Failed to verify CSRF token")
raise HTTPException(
status_code=403,
2022-09-16 18:37:09 +02:00
detail=f"The security token has expired, {please_try_again}",
)
2022-06-22 20:11:22 +02:00
return None
2022-11-18 06:35:04 +01:00
def hmac_sha256() -> hmac.HMAC:
return hmac.new(CONFIG.secret.encode(), digestmod=hashlib.sha256)