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
5 from inspect import cleandoc
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": "",
16 USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Generate save-code for curricula.fsinf.at."
19 def on_POST(self, request, data):
21 "text": "Delete this post.",
24 "name": ":wastebasket: Delete this post and all associated data. :wastebasket:",
25 "integration": {"url": self.URL+"/interactive", "context": {"action": "delete_self"}}
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":{}}})
32 post["props"].update(dict({"attachments":att}))
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.
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, {})
44 def on_POST_interactive(self, request, data):
45 if data["context"]["action"] == "delete_self":
46 self.bot.api.delete_post(data["post_id"])
48 def on_public_GET(self, request, data):
49 request.respond_public(200, {"asdf":"qwer"})
51 def on_public_POST(self, request, data):