1 # Mattermost Bot module.
2 # Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 # notable mention: Ju <daju@fsinf.at> and @baerza
4 # published under MIT-License
6 from inspect import cleandoc
9 from AbstractCommand import AbstractCommand
10 class CommandLernrauminfo(AbstractCommand):
11 TRIGGER = "lernrauminfo"
12 CONFIG = {"display_name": "somebot-command", "auto_complete": True,
13 "auto_complete_hint": "",
15 USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Remind of Lernraum channel / is anybody at the fsinf."
18 def on_POST(self, request, data):
19 msg = cleandoc("""``AUTODELETE-DAY``
20 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).
24 "text": "Falls du dir nicht sicher bist, ob du schon im Channel bist...",
26 "name": "/join (Lern-)Räume :+1:",
27 "integration": {"url": self.URL+"/interactive", "context": {"action": "click"}}
31 request.respond_cmd_chan(msg, att=att)
34 def on_POST_interactive(self, request, data):
35 if data["context"]["action"] == "click":
36 self.bot.api.add_user_to_channel("3qu3dyzbupgm9kodrqaijwntgc", data["user_id"])
37 request.respond_interactive_temp("## :white_check_mark: Success! :)\n### Du solltest gejoint worden sein nach: https://mattermost.fsinf.at/fsinf/channels/raeume")