import os import re import discord from redbot.core import commands, Config from redbot.core.bot import Red from redbot.core.utils.chat_formatting import box from discord import app_commands import logging from pathlib import Path import yt_dlp import shutil import asyncio from typing import Optional, List, Set, Dict import sys # Add cog directory to path for local imports cog_path = Path(__file__).parent if str(cog_path) not in sys.path: sys.path.append(str(cog_path)) # Import local utils from utils import VideoDownloader, secure_delete_file, cleanup_downloads, MessageManager from ffmpeg_manager import FFmpegManager # Configure logging logging.basicConfig( level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' ) logger = logging.getLogger('VideoArchiver') class VideoArchiver(commands.Cog): """Archive videos from Discord channels""" default_guild = { "archive_channel": None, "notification_channel": None, "log_channel": None, # Added log channel "monitored_channels": [], "allowed_roles": [], # Added role management "video_format": "mp4", "video_quality": 1080, "max_file_size": 8, # Changed to 8MB default "delete_after_repost": True, "message_duration": 24, "message_template": "Archived video from {author}\nOriginal: {original_message}", "enabled_sites": [], "concurrent_downloads": 3 } def __init__(self, bot: Red): self.bot = bot self.config = Config.get_conf(self, identifier=855847, force_registration=True) self.config.register_guild(**self.default_guild) # Initialize components dict for each guild self.components = {} self.download_path = Path(cog_path) / "downloads" self.download_path.mkdir(parents=True, exist_ok=True) # Clean up downloads on load cleanup_downloads(str(self.download_path)) # Initialize FFmpeg manager self.ffmpeg_mgr = FFmpegManager() def cog_unload(self): """Cleanup when cog is unloaded""" if self.download_path.exists(): shutil.rmtree(self.download_path, ignore_errors=True) async def initialize_guild_components(self, guild_id: int): """Initialize or update components for a guild""" settings = await self.config.guild_from_id(guild_id).all() self.components[guild_id] = { 'downloader': VideoDownloader( str(self.download_path), settings['video_format'], settings['video_quality'], settings['max_file_size'], settings['enabled_sites'] if settings['enabled_sites'] else None ), 'message_manager': MessageManager( settings['message_duration'], settings['message_template'] ) } def _check_user_roles(self, member: discord.Member, allowed_roles: List[int]) -> bool: """Check if user has permission to trigger archiving""" # If no roles are set, allow all users if not allowed_roles: return True # Check if user has any of the allowed roles return any(role.id in allowed_roles for role in member.roles) async def log_message(self, guild: discord.Guild, message: str, level: str = "info"): """Send a log message to the guild's log channel if set""" settings = await self.config.guild(guild).all() if settings["log_channel"]: try: log_channel = guild.get_channel(settings["log_channel"]) if log_channel: await log_channel.send(f"[{level.upper()}] {message}") except discord.HTTPException: logger.error(f"Failed to send log message to channel: {message}") logger.log(getattr(logging, level.upper()), message) @commands.hybrid_group(name="videoarchiver", aliases=["va"]) @commands.guild_only() @commands.admin_or_permissions(administrator=True) async def videoarchiver(self, ctx: commands.Context): """Video Archiver configuration commands""" if ctx.invoked_subcommand is None: settings = await self.config.guild(ctx.guild).all() embed = discord.Embed( title="Video Archiver Settings", color=discord.Color.blue() ) archive_channel = ctx.guild.get_channel(settings["archive_channel"]) if settings["archive_channel"] else None notification_channel = ctx.guild.get_channel(settings["notification_channel"]) if settings["notification_channel"] else None log_channel = ctx.guild.get_channel(settings["log_channel"]) if settings["log_channel"] else None monitored_channels = [ctx.guild.get_channel(c) for c in settings["monitored_channels"]] monitored_channels = [c.mention for c in monitored_channels if c] allowed_roles = [ctx.guild.get_role(r) for r in settings["allowed_roles"]] allowed_roles = [r.name for r in allowed_roles if r] embed.add_field( name="Archive Channel", value=archive_channel.mention if archive_channel else "Not set", inline=False ) embed.add_field( name="Notification Channel", value=notification_channel.mention if notification_channel else "Same as archive", inline=False ) embed.add_field( name="Log Channel", value=log_channel.mention if log_channel else "Not set", inline=False ) embed.add_field( name="Monitored Channels", value="\n".join(monitored_channels) if monitored_channels else "None", inline=False ) embed.add_field( name="Allowed Roles", value=", ".join(allowed_roles) if allowed_roles else "All roles (no restrictions)", inline=False ) embed.add_field(name="Video Format", value=settings["video_format"], inline=True) embed.add_field(name="Max Quality", value=f"{settings['video_quality']}p", inline=True) embed.add_field(name="Max File Size", value=f"{settings['max_file_size']}MB", inline=True) embed.add_field(name="Delete After Repost", value=str(settings["delete_after_repost"]), inline=True) embed.add_field(name="Message Duration", value=f"{settings['message_duration']} hours", inline=True) embed.add_field(name="Concurrent Downloads", value=str(settings["concurrent_downloads"]), inline=True) embed.add_field( name="Enabled Sites", value=", ".join(settings["enabled_sites"]) if settings["enabled_sites"] else "All sites", inline=False ) # Add hardware info gpu_info = self.ffmpeg_mgr._gpu_info cpu_cores = self.ffmpeg_mgr._cpu_cores hardware_info = f"CPU Cores: {cpu_cores}\n" if gpu_info['nvidia']: hardware_info += "NVIDIA GPU: Available (using NVENC)\n" if gpu_info['amd']: hardware_info += "AMD GPU: Available (using AMF)\n" if gpu_info['intel']: hardware_info += "Intel GPU: Available (using QSV)\n" if not any(gpu_info.values()): hardware_info += "No GPU acceleration available (using CPU)\n" embed.add_field(name="Hardware Info", value=hardware_info, inline=False) await ctx.send(embed=embed) @videoarchiver.command(name="addrole") async def add_allowed_role(self, ctx: commands.Context, role: discord.Role): """Add a role that's allowed to trigger archiving""" async with self.config.guild(ctx.guild).allowed_roles() as roles: if role.id not in roles: roles.append(role.id) await ctx.send(f"Added {role.name} to allowed roles") await self.log_message(ctx.guild, f"Added role {role.name} ({role.id}) to allowed roles") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="removerole") async def remove_allowed_role(self, ctx: commands.Context, role: discord.Role): """Remove a role from allowed roles""" async with self.config.guild(ctx.guild).allowed_roles() as roles: if role.id in roles: roles.remove(role.id) await ctx.send(f"Removed {role.name} from allowed roles") await self.log_message(ctx.guild, f"Removed role {role.name} ({role.id}) from allowed roles") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="listroles") async def list_allowed_roles(self, ctx: commands.Context): """List all roles allowed to trigger archiving""" roles = await self.config.guild(ctx.guild).allowed_roles() if not roles: await ctx.send("No roles are currently allowed (all users can trigger archiving)") return role_names = [r.name for r in [ctx.guild.get_role(role_id) for role_id in roles] if r] await ctx.send(f"Allowed roles: {', '.join(role_names)}") @videoarchiver.command(name="setconcurrent") async def set_concurrent_downloads(self, ctx: commands.Context, count: int): """Set the number of concurrent downloads (1-5)""" if not 1 <= count <= 5: await ctx.send("Concurrent downloads must be between 1 and 5") return await self.config.guild(ctx.guild).concurrent_downloads.set(count) await ctx.send(f"Concurrent downloads set to {count}") await self.log_message(ctx.guild, f"Concurrent downloads set to {count}") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setchannel") async def set_archive_channel(self, ctx: commands.Context, channel: discord.TextChannel): """Set the archive channel""" await self.config.guild(ctx.guild).archive_channel.set(channel.id) await ctx.send(f"Archive channel set to {channel.mention}") await self.log_message(ctx.guild, f"Archive channel set to {channel.name} ({channel.id})") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setnotification") async def set_notification_channel(self, ctx: commands.Context, channel: discord.TextChannel): """Set the notification channel (where archive messages appear)""" await self.config.guild(ctx.guild).notification_channel.set(channel.id) await ctx.send(f"Notification channel set to {channel.mention}") await self.log_message(ctx.guild, f"Notification channel set to {channel.name} ({channel.id})") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setlogchannel") async def set_log_channel(self, ctx: commands.Context, channel: discord.TextChannel): """Set the log channel for error messages and notifications""" await self.config.guild(ctx.guild).log_channel.set(channel.id) await ctx.send(f"Log channel set to {channel.mention}") await self.log_message(ctx.guild, f"Log channel set to {channel.name} ({channel.id})") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="addmonitor") async def add_monitored_channel(self, ctx: commands.Context, channel: discord.TextChannel): """Add a channel to monitor for videos""" async with self.config.guild(ctx.guild).monitored_channels() as channels: if channel.id not in channels: channels.append(channel.id) await ctx.send(f"Now monitoring {channel.mention} for videos") await self.log_message(ctx.guild, f"Added {channel.name} ({channel.id}) to monitored channels") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="removemonitor") async def remove_monitored_channel(self, ctx: commands.Context, channel: discord.TextChannel): """Remove a channel from monitoring""" async with self.config.guild(ctx.guild).monitored_channels() as channels: if channel.id in channels: channels.remove(channel.id) await ctx.send(f"Stopped monitoring {channel.mention}") await self.log_message(ctx.guild, f"Removed {channel.name} ({channel.id}) from monitored channels") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setformat") async def set_video_format(self, ctx: commands.Context, format: str): """Set the video format (e.g., mp4, webm)""" await self.config.guild(ctx.guild).video_format.set(format.lower()) await ctx.send(f"Video format set to {format.lower()}") await self.log_message(ctx.guild, f"Video format set to {format.lower()}") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setquality") async def set_video_quality(self, ctx: commands.Context, quality: int): """Set the maximum video quality in pixels (e.g., 1080)""" await self.config.guild(ctx.guild).video_quality.set(quality) await ctx.send(f"Maximum video quality set to {quality}p") await self.log_message(ctx.guild, f"Video quality set to {quality}p") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="setmaxsize") async def set_max_file_size(self, ctx: commands.Context, size: int): """Set the maximum file size in MB""" await self.config.guild(ctx.guild).max_file_size.set(size) await ctx.send(f"Maximum file size set to {size}MB") await self.log_message(ctx.guild, f"Maximum file size set to {size}MB") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="toggledelete") async def toggle_delete_after_repost(self, ctx: commands.Context): """Toggle whether to delete local files after reposting""" current = await self.config.guild(ctx.guild).delete_after_repost() await self.config.guild(ctx.guild).delete_after_repost.set(not current) await ctx.send(f"Delete after repost: {not current}") await self.log_message(ctx.guild, f"Delete after repost set to: {not current}") @videoarchiver.command(name="setduration") async def set_message_duration(self, ctx: commands.Context, hours: int): """Set how long to keep archive messages (0 for permanent)""" await self.config.guild(ctx.guild).message_duration.set(hours) await ctx.send(f"Archive message duration set to {hours} hours") await self.log_message(ctx.guild, f"Message duration set to {hours} hours") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="settemplate") async def set_message_template(self, ctx: commands.Context, *, template: str): """Set the archive message template. Use {author}, {url}, and {original_message} as placeholders""" await self.config.guild(ctx.guild).message_template.set(template) await ctx.send(f"Archive message template set to:\n{template}") await self.log_message(ctx.guild, f"Message template updated") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="enablesites") async def enable_sites(self, ctx: commands.Context, *sites: str): """Enable specific sites (leave empty for all sites)""" sites = [s.lower() for s in sites] if not sites: await self.config.guild(ctx.guild).enabled_sites.set([]) await ctx.send("All sites enabled") else: # Verify sites are valid with yt_dlp.YoutubeDL() as ydl: valid_sites = set(ie.IE_NAME.lower() for ie in ydl._ies) invalid_sites = [s for s in sites if s not in valid_sites] if invalid_sites: await ctx.send(f"Invalid sites: {', '.join(invalid_sites)}\nValid sites: {', '.join(valid_sites)}") return await self.config.guild(ctx.guild).enabled_sites.set(sites) await ctx.send(f"Enabled sites: {', '.join(sites)}") await self.log_message(ctx.guild, f"Enabled sites updated: {', '.join(sites) if sites else 'All sites'}") await self.initialize_guild_components(ctx.guild.id) @videoarchiver.command(name="listsites") async def list_sites(self, ctx: commands.Context): """List all available sites and currently enabled sites""" settings = await self.config.guild(ctx.guild).all() enabled_sites = settings["enabled_sites"] embed = discord.Embed( title="Video Sites Configuration", color=discord.Color.blue() ) with yt_dlp.YoutubeDL() as ydl: all_sites = sorted(ie.IE_NAME for ie in ydl._ies if ie.IE_NAME is not None) # Split sites into chunks for Discord's field value limit chunk_size = 20 site_chunks = [all_sites[i:i + chunk_size] for i in range(0, len(all_sites), chunk_size)] for i, chunk in enumerate(site_chunks, 1): embed.add_field( name=f"Available Sites ({i}/{len(site_chunks)})", value=", ".join(chunk), inline=False ) embed.add_field( name="Currently Enabled", value=", ".join(enabled_sites) if enabled_sites else "All sites", inline=False ) await ctx.send(embed=embed) async def process_video_url(self, url: str, message: discord.Message) -> bool: """Process a video URL: download, reupload, and cleanup""" guild_id = message.guild.id # Initialize components if needed if guild_id not in self.components: await self.initialize_guild_components(guild_id) try: await message.add_reaction('⏳') await self.log_message(message.guild, f"Processing video URL: {url}") settings = await self.config.guild(message.guild).all() # Check user roles if not self._check_user_roles(message.author, settings['allowed_roles']): await message.add_reaction('🚫') return False # Download video success, file_path, error = await self.components[guild_id]['downloader'].download_video(url) if not success: await message.add_reaction('❌') await self.log_message(message.guild, f"Failed to download video: {error}", "error") return False # Get channels archive_channel = message.guild.get_channel(settings['archive_channel']) notification_channel = message.guild.get_channel( settings['notification_channel'] if settings['notification_channel'] else settings['archive_channel'] ) if not archive_channel or not notification_channel: await self.log_message(message.guild, "Required channels not found!", "error") return False try: # Upload to archive channel file = discord.File(file_path) archive_message = await archive_channel.send(file=file) # Send notification with information notification_message = await notification_channel.send( self.components[guild_id]['message_manager'].format_archive_message( author=message.author.mention, url=archive_message.attachments[0].url if archive_message.attachments else "No URL available", original_message=message.jump_url ) ) # Schedule notification message deletion if needed await self.components[guild_id]['message_manager'].schedule_message_deletion( notification_message.id, notification_message.delete ) await message.add_reaction('✅') await self.log_message(message.guild, f"Successfully archived video from {message.author}") except discord.HTTPException as e: await self.log_message(message.guild, f"Failed to upload video: {str(e)}", "error") await message.add_reaction('❌') return False finally: # Always attempt to delete the file if configured if settings['delete_after_repost']: if secure_delete_file(file_path): await self.log_message(message.guild, f"Successfully deleted file: {file_path}") else: await self.log_message(message.guild, f"Failed to delete file: {file_path}", "error") # Emergency cleanup cleanup_downloads(str(self.download_path)) return True except Exception as e: await self.log_message(message.guild, f"Error processing video: {str(e)}", "error") await message.add_reaction('❌') return False @commands.Cog.listener() async def on_message(self, message: discord.Message): if message.author.bot or not message.guild: return settings = await self.config.guild(message.guild).all() # Check if message is in a monitored channel if message.channel.id not in settings['monitored_channels']: return # Initialize components if needed if message.guild.id not in self.components: await self.initialize_guild_components(message.guild.id) # Find all video URLs in message urls = [] with yt_dlp.YoutubeDL() as ydl: for ie in ydl._ies: if ie._VALID_URL: urls.extend(re.findall(ie._VALID_URL, message.content)) if urls: # Process multiple URLs concurrently but limited tasks = [] semaphore = asyncio.Semaphore(settings['concurrent_downloads']) async def process_with_semaphore(url): async with semaphore: return await self.process_video_url(url, message) for url in urls: tasks.append(asyncio.create_task(process_with_semaphore(url))) # Wait for all downloads to complete await asyncio.gather(*tasks)