2020-12-24 00:13:25 +01:00
|
|
|
from data import paginatedLeaderboard
|
2020-10-13 21:02:40 +02:00
|
|
|
from decorators import help
|
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
from enums.help_categories import Category
|
2021-01-26 00:05:44 +01:00
|
|
|
from functions import checks, stringFormatters
|
2020-10-13 21:02:40 +02:00
|
|
|
from functions.database import memes, trump, dadjoke
|
2021-01-26 00:05:44 +01:00
|
|
|
from functions.memes import generate
|
2020-10-13 21:02:40 +02:00
|
|
|
import json
|
|
|
|
import random
|
|
|
|
import requests
|
|
|
|
|
|
|
|
|
|
|
|
class Fun(commands.Cog):
|
|
|
|
|
|
|
|
def __init__(self, client):
|
|
|
|
self.client = client
|
|
|
|
self.utilsCog = self.client.get_cog("Utils")
|
|
|
|
|
|
|
|
# Don't allow any commands to work when locked
|
|
|
|
def cog_check(self, ctx):
|
|
|
|
return not self.client.locked
|
|
|
|
|
|
|
|
@commands.command(name="Dadjoke", aliases=["Dj", "Dad"])
|
|
|
|
@commands.check(checks.allowedChannels)
|
|
|
|
@help.Category(category=Category.Fun)
|
|
|
|
async def dadjoke(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random dad joke.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
await ctx.send(dadjoke.getRandomJoke())
|
|
|
|
|
|
|
|
@commands.command(name="Stalin", aliases=["Ss", "StalinMotivation", "Motivate"])
|
|
|
|
@commands.check(checks.allowedChannels)
|
|
|
|
@help.Category(category=Category.Quotes)
|
|
|
|
async def stalin(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random Stalin quote.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
with open("files/StalinMotivation.json", "r") as fp:
|
|
|
|
file = json.load(fp)
|
|
|
|
await ctx.send(file[random.randint(1, len(file))])
|
|
|
|
|
|
|
|
@commands.command(name="Satan", aliases=["S8n", "SatanQuote"])
|
|
|
|
@commands.check(checks.allowedChannels)
|
|
|
|
@help.Category(category=Category.Quotes)
|
|
|
|
async def satan(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random Satan quote.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
with open("files/SatanQuotes.json", "r") as fp:
|
|
|
|
file = json.load(fp)
|
|
|
|
await ctx.send(file[random.randint(1, len(file))])
|
|
|
|
|
|
|
|
@commands.command(name="Trump")
|
|
|
|
@commands.check(checks.allowedChannels)
|
|
|
|
@help.Category(category=Category.Quotes)
|
|
|
|
async def trump(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random Trump quote.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
quote = trump.getRandomQuote()
|
|
|
|
await ctx.send("**\"{}**\"\n{} - {}".format(quote[1], quote[2], quote[3]))
|
|
|
|
|
|
|
|
@commands.command(name="8-Ball", aliases=["8b", "8Ball"], ignore_extra=True)
|
|
|
|
@help.Category(category=Category.Quotes)
|
|
|
|
async def eightball(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random 8-ball response.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
with open("files/eightball.json", "r") as fp:
|
|
|
|
file = json.load(fp)
|
|
|
|
await ctx.send(file[random.randint(0, len(file) - 1)])
|
|
|
|
|
|
|
|
@commands.command(name="Memegen", usage="[Meme] [Velden]")
|
|
|
|
@commands.cooldown(1, 5, commands.BucketType.guild)
|
|
|
|
@help.Category(category=Category.Fun)
|
|
|
|
async def memegen(self, ctx, name="", *fields):
|
|
|
|
"""
|
|
|
|
Command that generates memes.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
:param name: the name of the meme
|
|
|
|
:param fields: the fields to add to the meme
|
|
|
|
"""
|
|
|
|
if len(fields) == 0:
|
|
|
|
return await ctx.send("Controleer je argumenten.")
|
|
|
|
|
|
|
|
# Get the meme info that corresponds to this name
|
2021-01-25 23:30:52 +01:00
|
|
|
result: memes.Meme = memes.getMeme(name)
|
2020-10-13 21:02:40 +02:00
|
|
|
|
|
|
|
# No meme found
|
2021-01-25 23:21:40 +01:00
|
|
|
if result is None:
|
|
|
|
return await ctx.send("Deze meme staat niet in de database.")
|
2020-10-13 21:02:40 +02:00
|
|
|
|
|
|
|
# Convert to list to support item assignment
|
|
|
|
fields = list(fields)
|
|
|
|
|
2021-01-26 00:05:44 +01:00
|
|
|
generated = generate(result, fields)
|
|
|
|
|
|
|
|
# If the request was successful, remove the message calling it
|
|
|
|
if generated["success"]:
|
|
|
|
await self.utilsCog.removeMessage(ctx.message)
|
|
|
|
|
|
|
|
# Send the meme's url or the error message
|
|
|
|
await ctx.send(generated["message"])
|
2020-10-13 21:02:40 +02:00
|
|
|
|
|
|
|
@commands.command(name="Memes")
|
|
|
|
@commands.check(checks.allowedChannels)
|
|
|
|
@help.Category(category=Category.Fun)
|
|
|
|
async def memes(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that shows a list of memes in the database.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
memeList = memes.getAllMemes()
|
|
|
|
|
|
|
|
# Turn the list into a list of [Name: fields]
|
|
|
|
memeList = [": ".join([stringFormatters.titleCase(meme[1]),
|
|
|
|
str(meme[2])]) for meme in sorted(memeList, key=lambda x: x[1])]
|
|
|
|
|
2020-12-24 00:13:25 +01:00
|
|
|
pages = paginatedLeaderboard.Pages(source=paginatedLeaderboard.Source(memeList, "Memes", discord.Colour.blue()),
|
|
|
|
clear_reactions_after=True)
|
|
|
|
await pages.start(ctx)
|
2020-10-13 21:02:40 +02:00
|
|
|
|
|
|
|
@commands.command(name="Pjoke")
|
|
|
|
@help.Category(category=Category.Fun)
|
|
|
|
async def pjoke(self, ctx):
|
|
|
|
"""
|
|
|
|
Command that sends a random programming joke.
|
|
|
|
:param ctx: Discord Context
|
|
|
|
"""
|
|
|
|
r = requests.get("https://official-joke-api.appspot.com/jokes/programming/random").json()
|
|
|
|
await ctx.send(r[0]["setup"] + "\n" + r[0]["punchline"])
|
|
|
|
|
|
|
|
|
|
|
|
def setup(client):
|
|
|
|
client.add_cog(Fun(client))
|