[somebot] /ta-join-admins
authorSomeone <someone@somenet.org>
Thu, 18 Jun 2020 23:32:13 +0000 (01:32 +0200)
committerSomeone <someone@somenet.org>
Thu, 18 Jun 2020 23:32:13 +0000 (01:32 +0200)
somebot/modules/TACommandJoinAdmins.py [new file with mode: 0644]

diff --git a/somebot/modules/TACommandJoinAdmins.py b/somebot/modules/TACommandJoinAdmins.py
new file mode 100644 (file)
index 0000000..19b59a4
--- /dev/null
@@ -0,0 +1,28 @@
+# Mattermost Bot.
+#  Copyright (c) 2016-2020 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
+#  published under MIT-License
+
+import logging
+
+
+from AbstractCommand import *
+class TACommandJoinAdmins(AbstractCommand):
+    TRIGGER = "ta-join-admins"
+    CONFIG = {"display_name": "somebot-command", "auto_complete": True,
+    }
+    CONFIG["auto_complete_desc"] = CONFIG["description"] = "Join all Team Admins into current channel. Works for private channels. There is no undo. [TEAM_ADMIN]"
+
+
+    def on_POST(self, request, data):
+        user = self.bot.api.get_team_member(data["team_id"], data["user_id"])
+        if "team_admin" not in user["roles"]:
+            request.cmd_respond_text_temp("### You are not a Team Admin. :(")
+            return
+
+        user_ids = [u["user_id"] for u in self.bot.api.get_team_members(self.TEAM_ID) if "team_admin" in u["roles"]]
+
+        for u in user_ids:
+            self.bot.api.add_user_to_channel(data["channel_id"], u)
+
+        request.cmd_respond_text_temp("### ``Done.`` :)")
+