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 # pylint: disable=wrong-import-position
8 from AbstractCommand import AbstractCommand
9 class TACommandAnnounceAll(AbstractCommand):
10 TRIGGER = "ta-announce-all"
11 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
12 "auto_complete_hint": "<text>",
14 CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Posts <text> into every teams' announcement channel where the poster is a TA. [TEAM_ADMIN]"
17 def on_POST(self, request, data):
20 for team in self.bot.api.get_teams():
21 user = self.bot.api.get_team_member(team["id"], data["user_id"], exc=False)
23 if ("roles" in user and "team_admin" in user["roles"]) or self._require_system_admin(data, exc=False):
24 channel = self.bot.api.get_channel_by_name(team["id"], "town-square")
25 self.bot.api.create_post(channel["id"], data["text"])
26 posted_to += "\n+ "+team["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?")