This commit is contained in:
Christian Rendina 2020-03-09 02:13:48 +01:00
parent 615bcb244e
commit c759ddab76
1 changed files with 16 additions and 32 deletions

View File

@ -17,6 +17,12 @@ class Command:
self.headerField = "" self.headerField = ""
self.mode = "" self.mode = ""
def __init__(self, name, desc, mode, hf):
self.desc = desc
self.name = name
self.headerField = hf
self.mode = mode
def setMode(self, mode): def setMode(self, mode):
self.mode = mode self.mode = mode
@ -87,39 +93,17 @@ class InlineBot:
def __makeCommands(self): def __makeCommands(self):
cmd = Command() cmd = Command()
# def __init__(self, name, desc, mode, hf):
self.commands.append(Command("Pony", "yay, ponies!", "imageurl", "imageurl"))
self.commands.append(Command("Clop", "NSFW ponies", "imageurl", "imageurl"))
self.commands.append(Command("Furry", "Furries", "imageurl", "imageurl"))
self.commands.append(Command("Loli", "Cute lolis", "imageurl", "imageurl"))
self.commands.append(Command("Yiff", "Yiff", "imageurl", "imageurl"))
self.commands.append(Command("Lewd", "Say hi to the police", "imageurl", "imageurl"))
self.commands.append(Command("Rasoio", "Dai facciamogli lo scherzo del rasoio!1!!", "genericurl", "htmldescription"))
cmd.setName("Pony")
cmd.setDesc("yay, ponies!")
cmd.setMode("imageurl")
cmd.setHeaderField("imageurl")
self.commands.append(cmd)
cmd.setName("Clop")
cmd.setDesc("NSFW ponies")
self.commands.append(cmd)
cmd.setName("Furry")
cmd.setDesc("Furries")
self.commands.append(cmd)
cmd.setName("Loli")
cmd.setDesc("Cute lolis")
self.commands.append(cmd)
cmd.setName("Yiff")
cmd.setDesc("Yiff")
self.commands.append(cmd)
cmd.setName("Lewd")
cmd.setDesc("Say hi to the police")
self.commands.append(cmd)
cmd.setName("Rasoio")
cmd.setDesc("Dai facciamogli lo scherzo del rasoio!1!!")
cmd.setMode("genericurl")
cmd.setHeaderField("htmldescription")
self.commands.append(cmd)
def callRequest(self, command, senderid, text = ""): def callRequest(self, command, senderid, text = ""):
if not command: if not command:
return self.errorText return self.errorText