text router rework: ticker comment "#", routing like image router

This commit is contained in:
Jörn-Michael Miehe 2022-09-02 12:50:43 +00:00
parent d934ba90b5
commit 9a350f6a71

View file

@ -1,27 +1,19 @@
import re import re
from typing import Iterator from typing import Iterator
from fastapi import APIRouter, Depends from fastapi import APIRouter, Depends, HTTPException, status
from markdown import markdown from markdown import markdown
from pydantic import BaseModel from webdav3.exceptions import RemoteResourceNotFound
from .. import CLIENT
from ..config import SETTINGS from ..config import SETTINGS
from ..dav_file import DavFile from ..dav_file import DavFile
router = APIRouter(prefix="/text", tags=["text"]) router = APIRouter(prefix="/text", tags=["text"])
@router.get("/message")
async def get_message() -> str:
message = await DavFile("message.txt").string
return markdown(
message
)
async def get_ticker_lines() -> Iterator[str]: async def get_ticker_lines() -> Iterator[str]:
ticker = await DavFile("ticker.txt").string ticker = await DavFile("text/ticker.txt").string
return ( return (
line.strip() line.strip()
@ -36,11 +28,11 @@ async def get_ticker_content_lines(
return ( return (
line line
for line in ticker_lines for line in ticker_lines
if not line.startswith(".") if not line.startswith("#")
) )
@router.get("/ticker/content") @router.get("/get/ticker")
async def get_ticker_content( async def get_ticker_content(
ticker_content_lines: Iterator[str] = Depends(get_ticker_content_lines), ticker_content_lines: Iterator[str] = Depends(get_ticker_content_lines),
) -> str: ) -> str:
@ -48,41 +40,81 @@ async def get_ticker_content(
SETTINGS.ticker_separator.join(ticker_content_lines) SETTINGS.ticker_separator.join(ticker_content_lines)
) )
_re_ticker_command_line = re.compile(
r"^\.([a-z]+)\s+(.*)$", _re_text_file = re.compile(
r"\.(txt|md)$",
flags=re.IGNORECASE, flags=re.IGNORECASE,
) )
class TickerCommand(BaseModel): async def get_text_file_names() -> Iterator[str]:
command: str try:
argument: str file_names = CLIENT.list("text")
return (
async def get_ticker_commands( name
ticker_lines: Iterator[str] = Depends(get_ticker_lines), for name in file_names
) -> Iterator[TickerCommand]: if _re_text_file.search(name)
return (
TickerCommand(
command=match.group(1),
argument=match.group(2),
) )
for line in ticker_lines
if (match := _re_ticker_command_line.match(line)) except RemoteResourceNotFound:
return iter(())
@router.get("/list", response_model=list[str])
async def list_texts(
text_file_names: Iterator[str] = Depends(get_text_file_names),
) -> list[str]:
return list(text_file_names)
async def find_file_names(
prefix: str = "",
text_file_names: Iterator[str] = Depends(get_text_file_names),
) -> Iterator[str]:
return (
file_name
for file_name in text_file_names
if file_name.lower().startswith(prefix.lower())
) )
@router.get("/ticker/commands", response_model=list[TickerCommand]) @router.get("/find/{prefix}", response_model=list[str])
async def get_ticker_commands( async def find_texts(
ticker_commands: Iterator[str] = Depends(get_ticker_commands) file_names: Iterator[str] = Depends(find_file_names),
) -> list[TickerCommand]: ) -> list[str]:
return list(ticker_commands) return list(file_names)
@router.get("/title") @router.get(
async def get_title() -> str: "/get/{prefix}",
title = await DavFile("title.txt").string responses={
status.HTTP_200_OK: {
"description": "Operation successful",
},
status.HTTP_404_NOT_FOUND: {
"description": "text file not found",
"content": None,
},
status.HTTP_409_CONFLICT: {
"description": "ambiguous text file name",
"content": None,
},
},
)
async def get_text(
file_names: Iterator[str] = Depends(find_file_names),
) -> str:
file_names = list(file_names)
if not (file_names := list(file_names)):
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
elif len(file_names) > 1:
raise HTTPException(status_code=status.HTTP_409_CONFLICT)
text = await DavFile(f"text/{file_names[0]}").string
return markdown( return markdown(
title text
) )