mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 10:51:05 -05:00
fix
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
"""VideoArchiver cog for Red-DiscordBot"""
|
"""VideoArchiver cog for Red-DiscordBot"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import discord
|
import discord
|
||||||
from redbot.core import commands, Config, data_manager, checks
|
from redbot.core import commands, Config, data_manager, checks
|
||||||
|
from discord import app_commands
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import logging
|
import logging
|
||||||
import asyncio
|
import asyncio
|
||||||
@@ -26,7 +28,7 @@ from videoarchiver.utils.exceptions import (
|
|||||||
ConfigurationError as ConfigError,
|
ConfigurationError as ConfigError,
|
||||||
VideoVerificationError as UpdateError,
|
VideoVerificationError as UpdateError,
|
||||||
QueueError,
|
QueueError,
|
||||||
FileCleanupError as FileOperationError
|
FileCleanupError as FileOperationError,
|
||||||
)
|
)
|
||||||
|
|
||||||
logger = logging.getLogger("VideoArchiver")
|
logger = logging.getLogger("VideoArchiver")
|
||||||
@@ -35,6 +37,7 @@ logger = logging.getLogger("VideoArchiver")
|
|||||||
UNLOAD_TIMEOUT = 30 # seconds
|
UNLOAD_TIMEOUT = 30 # seconds
|
||||||
CLEANUP_TIMEOUT = 15 # seconds
|
CLEANUP_TIMEOUT = 15 # seconds
|
||||||
|
|
||||||
|
|
||||||
class VideoArchiver(commands.Cog):
|
class VideoArchiver(commands.Cog):
|
||||||
"""Archive videos from Discord channels"""
|
"""Archive videos from Discord channels"""
|
||||||
|
|
||||||
@@ -129,7 +132,7 @@ class VideoArchiver(commands.Cog):
|
|||||||
self.components,
|
self.components,
|
||||||
queue_manager=self.queue_manager,
|
queue_manager=self.queue_manager,
|
||||||
ffmpeg_mgr=self.ffmpeg_mgr,
|
ffmpeg_mgr=self.ffmpeg_mgr,
|
||||||
db=self.db # Pass database to processor (None by default)
|
db=self.db, # Pass database to processor (None by default)
|
||||||
)
|
)
|
||||||
|
|
||||||
# Start update checker
|
# Start update checker
|
||||||
@@ -141,51 +144,82 @@ class VideoArchiver(commands.Cog):
|
|||||||
logger.info("VideoArchiver initialization completed successfully")
|
logger.info("VideoArchiver initialization completed successfully")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Critical error during initialization: {traceback.format_exc()}")
|
logger.error(
|
||||||
|
f"Critical error during initialization: {traceback.format_exc()}"
|
||||||
|
)
|
||||||
await self._cleanup()
|
await self._cleanup()
|
||||||
raise
|
raise
|
||||||
|
|
||||||
@commands.group(name="videoarchiver")
|
@commands.hybrid_group(name="archivedb", fallback="help")
|
||||||
@commands.guild_only()
|
@commands.guild_only()
|
||||||
async def videoarchiver(self, ctx: commands.Context):
|
async def archivedb(self, ctx: commands.Context):
|
||||||
"""Video archiver commands"""
|
"""Manage the video archive database."""
|
||||||
pass
|
if ctx.invoked_subcommand is None:
|
||||||
|
await ctx.send_help(ctx.command)
|
||||||
|
|
||||||
@videoarchiver.command(name="toggledb")
|
@archivedb.command(name="enable")
|
||||||
|
@commands.guild_only()
|
||||||
@checks.admin_or_permissions(administrator=True)
|
@checks.admin_or_permissions(administrator=True)
|
||||||
async def toggle_database(self, ctx: commands.Context):
|
async def enable_database(self, ctx: commands.Context):
|
||||||
"""Toggle the video archive database on/off."""
|
"""Enable the video archive database."""
|
||||||
try:
|
try:
|
||||||
current_setting = await self.config_manager.get_guild_setting(ctx.guild, "use_database")
|
current_setting = await self.config_manager.get_guild_setting(
|
||||||
new_setting = not current_setting
|
ctx.guild, "use_database"
|
||||||
|
)
|
||||||
|
if current_setting:
|
||||||
|
await ctx.send("The video archive database is already enabled.")
|
||||||
|
return
|
||||||
|
|
||||||
if new_setting and self.db is None:
|
# Initialize database if it's being enabled
|
||||||
# Initialize database if it's being enabled
|
self.db = VideoArchiveDB(self.data_path)
|
||||||
self.db = VideoArchiveDB(self.data_path)
|
# Update processor with database
|
||||||
# Update processor with database
|
self.processor.db = self.db
|
||||||
self.processor.db = self.db
|
self.processor.queue_handler.db = self.db
|
||||||
self.processor.queue_handler.db = self.db
|
|
||||||
|
|
||||||
elif not new_setting:
|
await self.config_manager.set_guild_setting(ctx.guild, "use_database", True)
|
||||||
# Remove database if it's being disabled
|
await ctx.send("Video archive database has been enabled.")
|
||||||
self.db = None
|
|
||||||
self.processor.db = None
|
|
||||||
self.processor.queue_handler.db = None
|
|
||||||
|
|
||||||
await self.config_manager.set_guild_setting(ctx.guild, "use_database", new_setting)
|
|
||||||
status = "enabled" if new_setting else "disabled"
|
|
||||||
await ctx.send(f"Video archive database has been {status}.")
|
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Error toggling database: {e}")
|
logger.error(f"Error enabling database: {e}")
|
||||||
await ctx.send("An error occurred while toggling the database setting.")
|
await ctx.send("An error occurred while enabling the database.")
|
||||||
|
|
||||||
|
@archivedb.command(name="disable")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
async def disable_database(self, ctx: commands.Context):
|
||||||
|
"""Disable the video archive database."""
|
||||||
|
try:
|
||||||
|
current_setting = await self.config_manager.get_guild_setting(
|
||||||
|
ctx.guild, "use_database"
|
||||||
|
)
|
||||||
|
if not current_setting:
|
||||||
|
await ctx.send("The video archive database is already disabled.")
|
||||||
|
return
|
||||||
|
|
||||||
|
# Remove database references
|
||||||
|
self.db = None
|
||||||
|
self.processor.db = None
|
||||||
|
self.processor.queue_handler.db = None
|
||||||
|
|
||||||
|
await self.config_manager.set_guild_setting(
|
||||||
|
ctx.guild, "use_database", False
|
||||||
|
)
|
||||||
|
await ctx.send("Video archive database has been disabled.")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error disabling database: {e}")
|
||||||
|
await ctx.send("An error occurred while disabling the database.")
|
||||||
|
|
||||||
@commands.hybrid_command()
|
@commands.hybrid_command()
|
||||||
|
@commands.guild_only()
|
||||||
|
@app_commands.describe(url="The URL of the video to check")
|
||||||
async def checkarchived(self, ctx: commands.Context, url: str):
|
async def checkarchived(self, ctx: commands.Context, url: str):
|
||||||
"""Check if a video URL has been archived and get its Discord link if it exists."""
|
"""Check if a video URL has been archived and get its Discord link if it exists."""
|
||||||
try:
|
try:
|
||||||
if not self.db:
|
if not self.db:
|
||||||
await ctx.send("The archive database is not enabled. Ask an admin to enable it with `/videoarchiver toggledb`")
|
await ctx.send(
|
||||||
|
"The archive database is not enabled. Ask an admin to enable it with `/archivedb enable`"
|
||||||
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
result = self.db.get_archived_video(url)
|
result = self.db.get_archived_video(url)
|
||||||
@@ -194,7 +228,7 @@ class VideoArchiver(commands.Cog):
|
|||||||
embed = discord.Embed(
|
embed = discord.Embed(
|
||||||
title="Video Found in Archive",
|
title="Video Found in Archive",
|
||||||
description=f"This video has been archived!\n\nOriginal URL: {url}",
|
description=f"This video has been archived!\n\nOriginal URL: {url}",
|
||||||
color=discord.Color.green()
|
color=discord.Color.green(),
|
||||||
)
|
)
|
||||||
embed.add_field(name="Archived Link", value=discord_url)
|
embed.add_field(name="Archived Link", value=discord_url)
|
||||||
await ctx.send(embed=embed)
|
await ctx.send(embed=embed)
|
||||||
@@ -202,13 +236,144 @@ class VideoArchiver(commands.Cog):
|
|||||||
embed = discord.Embed(
|
embed = discord.Embed(
|
||||||
title="Video Not Found",
|
title="Video Not Found",
|
||||||
description="This video has not been archived yet.",
|
description="This video has not been archived yet.",
|
||||||
color=discord.Color.red()
|
color=discord.Color.red(),
|
||||||
)
|
)
|
||||||
await ctx.send(embed=embed)
|
await ctx.send(embed=embed)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Error checking archived video: {e}")
|
logger.error(f"Error checking archived video: {e}")
|
||||||
await ctx.send("An error occurred while checking the archive.")
|
await ctx.send("An error occurred while checking the archive.")
|
||||||
|
|
||||||
|
@commands.hybrid_group(name="archiver", fallback="help")
|
||||||
|
@commands.guild_only()
|
||||||
|
async def archiver(self, ctx: commands.Context):
|
||||||
|
"""Manage video archiver settings."""
|
||||||
|
if ctx.invoked_subcommand is None:
|
||||||
|
await ctx.send_help(ctx.command)
|
||||||
|
|
||||||
|
@archiver.command(name="enable")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
async def enable_archiver(self, ctx: commands.Context):
|
||||||
|
"""Enable video archiving in this server."""
|
||||||
|
try:
|
||||||
|
current_setting = await self.config_manager.get_guild_setting(
|
||||||
|
ctx.guild, "enabled"
|
||||||
|
)
|
||||||
|
if current_setting:
|
||||||
|
await ctx.send("Video archiving is already enabled.")
|
||||||
|
return
|
||||||
|
|
||||||
|
await self.config_manager.set_guild_setting(ctx.guild, "enabled", True)
|
||||||
|
await ctx.send("Video archiving has been enabled.")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error enabling archiver: {e}")
|
||||||
|
await ctx.send("An error occurred while enabling video archiving.")
|
||||||
|
|
||||||
|
@archiver.command(name="disable")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
async def disable_archiver(self, ctx: commands.Context):
|
||||||
|
"""Disable video archiving in this server."""
|
||||||
|
try:
|
||||||
|
current_setting = await self.config_manager.get_guild_setting(
|
||||||
|
ctx.guild, "enabled"
|
||||||
|
)
|
||||||
|
if not current_setting:
|
||||||
|
await ctx.send("Video archiving is already disabled.")
|
||||||
|
return
|
||||||
|
|
||||||
|
await self.config_manager.set_guild_setting(ctx.guild, "enabled", False)
|
||||||
|
await ctx.send("Video archiving has been disabled.")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error disabling archiver: {e}")
|
||||||
|
await ctx.send("An error occurred while disabling video archiving.")
|
||||||
|
|
||||||
|
@archiver.command(name="setchannel")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
@app_commands.describe(channel="The channel where archived videos will be stored")
|
||||||
|
async def set_archive_channel(
|
||||||
|
self, ctx: commands.Context, channel: discord.TextChannel
|
||||||
|
):
|
||||||
|
"""Set the channel where archived videos will be stored."""
|
||||||
|
try:
|
||||||
|
await self.config_manager.set_guild_setting(
|
||||||
|
ctx.guild, "archive_channel", channel.id
|
||||||
|
)
|
||||||
|
await ctx.send(f"Archive channel has been set to {channel.mention}.")
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error setting archive channel: {e}")
|
||||||
|
await ctx.send("An error occurred while setting the archive channel.")
|
||||||
|
|
||||||
|
@archiver.command(name="setlog")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
@app_commands.describe(channel="The channel where log messages will be sent")
|
||||||
|
async def set_log_channel(
|
||||||
|
self, ctx: commands.Context, channel: discord.TextChannel
|
||||||
|
):
|
||||||
|
"""Set the channel where log messages will be sent."""
|
||||||
|
try:
|
||||||
|
await self.config_manager.set_guild_setting(
|
||||||
|
ctx.guild, "log_channel", channel.id
|
||||||
|
)
|
||||||
|
await ctx.send(f"Log channel has been set to {channel.mention}.")
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error setting log channel: {e}")
|
||||||
|
await ctx.send("An error occurred while setting the log channel.")
|
||||||
|
|
||||||
|
@archiver.command(name="addchannel")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
@app_commands.describe(channel="The channel to monitor for videos")
|
||||||
|
async def add_enabled_channel(
|
||||||
|
self, ctx: commands.Context, channel: discord.TextChannel
|
||||||
|
):
|
||||||
|
"""Add a channel to monitor for videos."""
|
||||||
|
try:
|
||||||
|
enabled_channels = await self.config_manager.get_guild_setting(
|
||||||
|
ctx.guild, "enabled_channels"
|
||||||
|
)
|
||||||
|
if channel.id in enabled_channels:
|
||||||
|
await ctx.send(f"{channel.mention} is already being monitored.")
|
||||||
|
return
|
||||||
|
|
||||||
|
enabled_channels.append(channel.id)
|
||||||
|
await self.config_manager.set_guild_setting(
|
||||||
|
ctx.guild, "enabled_channels", enabled_channels
|
||||||
|
)
|
||||||
|
await ctx.send(f"Now monitoring {channel.mention} for videos.")
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error adding enabled channel: {e}")
|
||||||
|
await ctx.send("An error occurred while adding the channel.")
|
||||||
|
|
||||||
|
@archiver.command(name="removechannel")
|
||||||
|
@commands.guild_only()
|
||||||
|
@checks.admin_or_permissions(administrator=True)
|
||||||
|
@app_commands.describe(channel="The channel to stop monitoring")
|
||||||
|
async def remove_enabled_channel(
|
||||||
|
self, ctx: commands.Context, channel: discord.TextChannel
|
||||||
|
):
|
||||||
|
"""Remove a channel from video monitoring."""
|
||||||
|
try:
|
||||||
|
enabled_channels = await self.config_manager.get_guild_setting(
|
||||||
|
ctx.guild, "enabled_channels"
|
||||||
|
)
|
||||||
|
if channel.id not in enabled_channels:
|
||||||
|
await ctx.send(f"{channel.mention} is not being monitored.")
|
||||||
|
return
|
||||||
|
|
||||||
|
enabled_channels.remove(channel.id)
|
||||||
|
await self.config_manager.set_guild_setting(
|
||||||
|
ctx.guild, "enabled_channels", enabled_channels
|
||||||
|
)
|
||||||
|
await ctx.send(f"Stopped monitoring {channel.mention} for videos.")
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(f"Error removing enabled channel: {e}")
|
||||||
|
await ctx.send("An error occurred while removing the channel.")
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_raw_reaction_add(self, payload: discord.RawReactionActionEvent):
|
async def on_raw_reaction_add(self, payload: discord.RawReactionActionEvent):
|
||||||
"""Handle reactions to messages"""
|
"""Handle reactions to messages"""
|
||||||
@@ -225,7 +390,7 @@ class VideoArchiver(commands.Cog):
|
|||||||
return
|
return
|
||||||
|
|
||||||
# Check if it's the archived reaction
|
# Check if it's the archived reaction
|
||||||
if str(payload.emoji) == REACTIONS['archived']:
|
if str(payload.emoji) == REACTIONS["archived"]:
|
||||||
# Only process if database is enabled
|
# Only process if database is enabled
|
||||||
if self.db:
|
if self.db:
|
||||||
user = self.bot.get_user(payload.user_id)
|
user = self.bot.get_user(payload.user_id)
|
||||||
|
|||||||
Reference in New Issue
Block a user