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 CommandThreads(AbstractCommand):
12 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
13 "auto_complete_hint": "['oida'|'oidaaa'|'oida minusf'|'oida?']",
15 CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Remind of thread usage."
16 USEINFO = cleandoc("""
17 Use ``/threads`` optionally with one of the following arguments ``'oida'|'oidaaa'|'oida minusf'|'oida?'`` to remind a person to use threads.
21 def on_POST(self, request, data):
22 msg = "Bitte verwende Threads, um die Kommunikation übersichtlicher zu gestalten.\nThread-view öffnen mit: shift+up, oder dem kleinen Pfeil."
24 if data["text"] == "":
27 elif data["text"] == "oida":
28 msg = "***"+msg.upper()+"***"
30 elif data["text"] == "oidaaa":
32 ## :warning::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down:
33 ## :point_right: BITTE VERWENDE ``THREADS``, UM DIE KOMMUNIKATION ÜBERSICHTLICHER ZU GESTALTEN.
34 ## :point_right: THREAD-VIEW ÖFFNEN MIT: SHIFT+UP, ODER DEM KLEINEN PFEIL.
35 ## :warning::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2:
38 elif data["text"] == "oida?":
39 msg = "``/threads`` ... oida?\n-> https://www.youtube.com/watch?v=iuXR53ex4iI"
41 elif data["text"] == "oida minusf":
43 ## :warning::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down::point_down:
44 ## :point_right: ``OIDA! THREADS OIDA!``
45 ## :point_right: ``OIDA, OIDA, THREAD-VIEW OIDA, OIDA.``
46 ## :warning::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up::point_up_2::point_up:
50 request.respond_cmd_err("``/"+self.TRIGGER+"`` needs either no parameter or 'oida', 'oidaaa', 'oida minusf', 'oida?' :)")
53 request.respond_cmd_chan(msg)