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
7 from AbstractCommand import *
8 class TACommandAnnounceAll(AbstractCommand):
9 TRIGGER = "ta-announce-all"
10 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
11 "auto_complete_hint": "<text>",
13 CONFIG["auto_complete_desc"] = CONFIG["description"] = "📢 Posts <text> into every teams' announcement channel where the poster is a TA. [TEAM_ADMIN]"
16 def on_POST(self, request, data):
19 for t in self.bot.api.get_teams():
20 user = self.bot.api.get_team_member(t["id"], data["user_id"], exc=False)
22 #if ("roles" in user and "team_admin" in user["roles"]) or self._require_team_admin(data, exc=False):
23 if self._require_team_admin(data, exc=False):
24 channel = self.bot.api.get_channel_by_name(t["id"], "town-square")
25 self.bot.api.create_post(channel["id"], data["text"])
26 posted_to += "\n+ "+t["name"]
29 request.respond_cmd_temp("## :white_check_mark: Success! :)\n### Posted to:"+posted_to)
31 request.respond_cmd_err("Did not post anything. Are you a Team-Admin anywhere?")