Better fix
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run

This commit is contained in:
Parker M. 2025-03-25 23:14:40 -05:00
parent 106692551b
commit b343d0d45b
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E
4 changed files with 12 additions and 23 deletions

View File

@ -79,6 +79,7 @@ bot = MyBot()
bot.remove_command("help")
bot.temp_command_count = {} # command_name: count
bot.autoplay = [] # guild_id, guild_id, etc.
bot.youtube_broken = False
@tasks.loop(minutes=45)

View File

@ -1,8 +1,6 @@
from discord.ext import commands
from typing import Literal
from utils.config import YOUTUBE_SUPPORT, YOUTUBE_BROKEN
class Toggle(commands.Cog):
def __init__(self, bot):
@ -11,25 +9,18 @@ class Toggle(commands.Cog):
@commands.command()
@commands.dm_only()
@commands.is_owner()
async def toggle(
self, ctx, action: Literal["disable", "enable", "broken"]
):
"""Toggle YouTube links"""
if action == "disable":
YOUTUBE_SUPPORT = False
YOUTUBE_BROKEN = False
return await ctx.send("YouTube has been disabled.")
if action == "enable":
YOUTUBE_SUPPORT = True
YOUTUBE_BROKEN = False
async def toggle(self, ctx, action: Literal["on", "off"]):
"""Toggle YouTube as broken or not"""
if action == "on":
self.bot.youtube_broken = False
return await ctx.send("YouTube has been enabled.")
if action == "broken":
YOUTUBE_SUPPORT = False
YOUTUBE_BROKEN = True
if action == "off":
self.bot.youtube_broken = True
return await ctx.send("YouTube has been marked as broken.")
await ctx.send("Invalid action. Please use 'on' or 'off'.")
async def setup(bot):
await bot.add_cog(Toggle(bot))

View File

@ -6,7 +6,7 @@ from lavalink import LoadType
import re
from cogs.music import Music, LavalinkVoiceClient
from utils.config import YOUTUBE_SUPPORT, YOUTUBE_BROKEN, create_embed
from utils.config import YOUTUBE_SUPPORT, create_embed
from utils.custom_sources import (
LoadError,
CustomAudioTrack,
@ -45,7 +45,7 @@ class Play(commands.Cog):
embed=embed, ephemeral=True
)
if YOUTUBE_BROKEN:
if self.bot.youtube_broken:
embed = create_embed(
title="YouTube Broken",
description=(

View File

@ -44,7 +44,6 @@ AI_MODEL = None
LAVALINK_HOST = None
LAVALINK_PORT = None
LAVALINK_PASSWORD = None
YOUTUBE_BROKEN = False
schema = {
"type": "object",
@ -163,7 +162,7 @@ ai:
# Thouroughly validate all of the options in the config.yaml file
def validate_config(file_contents):
global TOKEN, BOT_COLOR, BOT_INVITE_LINK, FEEDBACK_CHANNEL_ID, BUG_CHANNEL_ID, LOG_SONGS, YOUTUBE_SUPPORT, SPOTIFY_CLIENT_ID, SPOTIFY_CLIENT_SECRET, GENIUS_CLIENT_ID, GENIUS_CLIENT_SECRET, AI_CLIENT, AI_MODEL, LAVALINK_HOST, LAVALINK_PORT, LAVALINK_PASSWORD, YOUTUBE_BROKEN
global TOKEN, BOT_COLOR, BOT_INVITE_LINK, FEEDBACK_CHANNEL_ID, BUG_CHANNEL_ID, LOG_SONGS, YOUTUBE_SUPPORT, SPOTIFY_CLIENT_ID, SPOTIFY_CLIENT_SECRET, GENIUS_CLIENT_ID, GENIUS_CLIENT_SECRET, AI_CLIENT, AI_MODEL, LAVALINK_HOST, LAVALINK_PORT, LAVALINK_PASSWORD
config = yaml.safe_load(file_contents)
try:
@ -299,8 +298,6 @@ def validate_config(file_contents):
LAVALINK_PORT = config["lavalink"]["port"]
LAVALINK_PASSWORD = config["lavalink"]["password"]
YOUTUBE_BROKEN = False
"""
Template for embeds