]> git.somenet.org - pub/jan/mattermost-bot.git/blob - modules/CommandLernrauminfo.py
modules/CommandLernrauminfo.py
[pub/jan/mattermost-bot.git] / modules / CommandLernrauminfo.py
1 # Mattermost Bot module.
2 #  Copyright (c) 2016-2021 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
5
6 from inspect import cleandoc
7
8
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": "",
14              }
15     USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Remind of Lernraum channel / is anybody at the fsinf."
16
17
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).
21             """)
22
23         att = [{
24             "text": "Falls du dir nicht sicher bist, ob du schon im Channel bist...",
25             "actions": [{
26                 "name": "/join (Lern-)Räume :+1:",
27                 "integration": {"url": self.URL+"/interactive", "context": {"action": "click"}}
28                 }]
29             }]
30
31         request.respond_cmd_chan(msg, att=att)
32
33
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")