llplenum/llplenum

57 lines
1.9 KiB
Python
Executable File

#!/usr/bin/env python3
import datetime
import re
import subprocess
import sys
months = ["",
"Januar", "Februar", "März",
"April", "Mai", "Juni",
"Juli", "August", "September",
"Oktober", "November", "Dezember"]
clipboard = subprocess.check_output(["xclip", "-out", "-selection", "clipboard"]).decode()
m = re.match(r"# ([0-9][0-9]+)\. Plenum .+ ([0-9]{1,2})\. (" + "|".join(months[1:]) + ") (20[0-9]{2})",
clipboard)
if not m:
print("Error: Überschrift nicht erkannt.", file=sys.stderr)
sys.exit(1)
num = int(m.group(1))
month_name = m.group(3)
year = int(m.group(4))
try:
month = months.index(month_name)
except ValueError:
print("Error: Ungültiger Monat.", file=sys.stderr)
sys.exit(2)
year_earlier = (datetime.date(year, month, 1) - datetime.timedelta(days=31)).year
year_later = (datetime.date(year, month, 1) + datetime.timedelta(days=31)).year
month_earlier = month - 1
if month_earlier == 0:
month_earlier = 12
month_later = month + 1
if month_later == 13:
month_later = 1
month_name = month_name.lower()
earlier = "verein:plenum:{}_{}_{}".format(str(num - 1).rjust(3, "0"),
months[month_earlier].lower().replace("ä", "ae"),
year_earlier)
later = "verein:plenum:{}_{}_{}".format(str(num + 1).rjust(3, "0"),
months[month_later].lower().replace("ä", "ae"),
year_later)
links = "[⇐ vorheriges Plenum]({}) | [nächstes Plenum ⇒]({})".format(earlier, later)
markdown = "{}\n\n{}".format(links, clipboard)
output = f"<!DOCTYPE markdown>\n\n{markdown}"
replaced = output.replace("[x]", "<fs x-large>☑</fs>").replace("[ ]", "<fs x-large>☐</fs>")
subprocess.run(["xclip", "-in", "-selection", "clipboard"], input=replaced.encode())
print("Dokuwiki-Code kopiert.")