Better fix
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
This commit is contained in:
parent
106692551b
commit
b343d0d45b
@ -79,6 +79,7 @@ bot = MyBot()
|
|||||||
bot.remove_command("help")
|
bot.remove_command("help")
|
||||||
bot.temp_command_count = {} # command_name: count
|
bot.temp_command_count = {} # command_name: count
|
||||||
bot.autoplay = [] # guild_id, guild_id, etc.
|
bot.autoplay = [] # guild_id, guild_id, etc.
|
||||||
|
bot.youtube_broken = False
|
||||||
|
|
||||||
|
|
||||||
@tasks.loop(minutes=45)
|
@tasks.loop(minutes=45)
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from typing import Literal
|
from typing import Literal
|
||||||
|
|
||||||
from utils.config import YOUTUBE_SUPPORT, YOUTUBE_BROKEN
|
|
||||||
|
|
||||||
|
|
||||||
class Toggle(commands.Cog):
|
class Toggle(commands.Cog):
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
@ -11,25 +9,18 @@ class Toggle(commands.Cog):
|
|||||||
@commands.command()
|
@commands.command()
|
||||||
@commands.dm_only()
|
@commands.dm_only()
|
||||||
@commands.is_owner()
|
@commands.is_owner()
|
||||||
async def toggle(
|
async def toggle(self, ctx, action: Literal["on", "off"]):
|
||||||
self, ctx, action: Literal["disable", "enable", "broken"]
|
"""Toggle YouTube as broken or not"""
|
||||||
):
|
if action == "on":
|
||||||
"""Toggle YouTube links"""
|
self.bot.youtube_broken = False
|
||||||
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
|
|
||||||
return await ctx.send("YouTube has been enabled.")
|
return await ctx.send("YouTube has been enabled.")
|
||||||
|
|
||||||
if action == "broken":
|
if action == "off":
|
||||||
YOUTUBE_SUPPORT = False
|
self.bot.youtube_broken = True
|
||||||
YOUTUBE_BROKEN = True
|
|
||||||
return await ctx.send("YouTube has been marked as broken.")
|
return await ctx.send("YouTube has been marked as broken.")
|
||||||
|
|
||||||
|
await ctx.send("Invalid action. Please use 'on' or 'off'.")
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot):
|
async def setup(bot):
|
||||||
await bot.add_cog(Toggle(bot))
|
await bot.add_cog(Toggle(bot))
|
||||||
|
@ -6,7 +6,7 @@ from lavalink import LoadType
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from cogs.music import Music, LavalinkVoiceClient
|
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 (
|
from utils.custom_sources import (
|
||||||
LoadError,
|
LoadError,
|
||||||
CustomAudioTrack,
|
CustomAudioTrack,
|
||||||
@ -45,7 +45,7 @@ class Play(commands.Cog):
|
|||||||
embed=embed, ephemeral=True
|
embed=embed, ephemeral=True
|
||||||
)
|
)
|
||||||
|
|
||||||
if YOUTUBE_BROKEN:
|
if self.bot.youtube_broken:
|
||||||
embed = create_embed(
|
embed = create_embed(
|
||||||
title="YouTube Broken",
|
title="YouTube Broken",
|
||||||
description=(
|
description=(
|
||||||
|
@ -44,7 +44,6 @@ AI_MODEL = None
|
|||||||
LAVALINK_HOST = None
|
LAVALINK_HOST = None
|
||||||
LAVALINK_PORT = None
|
LAVALINK_PORT = None
|
||||||
LAVALINK_PASSWORD = None
|
LAVALINK_PASSWORD = None
|
||||||
YOUTUBE_BROKEN = False
|
|
||||||
|
|
||||||
schema = {
|
schema = {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@ -163,7 +162,7 @@ ai:
|
|||||||
|
|
||||||
# Thouroughly validate all of the options in the config.yaml file
|
# Thouroughly validate all of the options in the config.yaml file
|
||||||
def validate_config(file_contents):
|
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)
|
config = yaml.safe_load(file_contents)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -299,8 +298,6 @@ def validate_config(file_contents):
|
|||||||
LAVALINK_PORT = config["lavalink"]["port"]
|
LAVALINK_PORT = config["lavalink"]["port"]
|
||||||
LAVALINK_PASSWORD = config["lavalink"]["password"]
|
LAVALINK_PASSWORD = config["lavalink"]["password"]
|
||||||
|
|
||||||
YOUTUBE_BROKEN = False
|
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Template for embeds
|
Template for embeds
|
||||||
|
Loading…
x
Reference in New Issue
Block a user