From 34a319d224e9d9bc4cd1c7ac41ba2d6abb90f0ec Mon Sep 17 00:00:00 2001 From: Someone Date: Wed, 8 Dec 2021 19:38:38 +0100 Subject: [PATCH] [somebot] /ta-announce --- modules/TACommandAnnounce.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/TACommandAnnounce.py diff --git a/modules/TACommandAnnounce.py b/modules/TACommandAnnounce.py new file mode 100644 index 0000000..5880498 --- /dev/null +++ b/modules/TACommandAnnounce.py @@ -0,0 +1,22 @@ +# Mattermost Bot module. +# Copyright (c) 2016-2021 by Someone (aka. Jan Vales ) +# published under MIT-License + + + +from AbstractCommand import * +class TACommandAnnounce(AbstractCommand): + TRIGGER = "ta-announce" + CONFIG = {"display_name": "somebot-command", "auto_complete": True, + "auto_complete_hint": "", + } + CONFIG["auto_complete_desc"] = CONFIG["description"] = "Posts 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.`` :)") -- 2.43.0