Initial commit: Proof of concept

Please add gifs to ./gifs.json :3
This commit is contained in:
Yuki Joou 2023-02-22 18:41:33 +01:00
commit 49b4f68e2c
3 changed files with 59 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
token

5
gifs.json Normal file
View file

@ -0,0 +1,5 @@
{
"hugs": [
"https://64.media.tumblr.com/5541ac10ee55974f882d9d437a3cc2d1/tumblr_nz0jt3jM421sbzv20o1_500.gif"
]
}

53
main.py Executable file
View file

@ -0,0 +1,53 @@
#!/usr/bin/env python3
import discord
import json
import random
intents = discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)
gifs = {}
with open("gifs.json") as file:
gifs = json.load(file)
# Commands
async def hug_handler(message: discord.Message, command: list[str]):
target = ""
if len(command) <= 1:
target = f"<@{message.author.id}>"
else:
target = command[1]
if "hugs" not in gifs:
await message.reply(
"im so sorry, i have no hugs to give you for now... come back later :3")
hug = random.choice(gifs["hugs"])
await message.reply(f"here u go {target}\n{hug}")
COMMAND_HANDLERS = {
"hug": hug_handler,
}
# Discord events
@client.event
async def on_message(message: discord.Message):
if message.author.bot == True:
return
# TODO: Do proper parsing of the message
message_as_command = message.content.split(" ")
command = message_as_command[0]
if command in COMMAND_HANDLERS:
await COMMAND_HANDLERS[command](message, message_as_command)
client.run(open("token").read())