]> git.somenet.org - pub/jan/mattermost.git/blob - somebot/modules/TACommandJoinAdmins.py
[somebot] /ta-join-admins
[pub/jan/mattermost.git] / somebot / modules / TACommandJoinAdmins.py
1 # Mattermost Bot.
2 #  Copyright (c) 2016-2020 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 #  published under MIT-License
4
5 import logging
6
7
8 from AbstractCommand import *
9 class TACommandJoinAdmins(AbstractCommand):
10     TRIGGER = "ta-join-admins"
11     CONFIG = {"display_name": "somebot-command", "auto_complete": True,
12     }
13     CONFIG["auto_complete_desc"] = CONFIG["description"] = "Join all Team Admins into current channel. Works for private channels. There is no undo. [TEAM_ADMIN]"
14
15
16     def on_POST(self, request, data):
17         user = self.bot.api.get_team_member(data["team_id"], data["user_id"])
18         if "team_admin" not in user["roles"]:
19             request.cmd_respond_text_temp("### You are not a Team Admin. :(")
20             return
21
22         user_ids = [u["user_id"] for u in self.bot.api.get_team_members(self.TEAM_ID) if "team_admin" in u["roles"]]
23
24         for u in user_ids:
25             self.bot.api.add_user_to_channel(data["channel_id"], u)
26
27         request.cmd_respond_text_temp("### ``Done.`` :)")
28