]> git.somenet.org - pub/jan/mattermost-bot.git/blob - modules/TACommandAnnounceAll.py
modules/TACommandAnnounceAll.py
[pub/jan/mattermost-bot.git] / modules / TACommandAnnounceAll.py
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
4
5
6
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>",
13              }
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]"
15
16
17     def on_POST(self, request, data):
18         posted_to = ""
19
20         for team in self.bot.api.get_teams():
21             user = self.bot.api.get_team_member(team["id"], data["user_id"], exc=False)
22
23             if ("roles" in user and "team_admin" in user["roles"]) or self._require_team_admin(data, exc=False):
24                 posted_to += "\n+ "+team["name"]
25
26         if posted_to != "":
27             request.respond_cmd_temp("## :white_check_mark: Success! :)\n#### Posted to:"+posted_to)
28         else:
29             request.respond_cmd_err("Did not post anything. Are you a Team-Admin anywhere?")