]> git.somenet.org - pub/jan/mattermost.git/blob - somebot/modules/TACommandAnnounce.py
[somebot] /ta-announce <text>
[pub/jan/mattermost.git] / somebot / modules / TACommandAnnounce.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
6
7 from AbstractCommand import *
8 class TACommandAnnounce(AbstractCommand):
9     TRIGGER = "ta-announce"
10     CONFIG = {"display_name": "somebot-command", "auto_complete": True,
11         "auto_complete_hint": "<text>",
12     }
13     CONFIG["auto_complete_desc"] = CONFIG["description"] = "Posts <text> into the current team\"s announcement channel. [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         channel = self.bot.api.get_channel_by_name(data["team_id"], "town-square")
23         self.bot.api.create_post(channel["id"], data["text"])
24
25         request.cmd_respond_text_temp("### ``Done.`` :)")
26