2024-01-31 12:12:38 -05:00
|
|
|
# _____ _
|
|
|
|
# / ____| (_)
|
|
|
|
# | (___ ___ __ _ _____ ___ _ __ ___ _ __ ___ ___ _ __
|
|
|
|
# \___ \ / _ \/ _` / __\ \ /\ / / | '_ ` _ \| '_ ` _ \ / _ \ '__|
|
|
|
|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
|
|
|
|
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
|
|
|
|
|
|
|
|
import json
|
2024-01-31 13:07:10 -05:00
|
|
|
import re
|
2024-01-31 12:12:38 -05:00
|
|
|
|
|
|
|
from redbot.core import commands
|
|
|
|
from redbot.core.bot import Red
|
2024-01-31 12:35:01 -05:00
|
|
|
from redbot.core.utils.chat_formatting import error, text_to_file
|
2024-01-31 12:12:38 -05:00
|
|
|
|
|
|
|
class Backup(commands.Cog):
|
|
|
|
"""A utility to make reinstalling repositories and cogs after migrating the bot far easier."""
|
|
|
|
|
|
|
|
__author__ = "SeaswimmerTheFsh"
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
|
|
|
|
def __init__(self, bot: Red):
|
|
|
|
super().__init__()
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
@commands.group(autohelp=True)
|
|
|
|
@commands.is_owner()
|
|
|
|
async def backup(self, ctx: commands.Context):
|
|
|
|
"""Backup your installed cogs."""
|
|
|
|
|
|
|
|
@backup.command(name='export')
|
|
|
|
@commands.is_owner()
|
|
|
|
async def backup_export(self, ctx: commands.Context):
|
|
|
|
"""Export your installed repositories and cogs to a file."""
|
|
|
|
downloader = ctx.bot.get_cog("Downloader")
|
|
|
|
if downloader is None:
|
2024-01-31 12:35:01 -05:00
|
|
|
await ctx.send(error(f"You do not have the `Downloader` cog loaded. Please run `{ctx.prefix}load downloader` and try again."))
|
2024-01-31 12:12:38 -05:00
|
|
|
return
|
2024-01-31 12:18:55 -05:00
|
|
|
|
2024-01-31 12:35:01 -05:00
|
|
|
all_repos = list(downloader._repo_manager.repos) # pylint: disable=protected-access
|
2024-01-31 12:18:55 -05:00
|
|
|
|
|
|
|
export_data = []
|
|
|
|
|
|
|
|
for repo in all_repos:
|
|
|
|
repo_dict = {
|
|
|
|
"name": repo.name,
|
|
|
|
"url": repo.url,
|
2024-01-31 13:33:39 -05:00
|
|
|
"branch": repo.branch,
|
2024-01-31 12:18:55 -05:00
|
|
|
"cogs": []
|
|
|
|
}
|
|
|
|
|
|
|
|
cogs = await downloader.installed_cogs()
|
|
|
|
|
|
|
|
for cog in cogs:
|
|
|
|
if cog.repo_name == repo.name:
|
2024-01-31 13:55:34 -05:00
|
|
|
cog_dict = {
|
|
|
|
"name": cog.name,
|
|
|
|
"pinned": cog.pinned,
|
|
|
|
"commit": cog.commit
|
|
|
|
}
|
|
|
|
repo_dict["cogs"].append(cog_dict)
|
2024-01-31 12:18:55 -05:00
|
|
|
|
|
|
|
export_data.append(repo_dict)
|
|
|
|
|
|
|
|
await ctx.send(file=text_to_file(json.dumps(export_data, indent=4), 'backup.json'))
|
2024-01-31 12:35:01 -05:00
|
|
|
|
|
|
|
@backup.command(name='import')
|
|
|
|
@commands.is_owner()
|
2024-01-31 13:17:54 -05:00
|
|
|
async def backup_import(self, ctx: commands.Context):
|
|
|
|
"""Import your installed repositories and cogs from an export file."""
|
2024-01-31 12:55:35 -05:00
|
|
|
try:
|
2024-01-31 13:22:56 -05:00
|
|
|
export = json.loads(await ctx.message.attachments[0].read())
|
2024-01-31 13:21:24 -05:00
|
|
|
except (json.JSONDecodeError, IndexError):
|
2024-01-31 13:19:26 -05:00
|
|
|
await ctx.send(error("Please provide a valid JSON export file."))
|
2024-01-31 12:55:35 -05:00
|
|
|
return
|
2024-01-31 12:35:01 -05:00
|
|
|
|
|
|
|
downloader = ctx.bot.get_cog("Downloader")
|
|
|
|
if downloader is None:
|
|
|
|
await ctx.send(error(f"You do not have the `Downloader` cog loaded. Please run `{ctx.prefix}load downloader` and try again."))
|
|
|
|
return
|