This repository has been archived by the owner on Sep 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
90 lines (73 loc) · 2.63 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
"""
Emperor, discord bot for school of computing
Copyright (C) 2022-2023 School of Computing Dev Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import discord
import typing
from discord.ext import commands
from dotenv import load_dotenv
from src.ServerUtils import Utils
from src.config import Settings
from src.Emperor import Emperor
load_dotenv()
config = Settings()
Utils.print_branding() # Prints Emperor Logo Branding
# Sending the intents
intents = discord.Intents.default()
intents.message_content = True
intents.members = True
intents.presences = True
intents.reactions = True
Emperor = Emperor(intents, config)
# Command used to sync command changes
@Emperor.command()
@commands.guild_only()
@commands.is_owner()
async def sync(
ctx: commands.Context,
guilds: commands.Greedy[discord.Object],
spec: typing.Optional[typing.Literal["~", "*", "^"]] = None,
) -> None:
"""
Syncs all the commands to the guild/globaly
Args:
ctx (commands.Context): The context of the command
guilds (commands.Greedy[discord.Object]): The Guild where to sync
spec (typing.Optional[typing.Literal[, optional): Where to sync (global/guild). Defaults to None.
"""
if not guilds:
if spec == "~":
synced = await ctx.bot.tree.sync(guild=ctx.guild)
elif spec == "*":
ctx.bot.tree.copy_global_to(guild=ctx.guild)
synced = await ctx.bot.tree.sync(guild=ctx.guild)
elif spec == "^":
ctx.bot.tree.clear_commands(guild=ctx.guild)
await ctx.bot.tree.sync(guild=ctx.guild)
synced = []
else:
synced = await ctx.bot.tree.sync()
await ctx.send(
f"Synced {len(synced)} commands {'globally' if spec is None else 'to the current guild.'}"
)
return
ret = 0
for guild in guilds:
try:
await ctx.bot.tree.sync(guild=guild)
except discord.HTTPException:
pass
else:
ret += 1
await ctx.send(f"Synced the tree to {ret}/{len(guilds)}.")
Emperor.run(config.TOKEN)