1 # Mattermost Bot module.
2 # Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 # published under MIT-License
8 REX_linesplit = re.compile(r"\xa0|\t|\s{4}")
11 from AbstractCommand import AbstractCommand
12 class CommandTissJoin(AbstractCommand):
14 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
15 "auto_complete_hint": "<as-is-copy/paste of one TISS-LVA-Cockpit table>",
17 USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Parses input and tries to join every LVA-channel. There is no undo."
20 def on_POST(self, request, data):
22 lines = data["text"].splitlines()
24 lva_line = REX_linesplit.split(line)
28 lvaname = lva_line[0].strip().replace("&", " ").replace("-", " ").replace("|", " ").replace(",", " ").strip()
29 lvaname = re.sub(r"\d\d\d\.\d\d\d\s*\w\w\s*$", " ", lvaname).strip()
33 if lvaname.startswith("Titel Std") or lvaname.startswith("Summe "):
36 result += "\n+ ``"+lvaname+"``"
39 channel_results = self.bot.api.search_channel(self.TEAM_ID, lvaname[:60]) # max 60 char length
41 if not channel_results:
42 result += "\n + :stop_sign: could not find suitable channel"
44 elif len(channel_results) == 1:
45 channel = channel_results[0]
46 result += "\n + :white_check_mark: found channel: ~"+channel["name"]+"\n + trying to join..."
48 self.bot.api.add_user_to_channel(channel["id"], data["user_id"])
51 result += "\n + :warning: multiple channels found. Join the correct channel(s) by clicking on their name. If they are not clickable, click on ``More...`` to download the full channel-list. Close the window once it opens."
52 for channel in channel_results:
53 result += "\n + [~"+channel["name"]+"](https://mattermost.fsinf.at/w-inf-tuwien/channels/"+channel["name"]+")\n"
57 request.cmd_respond_text_temp("### ``TISS-Join results``\nFailed to detect any courses. :(")
59 request.cmd_respond_text_temp("### ``TISS-Join results``"+result)