--- /dev/null
+# 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.`` :)")