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
5 from inspect import cleandoc
8 # pylint: disable=wrong-import-position
9 from AbstractCommand import AbstractCommand
10 class CommandPlenum(AbstractCommand):
12 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
13 "auto_complete_hint": "['oida'|'oidaaa']",
15 CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Remind of plenum."
16 USEINFO = cleandoc("""
17 Use ``/plenum`` optionally with one of the following arguments ``'oida'|'oidaaa'`` to remind a person to come to plenum.
21 def on_POST(self, request, data):
22 msg = "## ``Plenum ist bald!``\nDa dies unser wichtigstes Entscheidungsfindungsgremium ist, wär es cool, wenn auch du vorbeischauen würdest. @all\n:warning: https://talk.fsinf.at/plenum\n"
24 if data["text"] == "":
27 elif data["text"] == "oida":
28 msg = "***"+msg.upper()+"***"
30 elif data["text"] == "oidaaa":
31 msg = "PLEEEEeeEeEEnum... PleeEeeeEEeeEEeeeeeEeEeeeeeenum ...\nhttps://www.youtube.com/watch?v=Y3-VTt5CMUM @all"
34 request.respond_cmd_err("``/"+self.TRIGGER+"`` allowed parameters: none, 'oida', 'oidaaa'. :)")
37 request.respond_cmd_chan(msg)