import royalnet.engineer as engi from royalnet.engineer import router import royalnet.scrolls as sc import royalnet_telethon as rt import royalnet_discordpy as rd import pathlib import re import coloredlogs from . import commands from .database import engine, base coloredlogs.install(level="DEBUG", isatty=True) config = sc.Scroll.from_file(namespace="ROYALPACK", file_path=pathlib.Path("royalpack.cfg.toml")) engine_ = engine.lazy_engine.evaluate() base.Base.metadata.create_all(engine_) pda = engi.PDA(implementations=[ rt.TelethonPDAImplementation( name="1", tg_api_id=config["telegram.api.id"], tg_api_hash=config["telegram.api.hash"], bot_username=config["telegram.bot.username"], bot_token=config["telegram.bot.token"], ), rd.DiscordpyPDAImplementation( name="2", bot_token=config["discord.bot.token"], ), ]) r = router.Router() def register_telegram(conv, names, syntax=None): name_regex = rf"(?:{'|'.join(names)})" bot_regex = rf"(?:@{config['telegram.bot.username']})?" if syntax: syntax_regex = rf"\s+{syntax}" else: syntax_regex = "" regex = rf"^/{name_regex}{bot_regex}{syntax_regex}$" r.register_conversation(conv, names, [re.compile(regex)]) def register_discord(conv, names, syntax=None): name_regex = rf"(?:{'|'.join(names)})" if syntax: syntax_regex = rf"\s+{syntax}" else: syntax_regex = "" prefix_regex = rf"{config['discord.bot.prefix']}" regex = rf"^{prefix_regex}{name_regex}{syntax_regex}$" r.register_conversation(conv, names, [re.compile(regex)]) register_telegram(commands.ahnonlosoio, ["ahnonlosoio"]) register_telegram(commands.answer, ["answer"], r".+") register_telegram(commands.cat, ["cat", "catto", "gatto", "nyaa", "nya"]) register_telegram(commands.ciaoruozi, ["ciaoruozi"]) register_telegram(commands.color, ["color"]) register_telegram(commands.ping, ["ping"]) register_telegram(commands.ship, ["ship"], r"(?P[A-Za-z]+)[\s+&]+(?P[A-Za-z]+)") register_telegram(commands.emojify, ["emojify"], r"(?P.+)") register_telegram(commands.dog_any, ["dog", "doggo", "cane", "woof", "bau"]) register_telegram(commands.dog_breedlist, ["dog", "doggo", "cane", "woof", "bau"], r"(?:list|help|aiuto)") register_telegram(commands.dog_breed, ["dog", "doggo", "cane", "woof", "bau"], r"(?P[A-Za-z/]+)") register_telegram(commands.fortune, ["fortune"]) register_telegram(commands.pmots, ["pmots"]) register_telegram(commands.spell, ["spell", "cast"], r"(?P.+)") register_telegram(commands.smecds, ["smecds"]) register_telegram(commands.man, ["man", "help"], r"(?P[A-Za-z]+)") register_telegram(commands.login, ["login"]) register_telegram(commands.whoami, ["whoami"]) register_telegram(commands.fiorygi_balance_self, ["balance"]) register_telegram(commands.fiorygi_balance_other, ["balance"], r"(?P\S+)") register_telegram(commands.fiorygi_give, ["give"], r"(?P\S+)\s+(?P[0-9]+)\s+(?P.+)") register_telegram(commands.fiorygi_magick, ["magick"], r"(?P\S+)\s+(?P[0-9]+)\s+(?P.+)") register_telegram(commands.fiorygi_transactions_self, ["transactions"]) register_telegram(commands.fiorygi_transactions_other, ["transactions"], r"(?P\S+)") register_telegram(commands.fiorygi_dig, ["dig"], r"(?P[a-z0-9-]+)") register_telegram(commands.fiorygi_bury, ["bury"], r"(?P[a-z0-9-]+)\s+(?P[0-9]+)(?:\s+(?P.+))?") register_telegram(commands.version, ["version"]) register_discord(commands.ping, ["ping"]) pda.implementations["telethon.1"].register_conversation(r) pda.implementations["discordpy.2"].register_conversation(r) pda.run()