# Mattermost Bot module.
#  Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
#  published under MIT-License



# pylint: disable=wrong-import-position
from AbstractCommand import AbstractCommand
class TACommandAnnounce(AbstractCommand):
    TRIGGER = "ta-announce"
    CONFIG = {"display_name": "somebot-command", "auto_complete": True,
              "auto_complete_hint": "<text>",
             }
    CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Posts <text> into the current team\"s announcement channel. [TEAM_ADMIN]"


    def on_POST(self, request, data):
        self._require_team_admin(data) # will throw an exception if not. (Dont try-except: Its handled up the stack.)

        channel = self.bot.api.get_channel_by_name(data["team_id"], "town-square")
        self.bot.api.create_post(channel["id"], data["text"])

        request.respond_cmd_temp("## :white_check_mark: Success! :)")
