]> git.somenet.org - pub/jan/mattermost-bot.git/blob - modules/CommandCurriculaSave.py
modules/CommandCurriculaSave.py
[pub/jan/mattermost-bot.git] / modules / CommandCurriculaSave.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 from inspect import cleandoc
6
7
8 # pylint: disable=wrong-import-position
9 from AbstractCommand import AbstractCommand
10 from AbstractPublicWS import AbstractPublicWS
11 class CommandCurriculaSave(AbstractCommand,AbstractPublicWS):
12     TRIGGER = "curricula-save"
13     CONFIG = {"display_name": "somebot-command", "auto_complete": True,
14               "auto_complete_hint": "",
15              }
16     USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Generate save-code for curricula.fsinf.at."
17
18
19     def on_POST(self, request, data):
20         att = [{
21             "text": "Delete this post.",
22             "color": "#ff0000",
23             "actions": [{
24                 "name": ":wastebasket: Delete this post and all associated data. :wastebasket:",
25                 "integration": {"url": self.URL+"/interactive", "context": {"action": "delete_self"}}
26                 }]
27             }]
28
29         chan = self.bot.api.create_dm_channel_with(data['user_id'])
30         post = self.bot.api.create_post(chan['id'], "### Generating curricula.fsinf.at storage ...", {"attachments":att, "context":{"curricula_fsinf":{}}})
31
32         post["props"].update(dict({"attachments":att}))
33
34         post["message"] = cleandoc("""
35             ## ** https://curricula.fsinf.at storage**
36             Please copy the following code into the https://curricula.fsinf.at storage section.
37             # ``"""+post["id"]+"""``
38             There are **``"""+str(len(post["props"]["context"]["curricula_fsinf"]))+""" bytes``** of additional data stored in this message.
39             """)
40         self.bot.api.update_post(post["id"], message=post["message"], is_pinned=post["is_pinned"], has_reactions=None, props=post["props"])
41         request.respond(200, {})
42
43
44     def on_POST_interactive(self, request, data):
45         if data["context"]["action"] == "delete_self":
46             self.bot.api.delete_post(data["post_id"])
47
48     def on_public_GET(self, request, data):
49         request.respond_public(200, {"asdf":"qwer"})
50
51     def on_public_POST(self, request, data):
52         return 'post-qwer'