# Mattermost Bot module.
#  Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
#  notable mention: Ju <daju@fsinf.at> and @baerza
#  published under MIT-License

from inspect import cleandoc


# pylint: disable=wrong-import-position
from AbstractCommand import AbstractCommand
class CommandLernrauminfo(AbstractCommand):
    TRIGGER = "lernrauminfo"
    CONFIG = {"display_name": "somebot-command", "auto_complete": True,
              "auto_complete_hint": "",
             }
    USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Remind of Lernraum channel / is anybody at the fsinf."


    def on_POST(self, request, data):
        msg = cleandoc("""``AUTODELETE-DAY``
            Wenn du wissen willst, ob gerade jemand auf der FsInf ist, oder am Wochenende offen ist, wende dich bitte an den [(Lern) Räume](https://mattermost.fsinf.at/fsinf/channels/raeume)-Channel im [Community-Team](https://mattermost.fsinf.at/~invite~fsinf).
            """)

        att = [{
            "text": "Falls du dir nicht sicher bist, ob du schon im Channel bist...",
            "actions": [{
                "name": "/join (Lern-)Räume :+1:",
                "integration": {"url": self.URL+"/interactive", "context": {"action": "click"}}
                }]
            }]

        request.respond_cmd_chan(msg, att=att)


    def on_POST_interactive(self, request, data):
        if data["context"]["action"] == "click":
            self.bot.api.add_user_to_channel("3qu3dyzbupgm9kodrqaijwntgc", data["user_id"])
            request.respond_interactive_temp("## :white_check_mark: Success! :)\n### Du solltest gejoint worden sein nach: https://mattermost.fsinf.at/fsinf/channels/raeume")
