]> git.somenet.org - pub/jan/mattermost-bot.git/blob - modules/CommandSpoiler.py
modules/CommandSpoiler.py
[pub/jan/mattermost-bot.git] / modules / CommandSpoiler.py
1 # Mattermost Bot module.
2 #  Copyright (c) 2016-2022 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
3 #  published under MIT-License
4
5
6
7 # pylint: disable=wrong-import-position
8 from AbstractCommand import AbstractCommand
9 class CommandSpoiler(AbstractCommand):
10     TRIGGER = "spoiler"
11     CONFIG = {"display_name": "somebot-command", "auto_complete": True,
12               "auto_complete_hint": "<spoiler-text>",
13              }
14     USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PUBLIC+"Creates an empty post with spoiler-text. Use /spoiler-adv for advanced features (add to existing message/replace/remove)"
15
16
17     def on_POST(self, request, data):
18         if len(data["text"]) > 15000:
19             request.cmd_respond_text_temp("``/spoiler`` failed: Spoiler-text must be smaller than 15000 characters :(\nYour text is: "+str(len(data["text"]))+" characters long.")
20             return
21
22         att = [{
23             "text": "This post contains spoilers.",
24             "actions": [{
25                 "name": ":ghost: show me the spoilers :ghost:",
26                 "integration": {"url": self.URL+"/interactive", "context": {"action": "show_spoiler", "spoiler":data['text'].strip()}}
27                 }]
28             }]
29
30         request.respond_cmd_chan("", att=att)
31
32
33     def on_POST_interactive(self, request, data):
34         if data["context"]["action"] == "show_spoiler":
35             request.respond_interactive_temp(data["context"]["spoiler"])