-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
53 lines (39 loc) · 1.33 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os, json
from telegram.ext import Updater, CommandHandler
with open("./config.json", "r") as fd:
config = json.load(fd)
taunts = {}
tauntNames = {}
commands = []
for filename in os.listdir(config["taunt-dir"]):
split = filename.split(" ")
num = int(split[0])
name = " ".join(split[1 : ]).split(".")[0]
path = os.path.join(config["taunt-dir"], filename)
taunts[num] = path
tauntNames[num] = name
commands.append(str(num))
commands = sorted(commands)
def handleCmd(bot, update):
msg = update.message
text = msg.text.split(" ")[0].split("@")[0][1 : ]
num = int(text)
file = taunts[num]
with open(file, "rb") as fd:
bot.send_voice(msg.chat.id, fd)
def sendCmdList(bot, update):
update.message.reply_text("Supported Commands: /" + ", /".join(commands))
def sendCmdDoc(bot, update):
doc = "commands - Print a list of all available commands\n" + \
"doc - Print a BotFather friendly command documentation"
for num in commands:
num = int(num)
doc += "\n{} - {}".format(num, tauntNames[num])
update.message.reply_text(doc)
updater = Updater(config["telegram-token"])
updater.dispatcher.add_handler(CommandHandler("commands", sendCmdList))
updater.dispatcher.add_handler(CommandHandler("doc", sendCmdDoc))
for cmd in commands:
updater.dispatcher.add_handler(CommandHandler(cmd, handleCmd))
updater.start_polling()
updater.idle()