[somebot] /ta-announce <text>
authorSomeone <someone@somenet.org>
Wed, 8 Dec 2021 18:38:38 +0000 (19:38 +0100)
committerSomeone <someone@somenet.org>
Wed, 8 Dec 2021 18:38:38 +0000 (19:38 +0100)
modules/TACommandAnnounce.py [new file with mode: 0644]

diff --git a/modules/TACommandAnnounce.py b/modules/TACommandAnnounce.py
new file mode 100644 (file)
index 0000000..5880498
--- /dev/null
@@ -0,0 +1,22 @@
+# Mattermost Bot module.
+#  Copyright (c) 2016-2021 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
+#  published under MIT-License
+
+
+
+from AbstractCommand import *
+class TACommandAnnounce(AbstractCommand):
+    TRIGGER = "ta-announce"
+    CONFIG = {"display_name": "somebot-command", "auto_complete": True,
+              "auto_complete_hint": "<text>",
+             }
+    CONFIG["auto_complete_desc"] = CONFIG["description"] = "Posts <text> into the current team\"s announcement channel. [TEAM_ADMIN]"
+
+
+    def on_POST(self, request, data):
+        self._require_team_admin(data) # will throw an exception if not. (Dont try-except: Its handled up the stack.)
+
+        channel = self.bot.api.get_channel_by_name(data["team_id"], "town-square")
+        self.bot.api.create_post(channel["id"], data["text"])
+
+        request.cmd_respond_text_temp("### ``Done.`` :)")