ザカリアス・ウィリアム・ポージー 110a45d39a Edit update.py
2025-05-24 20:29:28 +09:00

46 lines
2.1 KiB
Python

import os
import shutil
import subprocess
import sys
import discord
from discord.ext import commands
from discord import app_commands
class GitUpdateCog(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
@app_commands.command(name="update", description="Updates the bot code from GitLab and restarts the bot. (Admin Only)")
async def update(self, interaction: discord.Interaction):
if not interaction.user.guild_permissions.administrator:
await interaction.response.send_message("You do not have permission to run this command.", ephemeral=True)
return
await interaction.response.send_message("Initiating update. The bot will restart shortly...")
target_dir = "~/wdiscordbot-internal-server-aws"
repo_url = "https://gitlab.com/pancakes1234/wdiscordbot-internal-server-aws.git"
restart_script = "home/ubuntu/wdiscordbot-internal-server-aws/bot.py"
try:
if os.path.exists(target_dir):
shutil.rmtree(target_dir)
await interaction.edit_original_response(content=f"Removed directory: {target_dir}")
else:
await interaction.edit_original_response(content=f"Directory {target_dir} does not exist; proceeding with clone...")
subprocess.run(["git", "clone", repo_url, target_dir], check=True)
await interaction.edit_original_response(content="Repository cloned successfully.")
except Exception as e:
error_msg = f"Update failed: {e}"
print(error_msg)
await interaction.edit_original_response(content=error_msg)
return
try:
await interaction.edit_original_response(content="Bot has updated to the latest commit and is restarting...")
os.execv(sys.executable, [sys.executable, restart_script])
# If os.execv returns, it means it failed
except Exception as e:
await interaction.edit_original_response(content=f"Failed to restart bot: {e}")
async def setup(bot: commands.Bot):
await bot.add_cog(GitUpdateCog(bot))