actual cmdline parsing in tg
This commit is contained in:
parent
d443fc6d7e
commit
8915a36b3d
2 changed files with 116 additions and 19 deletions
|
@ -2,18 +2,22 @@ from genericpath import isdir
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
from typing import Optional
|
from typing import List, Optional
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|
||||||
from tempfile import NamedTemporaryFile
|
from tempfile import NamedTemporaryFile
|
||||||
|
|
||||||
from telegram import Update, ForceReply
|
from telegram import Update
|
||||||
from telegram.ext import (
|
from telegram.ext import (
|
||||||
Updater,
|
Updater,
|
||||||
CommandHandler,
|
CommandHandler,
|
||||||
DictPersistence,
|
DictPersistence,
|
||||||
CallbackContext,
|
CallbackContext,
|
||||||
|
defaults,
|
||||||
)
|
)
|
||||||
|
from telegram.parsemode import ParseMode
|
||||||
|
from parser import SafeArgumentParser, safe_str
|
||||||
|
|
||||||
|
|
||||||
class KollagenBot:
|
class KollagenBot:
|
||||||
|
@ -24,26 +28,78 @@ class KollagenBot:
|
||||||
self.kollagen_path = kollagen_path
|
self.kollagen_path = kollagen_path
|
||||||
self.base_dir = base_dir
|
self.base_dir = base_dir
|
||||||
|
|
||||||
self.updater = Updater(tg_token, persistence=DictPersistence(user_data_json="{}"))
|
self._init_parser()
|
||||||
|
|
||||||
|
self.updater = Updater(
|
||||||
|
tg_token, persistence=DictPersistence(user_data_json="{}")
|
||||||
|
)
|
||||||
|
|
||||||
dispatcher = self.updater.dispatcher
|
dispatcher = self.updater.dispatcher
|
||||||
|
|
||||||
dispatcher.add_handler(CommandHandler("start", self.tg_start))
|
dispatcher.add_handler(CommandHandler("start", self.tg_start))
|
||||||
dispatcher.add_handler(CommandHandler("list_modes", self.tg_list_modes))
|
dispatcher.add_handler(CommandHandler("help", self.tg_help))
|
||||||
dispatcher.add_handler(CommandHandler("generate", self.tg_generate))
|
dispatcher.add_handler(CommandHandler("generate", self.tg_generate))
|
||||||
dispatcher.add_handler(CommandHandler("g", self.tg_generate))
|
dispatcher.add_handler(CommandHandler("g", self.tg_generate))
|
||||||
dispatcher.add_handler(CommandHandler("regenerate", self.tg_regenerate))
|
dispatcher.add_handler(CommandHandler("regenerate", self.tg_regenerate))
|
||||||
dispatcher.add_handler(CommandHandler("r", self.tg_regenerate))
|
dispatcher.add_handler(CommandHandler("r", self.tg_regenerate))
|
||||||
dispatcher.add_error_handler(self.tg_error)
|
dispatcher.add_error_handler(self.tg_error)
|
||||||
|
|
||||||
|
def _init_parser(self):
|
||||||
|
parser = SafeArgumentParser(prog="/generate", add_help=False)
|
||||||
|
parser.add_argument(
|
||||||
|
"directories",
|
||||||
|
metavar="dir",
|
||||||
|
type=safe_str,
|
||||||
|
nargs="*",
|
||||||
|
default=[self.base_dir] if self.base_dir else [],
|
||||||
|
help="Directories to process. By default, the entire directory is processed.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-m",
|
||||||
|
dest="mode",
|
||||||
|
metavar="mode",
|
||||||
|
choices=self._get_modes(),
|
||||||
|
nargs="?",
|
||||||
|
const=True,
|
||||||
|
help=f"Which collage mode to use. By default, one is chosen at random. When no value is specified, all modes are listed.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-n",
|
||||||
|
dest="num_images",
|
||||||
|
metavar="N",
|
||||||
|
type=int,
|
||||||
|
help=f"How many images to have in a collage. Random (2<n<5) by default.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-w",
|
||||||
|
dest="width",
|
||||||
|
type=int,
|
||||||
|
default=640,
|
||||||
|
help=f"Width of resulting output (in px). 640px by default.",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-h",
|
||||||
|
dest="height",
|
||||||
|
type=int,
|
||||||
|
default=640,
|
||||||
|
help=f"Height of resulting output (in px). 640px by default.",
|
||||||
|
)
|
||||||
|
self.parser = parser
|
||||||
|
|
||||||
|
def _get_modes(self):
|
||||||
|
modes = subprocess.run(
|
||||||
|
[self.kollagen_path, "-m"], check=True, capture_output=True
|
||||||
|
)
|
||||||
|
return modes.stdout.decode("utf-8").strip().split(", ")
|
||||||
|
|
||||||
def tg_start(self, update: Update, context: CallbackContext):
|
def tg_start(self, update: Update, context: CallbackContext):
|
||||||
update.message.reply_text("Hi! Check out https://gitlab.com/tmladek/kollagen")
|
update.message.reply_text("Hi! Check out https://gitlab.com/tmladek/kollagen")
|
||||||
self._process("", update)
|
self._process([], update)
|
||||||
|
|
||||||
def tg_generate(self, update: Update, context: CallbackContext):
|
def tg_generate(self, update: Update, context: CallbackContext):
|
||||||
cmd_line = update.message.text.split(" ")[1:]
|
cmd_line = update.message.text.split(" ")[1:]
|
||||||
self._process(cmd_line, update)
|
success = self._process(cmd_line, update)
|
||||||
if context.user_data is not None:
|
if success and context.user_data is not None:
|
||||||
context.user_data["last_cmd_line"] = cmd_line
|
context.user_data["last_cmd_line"] = cmd_line
|
||||||
|
|
||||||
def tg_regenerate(self, update: Update, context: CallbackContext):
|
def tg_regenerate(self, update: Update, context: CallbackContext):
|
||||||
|
@ -52,31 +108,56 @@ class KollagenBot:
|
||||||
else:
|
else:
|
||||||
update.message.reply_text("No previous command to regenerate!")
|
update.message.reply_text("No previous command to regenerate!")
|
||||||
|
|
||||||
def _process(self, cmd_line: str, update: Update):
|
def _process(self, cmd_line: List[str], update: Update):
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"Generating from {update.effective_user}, with cmd_line: `{cmd_line}`"
|
f"Generating from {update.effective_user}, with cmd_line: `{cmd_line}`"
|
||||||
)
|
)
|
||||||
|
args = self.parser.parse_args(cmd_line)
|
||||||
|
|
||||||
|
if args.mode is True:
|
||||||
|
update.message.reply_text(
|
||||||
|
f"Available modes: {', '.join(self._get_modes())}"
|
||||||
|
)
|
||||||
|
return False
|
||||||
|
|
||||||
directories = [
|
directories = [
|
||||||
os.path.join(self.base_dir or "./", re.sub(r"[^a-zA-Z0-9]", "", arg))
|
os.path.join(self.base_dir or "./", dir) for dir in args.directories
|
||||||
for arg in cmd_line
|
|
||||||
]
|
]
|
||||||
directories = [dir for dir in directories if os.path.isdir(dir)]
|
|
||||||
if len(directories) == 0 and self.base_dir:
|
mode = ["-m", args.mode] if args.mode else []
|
||||||
directories = [self.base_dir]
|
num_images = ["-n", args.num_images] if args.num_images else []
|
||||||
|
|
||||||
with NamedTemporaryFile(suffix=".png") as ntf:
|
with NamedTemporaryFile(suffix=".png") as ntf:
|
||||||
|
self.logger.debug(
|
||||||
|
f"Running: "
|
||||||
|
+ str(
|
||||||
|
[
|
||||||
|
self.kollagen_path,
|
||||||
|
"-r",
|
||||||
|
*directories,
|
||||||
|
"-w",
|
||||||
|
args.width,
|
||||||
|
"-h",
|
||||||
|
args.height,
|
||||||
|
*mode,
|
||||||
|
"-o",
|
||||||
|
ntf.name,
|
||||||
|
]
|
||||||
|
)
|
||||||
|
)
|
||||||
subprocess.run(
|
subprocess.run(
|
||||||
[self.kollagen_path, "-r", *directories, "-o", ntf.name],
|
[self.kollagen_path, "-r", *directories, *mode, "-o", ntf.name],
|
||||||
check=True,
|
check=True,
|
||||||
capture_output=True,
|
capture_output=True,
|
||||||
)
|
)
|
||||||
ntf.seek(0)
|
ntf.seek(0)
|
||||||
update.message.reply_photo(ntf)
|
update.message.reply_photo(ntf)
|
||||||
|
return True
|
||||||
|
|
||||||
def tg_list_modes(self, update: Update, context: CallbackContext):
|
def tg_help(self, update: Update, context: CallbackContext):
|
||||||
modes = subprocess.run(
|
update.message.reply_text(
|
||||||
[self.kollagen_path, "-m"], check=True, capture_output=True
|
f"```{self.parser.format_help()}```", parse_mode=ParseMode.MARKDOWN
|
||||||
)
|
)
|
||||||
update.message.reply_text(f"Available modes: {modes.stdout.decode('utf-8')}")
|
|
||||||
|
|
||||||
def tg_error(self, update: object, context: CallbackContext) -> None:
|
def tg_error(self, update: object, context: CallbackContext) -> None:
|
||||||
self.logger.error(
|
self.logger.error(
|
||||||
|
@ -99,7 +180,7 @@ class KollagenBot:
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
||||||
level=logging.INFO,
|
level=getattr(logging, os.getenv("LOG_LEVEL", "info").upper()),
|
||||||
)
|
)
|
||||||
|
|
||||||
tg_token = os.getenv("TG_TOKEN")
|
tg_token = os.getenv("TG_TOKEN")
|
||||||
|
|
16
tgbot/kollagen-bot/parser.py
Normal file
16
tgbot/kollagen-bot/parser.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
import argparse
|
||||||
|
import re
|
||||||
|
|
||||||
|
|
||||||
|
class ArgumentParserError(RuntimeError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class SafeArgumentParser(argparse.ArgumentParser):
|
||||||
|
def error(self, message):
|
||||||
|
raise ArgumentParserError(message)
|
||||||
|
|
||||||
|
def safe_str(val: str):
|
||||||
|
if re.findall(r'[^\w]', val):
|
||||||
|
raise RuntimeError("No special characters in arguments allowed!")
|
||||||
|
return val
|
Loading…
Reference in a new issue