2 # Copyright (c) 2016-2020 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 # published under MIT-License
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>",
13 CONFIG["auto_complete_desc"] = CONFIG["description"] = "Posts <text> into the current team\"s announcement channel. [TEAM_ADMIN]"
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. :(")
22 channel = self.bot.api.get_channel_by_name(data["team_id"], "town-square")
23 self.bot.api.create_post(channel["id"], data["text"])
25 request.cmd_respond_text_temp("### ``Done.`` :)")