mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 02:41:06 -05:00
loads of import fixes
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
"""Command handlers for VideoArchiver"""
|
||||
|
||||
from .core.commands.archiver_commands import setup_archiver_commands
|
||||
from .core.commands.database_commands import setup_database_commands
|
||||
from .core.commands.settings_commands import setup_settings_commands
|
||||
from .archiver_commands import setup_archiver_commands
|
||||
from .database_commands import setup_database_commands
|
||||
from .settings_commands import setup_settings_commands
|
||||
|
||||
__all__ = [
|
||||
'setup_archiver_commands',
|
||||
'setup_database_commands',
|
||||
'setup_settings_commands'
|
||||
"setup_archiver_commands",
|
||||
"setup_database_commands",
|
||||
"setup_settings_commands",
|
||||
]
|
||||
|
||||
@@ -4,47 +4,44 @@ import logging
|
||||
from enum import Enum, auto
|
||||
from typing import Optional, Any, Dict, TypedDict, Callable, Awaitable
|
||||
|
||||
import discord
|
||||
from discord import app_commands
|
||||
from redbot.core import commands
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions
|
||||
import discord # type: ignore
|
||||
from discord import app_commands # type: ignore
|
||||
from redbot.core import commands # type: ignore
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions # type: ignore
|
||||
|
||||
from .core.response_handler import handle_response, ResponseType
|
||||
from .utils.exceptions import (
|
||||
CommandError,
|
||||
ErrorContext,
|
||||
ErrorSeverity
|
||||
)
|
||||
from core.response_handler import handle_response, ResponseType
|
||||
from utils.exceptions import CommandError, ErrorContext, ErrorSeverity
|
||||
|
||||
logger = logging.getLogger("VideoArchiver")
|
||||
|
||||
|
||||
class CommandCategory(Enum):
|
||||
"""Command categories"""
|
||||
|
||||
MANAGEMENT = auto()
|
||||
STATUS = auto()
|
||||
UTILITY = auto()
|
||||
|
||||
|
||||
class CommandResult(TypedDict):
|
||||
"""Type definition for command result"""
|
||||
|
||||
success: bool
|
||||
message: str
|
||||
details: Optional[Dict[str, Any]]
|
||||
error: Optional[str]
|
||||
|
||||
|
||||
class CommandContext:
|
||||
"""Context manager for command execution"""
|
||||
def __init__(
|
||||
self,
|
||||
ctx: Context,
|
||||
category: CommandCategory,
|
||||
operation: str
|
||||
) -> None:
|
||||
|
||||
def __init__(self, ctx: Context, category: CommandCategory, operation: str) -> None:
|
||||
self.ctx = ctx
|
||||
self.category = category
|
||||
self.operation = operation
|
||||
self.start_time = None
|
||||
|
||||
async def __aenter__(self) -> 'CommandContext':
|
||||
async def __aenter__(self) -> "CommandContext":
|
||||
"""Set up command context"""
|
||||
self.start_time = self.ctx.message.created_at
|
||||
logger.debug(
|
||||
@@ -62,22 +59,23 @@ class CommandContext:
|
||||
await handle_response(
|
||||
self.ctx,
|
||||
f"An error occurred: {str(exc_val)}",
|
||||
response_type=ResponseType.ERROR
|
||||
response_type=ResponseType.ERROR,
|
||||
)
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"""
|
||||
Set up archiver commands for the cog.
|
||||
|
||||
|
||||
Args:
|
||||
cog: VideoArchiver cog instance
|
||||
|
||||
|
||||
Returns:
|
||||
Main archiver command group
|
||||
"""
|
||||
|
||||
|
||||
@hybrid_group(name="archiver", fallback="help")
|
||||
@guild_only()
|
||||
async def archiver(ctx: Context) -> None:
|
||||
@@ -86,7 +84,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Use `/help archiver` for a list of commands.",
|
||||
response_type=ResponseType.INFO
|
||||
response_type=ResponseType.INFO,
|
||||
)
|
||||
|
||||
@archiver.command(name="enable")
|
||||
@@ -104,8 +102,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"enable_archiver",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Check current setting
|
||||
@@ -116,7 +114,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archiving is already enabled.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -125,7 +123,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archiving has been enabled.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -137,8 +135,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"enable_archiver",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@archiver.command(name="disable")
|
||||
@@ -156,8 +154,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"disable_archiver",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Check current setting
|
||||
@@ -168,7 +166,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archiving is already disabled.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -177,7 +175,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archiving has been disabled.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -189,8 +187,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"disable_archiver",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@archiver.command(name="queue")
|
||||
@@ -207,8 +205,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"show_queue",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
await cog.processor.show_queue_details(ctx)
|
||||
@@ -222,8 +220,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"show_queue",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
@archiver.command(name="status")
|
||||
@@ -235,22 +233,32 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
try:
|
||||
# Get comprehensive status
|
||||
status = {
|
||||
"enabled": await cog.config_manager.get_setting(ctx.guild.id, "enabled"),
|
||||
"queue": cog.queue_manager.get_queue_status(ctx.guild.id) if cog.queue_manager else None,
|
||||
"enabled": await cog.config_manager.get_setting(
|
||||
ctx.guild.id, "enabled"
|
||||
),
|
||||
"queue": (
|
||||
cog.queue_manager.get_queue_status(ctx.guild.id)
|
||||
if cog.queue_manager
|
||||
else None
|
||||
),
|
||||
"processor": cog.processor.get_status() if cog.processor else None,
|
||||
"components": cog.component_manager.get_component_status(),
|
||||
"health": cog.status_tracker.get_status()
|
||||
"health": cog.status_tracker.get_status(),
|
||||
}
|
||||
|
||||
# Create status embed
|
||||
embed = discord.Embed(
|
||||
title="VideoArchiver Status",
|
||||
color=discord.Color.blue() if status["enabled"] else discord.Color.red()
|
||||
color=(
|
||||
discord.Color.blue()
|
||||
if status["enabled"]
|
||||
else discord.Color.red()
|
||||
),
|
||||
)
|
||||
embed.add_field(
|
||||
name="Status",
|
||||
value="Enabled" if status["enabled"] else "Disabled",
|
||||
inline=False
|
||||
inline=False,
|
||||
)
|
||||
|
||||
if status["queue"]:
|
||||
@@ -261,7 +269,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
f"Processing: {status['queue']['processing']}\n"
|
||||
f"Completed: {status['queue']['completed']}"
|
||||
),
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
|
||||
if status["processor"]:
|
||||
@@ -271,7 +279,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
f"Active: {status['processor']['active']}\n"
|
||||
f"Health: {status['processor']['health']}"
|
||||
),
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
|
||||
embed.add_field(
|
||||
@@ -280,7 +288,7 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
f"State: {status['health']['state']}\n"
|
||||
f"Errors: {status['health']['error_count']}"
|
||||
),
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
|
||||
await ctx.send(embed=embed)
|
||||
@@ -294,8 +302,8 @@ def setup_archiver_commands(cog: Any) -> Callable:
|
||||
"ArchiverCommands",
|
||||
"show_status",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
# Store commands in cog for access
|
||||
|
||||
@@ -5,31 +5,30 @@ from datetime import datetime
|
||||
from enum import Enum, auto
|
||||
from typing import Optional, Any, Dict, TypedDict
|
||||
|
||||
import discord
|
||||
from discord import app_commands
|
||||
from redbot.core import commands
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions
|
||||
import discord # type: ignore
|
||||
from discord import app_commands # type: ignore
|
||||
from redbot.core import commands # type: ignore
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions # type: ignore
|
||||
|
||||
from .core.response_handler import handle_response, ResponseType
|
||||
from .utils.exceptions import (
|
||||
CommandError,
|
||||
ErrorContext,
|
||||
ErrorSeverity,
|
||||
DatabaseError
|
||||
)
|
||||
from .database.video_archive_db import VideoArchiveDB
|
||||
from core.response_handler import handle_response, ResponseType
|
||||
from utils.exceptions import CommandError, ErrorContext, ErrorSeverity, DatabaseError
|
||||
from database.video_archive_db import VideoArchiveDB
|
||||
|
||||
logger = logging.getLogger("VideoArchiver")
|
||||
|
||||
|
||||
class DatabaseOperation(Enum):
|
||||
"""Database operation types"""
|
||||
|
||||
ENABLE = auto()
|
||||
DISABLE = auto()
|
||||
QUERY = auto()
|
||||
MAINTENANCE = auto()
|
||||
|
||||
|
||||
class DatabaseStatus(TypedDict):
|
||||
"""Type definition for database status"""
|
||||
|
||||
enabled: bool
|
||||
connected: bool
|
||||
initialized: bool
|
||||
@@ -37,8 +36,10 @@ class DatabaseStatus(TypedDict):
|
||||
last_operation: Optional[str]
|
||||
operation_time: Optional[str]
|
||||
|
||||
|
||||
class ArchivedVideo(TypedDict):
|
||||
"""Type definition for archived video data"""
|
||||
|
||||
url: str
|
||||
discord_url: str
|
||||
message_id: int
|
||||
@@ -46,20 +47,23 @@ class ArchivedVideo(TypedDict):
|
||||
guild_id: int
|
||||
archived_at: str
|
||||
|
||||
|
||||
async def check_database_status(cog: Any) -> DatabaseStatus:
|
||||
"""
|
||||
Check database status.
|
||||
|
||||
|
||||
Args:
|
||||
cog: VideoArchiver cog instance
|
||||
|
||||
|
||||
Returns:
|
||||
Database status information
|
||||
"""
|
||||
try:
|
||||
enabled = await cog.config_manager.get_setting(
|
||||
None, "use_database"
|
||||
) if cog.config_manager else False
|
||||
enabled = (
|
||||
await cog.config_manager.get_setting(None, "use_database")
|
||||
if cog.config_manager
|
||||
else False
|
||||
)
|
||||
|
||||
return DatabaseStatus(
|
||||
enabled=enabled,
|
||||
@@ -67,7 +71,7 @@ async def check_database_status(cog: Any) -> DatabaseStatus:
|
||||
initialized=cog.db is not None,
|
||||
error=None,
|
||||
last_operation=None,
|
||||
operation_time=datetime.utcnow().isoformat()
|
||||
operation_time=datetime.utcnow().isoformat(),
|
||||
)
|
||||
except Exception as e:
|
||||
return DatabaseStatus(
|
||||
@@ -76,16 +80,17 @@ async def check_database_status(cog: Any) -> DatabaseStatus:
|
||||
initialized=False,
|
||||
error=str(e),
|
||||
last_operation=None,
|
||||
operation_time=datetime.utcnow().isoformat()
|
||||
operation_time=datetime.utcnow().isoformat(),
|
||||
)
|
||||
|
||||
|
||||
def setup_database_commands(cog: Any) -> Any:
|
||||
"""
|
||||
Set up database commands for the cog.
|
||||
|
||||
|
||||
Args:
|
||||
cog: VideoArchiver cog instance
|
||||
|
||||
|
||||
Returns:
|
||||
Main database command group
|
||||
"""
|
||||
@@ -98,39 +103,39 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
try:
|
||||
# Get database status
|
||||
status = await check_database_status(cog)
|
||||
|
||||
|
||||
# Create status embed
|
||||
embed = discord.Embed(
|
||||
title="Video Archive Database Status",
|
||||
color=discord.Color.blue() if status["enabled"] else discord.Color.red()
|
||||
color=(
|
||||
discord.Color.blue()
|
||||
if status["enabled"]
|
||||
else discord.Color.red()
|
||||
),
|
||||
)
|
||||
embed.add_field(
|
||||
name="Status",
|
||||
value="Enabled" if status["enabled"] else "Disabled",
|
||||
inline=False
|
||||
inline=False,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Connection",
|
||||
value="Connected" if status["connected"] else "Disconnected",
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Initialization",
|
||||
value="Initialized" if status["initialized"] else "Not Initialized",
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
if status["error"]:
|
||||
embed.add_field(
|
||||
name="Error",
|
||||
value=status["error"],
|
||||
inline=False
|
||||
)
|
||||
|
||||
embed.add_field(name="Error", value=status["error"], inline=False)
|
||||
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Use `/help archivedb` for a list of commands.",
|
||||
embed=embed,
|
||||
response_type=ResponseType.INFO
|
||||
response_type=ResponseType.INFO,
|
||||
)
|
||||
except Exception as e:
|
||||
error = f"Failed to get database status: {str(e)}"
|
||||
@@ -141,8 +146,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"show_status",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
@archivedb.command(name="enable")
|
||||
@@ -159,8 +164,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"enable_database",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -175,7 +180,7 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"The video archive database is already enabled.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -190,8 +195,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"enable_database",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Update processor with database
|
||||
@@ -201,17 +206,13 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
cog.processor.queue_handler.db = cog.db
|
||||
|
||||
# Update setting
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"use_database",
|
||||
True
|
||||
)
|
||||
await cog.config_manager.update_setting(ctx.guild.id, "use_database", True)
|
||||
|
||||
# Send success message
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archive database has been enabled.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -223,8 +224,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"enable_database",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@archivedb.command(name="disable")
|
||||
@@ -241,8 +242,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"disable_database",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -250,14 +251,13 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
await ctx.defer()
|
||||
|
||||
current_setting = await cog.config_manager.get_setting(
|
||||
ctx.guild.id,
|
||||
"use_database"
|
||||
ctx.guild.id, "use_database"
|
||||
)
|
||||
if not current_setting:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"The video archive database is already disabled.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -275,15 +275,11 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
if cog.processor.queue_handler:
|
||||
cog.processor.queue_handler.db = None
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"use_database",
|
||||
False
|
||||
)
|
||||
await cog.config_manager.update_setting(ctx.guild.id, "use_database", False)
|
||||
await handle_response(
|
||||
ctx,
|
||||
"Video archive database has been disabled.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -295,8 +291,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"disable_database",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@archivedb.command(name="check")
|
||||
@@ -310,7 +306,7 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
await handle_response(
|
||||
ctx,
|
||||
"The archive database is not enabled. Ask an admin to enable it with `/archivedb enable`",
|
||||
response_type=ResponseType.ERROR
|
||||
response_type=ResponseType.ERROR,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -327,8 +323,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"checkarchived",
|
||||
{"guild_id": ctx.guild.id, "url": url},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
if result:
|
||||
@@ -338,30 +334,12 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
description=f"This video has been archived!\n\nOriginal URL: {url}",
|
||||
color=discord.Color.green(),
|
||||
)
|
||||
embed.add_field(
|
||||
name="Archived Link",
|
||||
value=discord_url,
|
||||
inline=False
|
||||
)
|
||||
embed.add_field(
|
||||
name="Message ID",
|
||||
value=str(message_id),
|
||||
inline=True
|
||||
)
|
||||
embed.add_field(
|
||||
name="Channel ID",
|
||||
value=str(channel_id),
|
||||
inline=True
|
||||
)
|
||||
embed.add_field(
|
||||
name="Guild ID",
|
||||
value=str(guild_id),
|
||||
inline=True
|
||||
)
|
||||
embed.add_field(name="Archived Link", value=discord_url, inline=False)
|
||||
embed.add_field(name="Message ID", value=str(message_id), inline=True)
|
||||
embed.add_field(name="Channel ID", value=str(channel_id), inline=True)
|
||||
embed.add_field(name="Guild ID", value=str(guild_id), inline=True)
|
||||
await handle_response(
|
||||
ctx,
|
||||
embed=embed,
|
||||
response_type=ResponseType.SUCCESS
|
||||
ctx, embed=embed, response_type=ResponseType.SUCCESS
|
||||
)
|
||||
else:
|
||||
embed = discord.Embed(
|
||||
@@ -370,9 +348,7 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
color=discord.Color.red(),
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
embed=embed,
|
||||
response_type=ResponseType.WARNING
|
||||
ctx, embed=embed, response_type=ResponseType.WARNING
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -384,8 +360,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"checkarchived",
|
||||
{"guild_id": ctx.guild.id, "url": url},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
@archivedb.command(name="status")
|
||||
@@ -399,7 +375,7 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
await ctx.defer()
|
||||
|
||||
status = await check_database_status(cog)
|
||||
|
||||
|
||||
# Get additional stats if database is enabled
|
||||
stats = {}
|
||||
if cog.db and status["connected"]:
|
||||
@@ -410,53 +386,49 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
|
||||
embed = discord.Embed(
|
||||
title="Database Status",
|
||||
color=discord.Color.green() if status["connected"] else discord.Color.red()
|
||||
color=(
|
||||
discord.Color.green()
|
||||
if status["connected"]
|
||||
else discord.Color.red()
|
||||
),
|
||||
)
|
||||
embed.add_field(
|
||||
name="Status",
|
||||
value="Enabled" if status["enabled"] else "Disabled",
|
||||
inline=False
|
||||
inline=False,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Connection",
|
||||
value="Connected" if status["connected"] else "Disconnected",
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Initialization",
|
||||
value="Initialized" if status["initialized"] else "Not Initialized",
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
|
||||
if stats:
|
||||
embed.add_field(
|
||||
name="Total Videos",
|
||||
value=str(stats.get("total_videos", 0)),
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Total Size",
|
||||
value=f"{stats.get('total_size', 0)} MB",
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
embed.add_field(
|
||||
name="Last Update",
|
||||
value=stats.get("last_update", "Never"),
|
||||
inline=True
|
||||
inline=True,
|
||||
)
|
||||
|
||||
if status["error"]:
|
||||
embed.add_field(
|
||||
name="Error",
|
||||
value=status["error"],
|
||||
inline=False
|
||||
)
|
||||
embed.add_field(name="Error", value=status["error"], inline=False)
|
||||
|
||||
await handle_response(
|
||||
ctx,
|
||||
embed=embed,
|
||||
response_type=ResponseType.INFO
|
||||
)
|
||||
await handle_response(ctx, embed=embed, response_type=ResponseType.INFO)
|
||||
|
||||
except Exception as e:
|
||||
error = f"Failed to get database status: {str(e)}"
|
||||
@@ -467,8 +439,8 @@ def setup_database_commands(cog: Any) -> Any:
|
||||
"DatabaseCommands",
|
||||
"database_status",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
# Store commands in cog for access
|
||||
|
||||
@@ -4,122 +4,130 @@ import logging
|
||||
from enum import Enum, auto
|
||||
from typing import Optional, Any, Dict, TypedDict
|
||||
|
||||
import discord
|
||||
from discord import app_commands
|
||||
from redbot.core import commands
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions
|
||||
import discord # type: ignore
|
||||
from discord import app_commands # type: ignore
|
||||
from redbot.core import commands # type: ignore
|
||||
from redbot.core.commands import Context, hybrid_group, guild_only, admin_or_permissions # type: ignore
|
||||
|
||||
from .core.settings import VideoFormat, VideoQuality
|
||||
from .core.response_handler import handle_response, ResponseType
|
||||
from .utils.exceptions import (
|
||||
CommandError,
|
||||
ErrorContext,
|
||||
ErrorSeverity
|
||||
)
|
||||
from core.settings import VideoFormat, VideoQuality
|
||||
from core.response_handler import handle_response, ResponseType
|
||||
from utils.exceptions import CommandError, ErrorContext, ErrorSeverity
|
||||
|
||||
logger = logging.getLogger("VideoArchiver")
|
||||
|
||||
|
||||
class SettingCategory(Enum):
|
||||
"""Setting categories"""
|
||||
|
||||
CHANNELS = auto()
|
||||
VIDEO = auto()
|
||||
MESSAGES = auto()
|
||||
PERFORMANCE = auto()
|
||||
|
||||
|
||||
class SettingValidation(TypedDict):
|
||||
"""Type definition for setting validation"""
|
||||
|
||||
valid: bool
|
||||
error: Optional[str]
|
||||
details: Dict[str, Any]
|
||||
|
||||
|
||||
class SettingUpdate(TypedDict):
|
||||
"""Type definition for setting update"""
|
||||
|
||||
setting: str
|
||||
old_value: Any
|
||||
new_value: Any
|
||||
category: SettingCategory
|
||||
|
||||
|
||||
async def validate_setting(
|
||||
category: SettingCategory,
|
||||
setting: str,
|
||||
value: Any
|
||||
category: SettingCategory, setting: str, value: Any
|
||||
) -> SettingValidation:
|
||||
"""
|
||||
Validate a setting value.
|
||||
|
||||
|
||||
Args:
|
||||
category: Setting category
|
||||
setting: Setting name
|
||||
value: Value to validate
|
||||
|
||||
|
||||
Returns:
|
||||
Validation result
|
||||
"""
|
||||
validation = SettingValidation(
|
||||
valid=True,
|
||||
error=None,
|
||||
details={"category": category.name, "setting": setting, "value": value}
|
||||
details={"category": category.name, "setting": setting, "value": value},
|
||||
)
|
||||
|
||||
try:
|
||||
if category == SettingCategory.VIDEO:
|
||||
if setting == "format":
|
||||
if value not in [f.value for f in VideoFormat]:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": f"Invalid format. Must be one of: {', '.join(f.value for f in VideoFormat)}"
|
||||
})
|
||||
validation.update(
|
||||
{
|
||||
"valid": False,
|
||||
"error": f"Invalid format. Must be one of: {', '.join(f.value for f in VideoFormat)}",
|
||||
}
|
||||
)
|
||||
elif setting == "quality":
|
||||
if not 144 <= value <= 4320:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": "Quality must be between 144 and 4320"
|
||||
})
|
||||
validation.update(
|
||||
{
|
||||
"valid": False,
|
||||
"error": "Quality must be between 144 and 4320",
|
||||
}
|
||||
)
|
||||
elif setting == "max_file_size":
|
||||
if not 1 <= value <= 100:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": "Size must be between 1 and 100 MB"
|
||||
})
|
||||
validation.update(
|
||||
{"valid": False, "error": "Size must be between 1 and 100 MB"}
|
||||
)
|
||||
|
||||
elif category == SettingCategory.MESSAGES:
|
||||
if setting == "duration":
|
||||
if not 0 <= value <= 168:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": "Duration must be between 0 and 168 hours (1 week)"
|
||||
})
|
||||
validation.update(
|
||||
{
|
||||
"valid": False,
|
||||
"error": "Duration must be between 0 and 168 hours (1 week)",
|
||||
}
|
||||
)
|
||||
elif setting == "template":
|
||||
placeholders = ["{author}", "{channel}", "{original_message}"]
|
||||
if not any(ph in value for ph in placeholders):
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": f"Template must include at least one placeholder: {', '.join(placeholders)}"
|
||||
})
|
||||
validation.update(
|
||||
{
|
||||
"valid": False,
|
||||
"error": f"Template must include at least one placeholder: {', '.join(placeholders)}",
|
||||
}
|
||||
)
|
||||
|
||||
elif category == SettingCategory.PERFORMANCE:
|
||||
if setting == "concurrent_downloads":
|
||||
if not 1 <= value <= 5:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": "Concurrent downloads must be between 1 and 5"
|
||||
})
|
||||
validation.update(
|
||||
{
|
||||
"valid": False,
|
||||
"error": "Concurrent downloads must be between 1 and 5",
|
||||
}
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
validation.update({
|
||||
"valid": False,
|
||||
"error": f"Validation error: {str(e)}"
|
||||
})
|
||||
validation.update({"valid": False, "error": f"Validation error: {str(e)}"})
|
||||
|
||||
return validation
|
||||
|
||||
|
||||
def setup_settings_commands(cog: Any) -> Any:
|
||||
"""
|
||||
Set up settings commands for the cog.
|
||||
|
||||
|
||||
Args:
|
||||
cog: VideoArchiver cog instance
|
||||
|
||||
|
||||
Returns:
|
||||
Main settings command group
|
||||
"""
|
||||
@@ -137,8 +145,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"show_settings",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -146,11 +154,7 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
await ctx.defer()
|
||||
|
||||
embed = await cog.config_manager.format_settings_embed(ctx.guild)
|
||||
await handle_response(
|
||||
ctx,
|
||||
embed=embed,
|
||||
response_type=ResponseType.INFO
|
||||
)
|
||||
await handle_response(ctx, embed=embed, response_type=ResponseType.INFO)
|
||||
|
||||
except Exception as e:
|
||||
error = f"Failed to show settings: {str(e)}"
|
||||
@@ -161,8 +165,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"show_settings",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setchannel")
|
||||
@@ -180,8 +184,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_archive_channel",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -194,7 +198,7 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
send_messages=True,
|
||||
embed_links=True,
|
||||
attach_files=True,
|
||||
read_message_history=True
|
||||
read_message_history=True,
|
||||
)
|
||||
channel_perms = channel.permissions_for(bot_member)
|
||||
if not all(getattr(channel_perms, perm) for perm in required_perms):
|
||||
@@ -207,23 +211,22 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"guild_id": ctx.guild.id,
|
||||
"channel_id": channel.id,
|
||||
"missing_perms": [
|
||||
perm for perm in required_perms
|
||||
perm
|
||||
for perm in required_perms
|
||||
if not getattr(channel_perms, perm)
|
||||
]
|
||||
],
|
||||
},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"archive_channel",
|
||||
channel.id
|
||||
ctx.guild.id, "archive_channel", channel.id
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Archive channel has been set to {channel.mention}.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -235,8 +238,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_archive_channel",
|
||||
{"guild_id": ctx.guild.id, "channel_id": channel.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setlog")
|
||||
@@ -254,8 +257,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_log_channel",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -265,9 +268,7 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
# Check channel permissions
|
||||
bot_member = ctx.guild.me
|
||||
required_perms = discord.Permissions(
|
||||
send_messages=True,
|
||||
embed_links=True,
|
||||
read_message_history=True
|
||||
send_messages=True, embed_links=True, read_message_history=True
|
||||
)
|
||||
channel_perms = channel.permissions_for(bot_member)
|
||||
if not all(getattr(channel_perms, perm) for perm in required_perms):
|
||||
@@ -280,23 +281,22 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"guild_id": ctx.guild.id,
|
||||
"channel_id": channel.id,
|
||||
"missing_perms": [
|
||||
perm for perm in required_perms
|
||||
perm
|
||||
for perm in required_perms
|
||||
if not getattr(channel_perms, perm)
|
||||
]
|
||||
],
|
||||
},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"log_channel",
|
||||
channel.id
|
||||
ctx.guild.id, "log_channel", channel.id
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Log channel has been set to {channel.mention}.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -308,8 +308,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_log_channel",
|
||||
{"guild_id": ctx.guild.id, "channel_id": channel.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="addchannel")
|
||||
@@ -327,8 +327,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"add_enabled_channel",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -338,8 +338,7 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
# Check channel permissions
|
||||
bot_member = ctx.guild.me
|
||||
required_perms = discord.Permissions(
|
||||
read_messages=True,
|
||||
read_message_history=True
|
||||
read_messages=True, read_message_history=True
|
||||
)
|
||||
channel_perms = channel.permissions_for(bot_member)
|
||||
if not all(getattr(channel_perms, perm) for perm in required_perms):
|
||||
@@ -352,36 +351,34 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"guild_id": ctx.guild.id,
|
||||
"channel_id": channel.id,
|
||||
"missing_perms": [
|
||||
perm for perm in required_perms
|
||||
perm
|
||||
for perm in required_perms
|
||||
if not getattr(channel_perms, perm)
|
||||
]
|
||||
],
|
||||
},
|
||||
ErrorSeverity.MEDIUM
|
||||
)
|
||||
ErrorSeverity.MEDIUM,
|
||||
),
|
||||
)
|
||||
|
||||
enabled_channels = await cog.config_manager.get_setting(
|
||||
ctx.guild.id,
|
||||
"enabled_channels"
|
||||
ctx.guild.id, "enabled_channels"
|
||||
)
|
||||
if channel.id in enabled_channels:
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"{channel.mention} is already being monitored.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
enabled_channels.append(channel.id)
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"enabled_channels",
|
||||
enabled_channels
|
||||
ctx.guild.id, "enabled_channels", enabled_channels
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Now monitoring {channel.mention} for videos.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -393,15 +390,17 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"add_enabled_channel",
|
||||
{"guild_id": ctx.guild.id, "channel_id": channel.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="removechannel")
|
||||
@guild_only()
|
||||
@admin_or_permissions(administrator=True)
|
||||
@app_commands.describe(channel="The channel to stop monitoring")
|
||||
async def remove_enabled_channel(ctx: Context, channel: discord.TextChannel) -> None:
|
||||
async def remove_enabled_channel(
|
||||
ctx: Context, channel: discord.TextChannel
|
||||
) -> None:
|
||||
"""Remove a channel from video monitoring."""
|
||||
try:
|
||||
# Check if config manager is ready
|
||||
@@ -412,8 +411,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"remove_enabled_channel",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -421,27 +420,24 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
await ctx.defer()
|
||||
|
||||
enabled_channels = await cog.config_manager.get_setting(
|
||||
ctx.guild.id,
|
||||
"enabled_channels"
|
||||
ctx.guild.id, "enabled_channels"
|
||||
)
|
||||
if channel.id not in enabled_channels:
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"{channel.mention} is not being monitored.",
|
||||
response_type=ResponseType.WARNING
|
||||
response_type=ResponseType.WARNING,
|
||||
)
|
||||
return
|
||||
|
||||
enabled_channels.remove(channel.id)
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"enabled_channels",
|
||||
enabled_channels
|
||||
ctx.guild.id, "enabled_channels", enabled_channels
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Stopped monitoring {channel.mention} for videos.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -453,8 +449,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"remove_enabled_channel",
|
||||
{"guild_id": ctx.guild.id, "channel_id": channel.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setformat")
|
||||
@@ -472,8 +468,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_video_format",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -482,28 +478,20 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate format
|
||||
format = format.lower()
|
||||
validation = await validate_setting(
|
||||
SettingCategory.VIDEO,
|
||||
"format",
|
||||
format
|
||||
)
|
||||
validation = await validate_setting(SettingCategory.VIDEO, "format", format)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"video_format",
|
||||
format
|
||||
ctx.guild.id, "video_format", format
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Video format has been set to {format}.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -515,8 +503,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_video_format",
|
||||
{"guild_id": ctx.guild.id, "format": format},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setquality")
|
||||
@@ -534,8 +522,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_video_quality",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -544,27 +532,21 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate quality
|
||||
validation = await validate_setting(
|
||||
SettingCategory.VIDEO,
|
||||
"quality",
|
||||
quality
|
||||
SettingCategory.VIDEO, "quality", quality
|
||||
)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"video_quality",
|
||||
quality
|
||||
ctx.guild.id, "video_quality", quality
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Video quality has been set to {quality}p.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -576,8 +558,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_video_quality",
|
||||
{"guild_id": ctx.guild.id, "quality": quality},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setmaxsize")
|
||||
@@ -595,8 +577,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_max_file_size",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -605,27 +587,19 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate size
|
||||
validation = await validate_setting(
|
||||
SettingCategory.VIDEO,
|
||||
"max_file_size",
|
||||
size
|
||||
SettingCategory.VIDEO, "max_file_size", size
|
||||
)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"max_file_size",
|
||||
size
|
||||
)
|
||||
await cog.config_manager.update_setting(ctx.guild.id, "max_file_size", size)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Maximum file size has been set to {size}MB.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -637,8 +611,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_max_file_size",
|
||||
{"guild_id": ctx.guild.id, "size": size},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setmessageduration")
|
||||
@@ -656,8 +630,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_message_duration",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -666,27 +640,21 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate duration
|
||||
validation = await validate_setting(
|
||||
SettingCategory.MESSAGES,
|
||||
"duration",
|
||||
hours
|
||||
SettingCategory.MESSAGES, "duration", hours
|
||||
)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"message_duration",
|
||||
hours
|
||||
ctx.guild.id, "message_duration", hours
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Message duration has been set to {hours} hours.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -698,8 +666,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_message_duration",
|
||||
{"guild_id": ctx.guild.id, "hours": hours},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="settemplate")
|
||||
@@ -719,8 +687,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_message_template",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -729,27 +697,21 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate template
|
||||
validation = await validate_setting(
|
||||
SettingCategory.MESSAGES,
|
||||
"template",
|
||||
template
|
||||
SettingCategory.MESSAGES, "template", template
|
||||
)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"message_template",
|
||||
template
|
||||
ctx.guild.id, "message_template", template
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Message template has been set to: {template}",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -761,8 +723,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_message_template",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
@settings.command(name="setconcurrent")
|
||||
@@ -780,8 +742,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_concurrent_downloads",
|
||||
{"guild_id": ctx.guild.id},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Defer the response immediately for slash commands
|
||||
@@ -790,27 +752,21 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
|
||||
# Validate count
|
||||
validation = await validate_setting(
|
||||
SettingCategory.PERFORMANCE,
|
||||
"concurrent_downloads",
|
||||
count
|
||||
SettingCategory.PERFORMANCE, "concurrent_downloads", count
|
||||
)
|
||||
if not validation["valid"]:
|
||||
await handle_response(
|
||||
ctx,
|
||||
validation["error"],
|
||||
response_type=ResponseType.ERROR
|
||||
ctx, validation["error"], response_type=ResponseType.ERROR
|
||||
)
|
||||
return
|
||||
|
||||
await cog.config_manager.update_setting(
|
||||
ctx.guild.id,
|
||||
"concurrent_downloads",
|
||||
count
|
||||
ctx.guild.id, "concurrent_downloads", count
|
||||
)
|
||||
await handle_response(
|
||||
ctx,
|
||||
f"Concurrent downloads has been set to {count}.",
|
||||
response_type=ResponseType.SUCCESS
|
||||
response_type=ResponseType.SUCCESS,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
@@ -822,8 +778,8 @@ def setup_settings_commands(cog: Any) -> Any:
|
||||
"SettingsCommands",
|
||||
"set_concurrent_downloads",
|
||||
{"guild_id": ctx.guild.id, "count": count},
|
||||
ErrorSeverity.HIGH
|
||||
)
|
||||
ErrorSeverity.HIGH,
|
||||
),
|
||||
)
|
||||
|
||||
# Store commands in cog for access
|
||||
|
||||
Reference in New Issue
Block a user