didier/cogs/school.py

76 lines
2.6 KiB
Python
Raw Normal View History

2021-08-08 18:24:53 +02:00
from data import schedule
from data.embeds.food import Menu
from decorators import help
import discord
from discord.ext import commands
from enums.help_categories import Category
2021-08-08 18:24:53 +02:00
from functions import config, eten, les
2021-08-08 18:33:32 +02:00
from functions.stringFormatters import capitalize
from functions.timeFormatters import intToWeekday, skip_weekends
class School(commands.Cog):
def __init__(self, client):
self.client = client
# Don't allow any commands to work when locked
def cog_check(self, ctx):
return not self.client.locked
@commands.command(name="Eten", aliases=["Food", "Menu"], usage="[Dag]*")
# @commands.check(checks.allowedChannels)
@help.Category(category=Category.School)
2021-09-26 13:10:57 +02:00
async def eten(self, ctx, day: str = None):
2021-10-04 20:15:01 +02:00
if day is not None:
day = day.lower()
embed = Menu(day).to_embed()
2021-09-26 13:10:57 +02:00
await ctx.reply(embed=embed, mention_author=False)
2021-09-20 01:42:13 +02:00
@commands.command(name="Les", aliases=["Class", "Classes", "Sched", "Schedule"], usage="[Dag]*")
# @commands.check(checks.allowedChannels)
2021-09-20 01:42:13 +02:00
@help.Category(category=Category.School)
async def les(self, ctx, day=None):
2021-10-04 20:15:01 +02:00
if day is not None:
day = day.lower()
2021-08-08 18:24:11 +02:00
date = les.find_target_date(day)
2021-08-08 18:33:32 +02:00
# Person explicitly requested a weekend-day
if day is not None and day.lower() in ("morgen", "overmorgen") and date.weekday() > 4:
return await ctx.send(f"{capitalize(day)} is het weekend.")
date = skip_weekends(date)
2021-08-08 18:12:16 +02:00
s = schedule.Schedule(date, int(config.get("year")), int(config.get("semester")), day is not None)
2021-08-08 19:32:41 +02:00
if s.semester_over:
return await ctx.send("Het semester is afgelopen.")
2021-09-26 21:27:52 +02:00
# DM only shows user's own minor
if ctx.guild is None:
minor_roles = [*schedule.find_minor(self.client, ctx.author.id)]
return await ctx.send(embed=s.create_schedule(minor_roles=minor_roles).to_embed())
2021-08-08 18:12:16 +02:00
return await ctx.send(embed=s.create_schedule().to_embed())
@commands.command(name="Pin", usage="[Message]")
@help.Category(category=Category.Other)
async def pin(self, ctx, message: discord.Message):
# In case people abuse, check if they're blacklisted
blacklist = []
if ctx.author.id in blacklist:
return
if message.is_system():
return await ctx.send("Dus jij wil system messages pinnen?\nMag niet.")
await message.pin(reason="Didier Pin door {}".format(ctx.author.display_name))
await ctx.message.add_reaction("")
def setup(client):
client.add_cog(School(client))