Formatted everything with black
This commit is contained in:
@@ -1,35 +1,90 @@
|
||||
from discord import ApplicationContext, Option, SlashCommandGroup, CategoryChannel
|
||||
from discord.ext import commands
|
||||
from functions import getMsg, guildConfGet, guildConfReset, guildConfSet, loadJson, makeEmbed, strToColor
|
||||
from functions import (
|
||||
getMsg,
|
||||
guildConfGet,
|
||||
guildConfReset,
|
||||
guildConfSet,
|
||||
loadJson,
|
||||
makeEmbed,
|
||||
strToColor,
|
||||
)
|
||||
|
||||
#=========================================================================================================================
|
||||
|
||||
# =========================================================================================================================
|
||||
class CogCategory(commands.Cog):
|
||||
|
||||
def __init__(self, client):
|
||||
self.client = client
|
||||
|
||||
category = SlashCommandGroup("category", "Commands related to parent channels category")
|
||||
category = SlashCommandGroup(
|
||||
"category", "Commands related to parent channels category"
|
||||
)
|
||||
|
||||
@category.command(name="set", description="Select the voice channel that will be parent to private ones")
|
||||
async def category_set(self, ctx: ApplicationContext, category: Option(CategoryChannel, "Parent Channel Category")): # type: ignore
|
||||
@category.command(
|
||||
name="set",
|
||||
description="Select the voice channel that will be parent to private ones",
|
||||
)
|
||||
async def category_set(self, ctx: ApplicationContext, category: Option(CategoryChannel, "Parent Channel Category")): # type: ignore
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
guildConfSet(ctx.guild, "category", category.id)
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("set_category_title", ctx.guild), description=getMsg("set_category_description", ctx.guild).format(category.name), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("set_category_title", ctx.guild),
|
||||
description=getMsg("set_category_description", ctx.guild).format(
|
||||
category.name
|
||||
),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
if guildConfGet(ctx.guild, "channel") is None:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("hint_none_channel_title", ctx.guild), description=getMsg("hint_none_channel_description", ctx.guild), color=strToColor(config["color_warn"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("hint_none_channel_title", ctx.guild),
|
||||
description=getMsg("hint_none_channel_description", ctx.guild),
|
||||
color=strToColor(config["color_warn"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
@category.command(name="reset", description="Reset the currently selected parent channel category")
|
||||
async def category_reset(self, ctx: ApplicationContext): # type: ignore
|
||||
@category.command(
|
||||
name="reset", description="Reset the currently selected parent channel category"
|
||||
)
|
||||
async def category_reset(self, ctx: ApplicationContext): # type: ignore
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
if guildConfGet(ctx.guild, "category") is not None:
|
||||
guildConfReset(ctx.guild, "category")
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("reset_category_title", ctx.guild), description=getMsg("reset_category_description", ctx.guild), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("reset_category_title", ctx.guild),
|
||||
description=getMsg("reset_category_description", ctx.guild),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("hint_none_category_title", ctx.guild), description=getMsg("hint_none_category_description", ctx.guild), color=strToColor(config["color_warn"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("hint_none_category_title", ctx.guild),
|
||||
description=getMsg("hint_none_category_description", ctx.guild),
|
||||
color=strToColor(config["color_warn"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
#=========================================================================================================================
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
# =========================================================================================================================
|
||||
|
@@ -1,21 +1,45 @@
|
||||
from discord import ApplicationContext, SlashCommandGroup, VoiceChannel, Member, VoiceState, Cog, option, utils
|
||||
from discord import (
|
||||
ApplicationContext,
|
||||
SlashCommandGroup,
|
||||
VoiceChannel,
|
||||
Member,
|
||||
VoiceState,
|
||||
Cog,
|
||||
option,
|
||||
utils,
|
||||
)
|
||||
from discord.ext import commands
|
||||
from functions import appendLog, changeNomicPerms, createUserVoice, getMsg, guildConfGet, guildConfReset, guildConfSet, isUserVoice, isVoiceOfUser, loadJson, makeEmbed, removeUserVoice, strToColor
|
||||
from functions import (
|
||||
appendLog,
|
||||
changeNomicPerms,
|
||||
createUserVoice,
|
||||
getMsg,
|
||||
guildConfGet,
|
||||
guildConfReset,
|
||||
guildConfSet,
|
||||
isUserVoice,
|
||||
isVoiceOfUser,
|
||||
loadJson,
|
||||
makeEmbed,
|
||||
removeUserVoice,
|
||||
strToColor,
|
||||
)
|
||||
|
||||
#=========================================================================================================================
|
||||
|
||||
# =========================================================================================================================
|
||||
class CogChannel(commands.Cog):
|
||||
|
||||
def __init__(self, client):
|
||||
self.client = client
|
||||
|
||||
@Cog.listener()
|
||||
async def on_voice_state_update(self, member: Member, before: VoiceState, after: VoiceState):
|
||||
|
||||
async def on_voice_state_update(
|
||||
self, member: Member, before: VoiceState, after: VoiceState
|
||||
):
|
||||
config = loadJson("config.json")
|
||||
|
||||
vc_from = before.channel
|
||||
vc_to = after.channel
|
||||
|
||||
|
||||
# If user left vc
|
||||
if vc_to is None:
|
||||
if isUserVoice(vc_from):
|
||||
@@ -25,7 +49,7 @@ class CogChannel(commands.Cog):
|
||||
else:
|
||||
if loadJson("config.json")["enable_nomic"]:
|
||||
await changeNomicPerms("deny", vc_from, member)
|
||||
|
||||
|
||||
# If user joined vc
|
||||
else:
|
||||
if isUserVoice(vc_from):
|
||||
@@ -39,37 +63,92 @@ class CogChannel(commands.Cog):
|
||||
await changeNomicPerms("allow", vc_to, member)
|
||||
if vc_to.id == guildConfGet(vc_to.guild, "channel"):
|
||||
if guildConfGet(vc_to.guild, "category") is not None:
|
||||
voice_chan = await createUserVoice(vc_to, utils.get(vc_to.guild.categories, id=guildConfGet(vc_to.guild, "category")), member)
|
||||
voice_chan = await createUserVoice(
|
||||
vc_to,
|
||||
utils.get(
|
||||
vc_to.guild.categories,
|
||||
id=guildConfGet(vc_to.guild, "category"),
|
||||
),
|
||||
member,
|
||||
)
|
||||
try:
|
||||
await member.move_to(voice_chan)
|
||||
except:
|
||||
await removeUserVoice(voice_chan)
|
||||
else:
|
||||
appendLog(f"Category for guild {vc_to.guild} ({str(vc_to.guild.id)}) is not set", guild=vc_to.guild)
|
||||
|
||||
appendLog(
|
||||
f"Category for guild {vc_to.guild} ({str(vc_to.guild.id)}) is not set",
|
||||
guild=vc_to.guild,
|
||||
)
|
||||
|
||||
channel = SlashCommandGroup("channel", "Commands related to parent voice channel")
|
||||
|
||||
@channel.command(name="set", description="Select the voice channel that will be parent to private ones")
|
||||
@channel.command(
|
||||
name="set",
|
||||
description="Select the voice channel that will be parent to private ones",
|
||||
)
|
||||
@option("channel", description="Parent Voice Channel")
|
||||
async def channel_set(self, ctx: ApplicationContext, channel: VoiceChannel):
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
guildConfSet(ctx.guild, "channel", channel.id)
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("set_channel_title", ctx.guild), description=getMsg("set_channel_description", ctx.guild).format(channel.name), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("set_channel_title", ctx.guild),
|
||||
description=getMsg("set_channel_description", ctx.guild).format(
|
||||
channel.name
|
||||
),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
if guildConfGet(ctx.guild, "category") is None:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("hint_none_category_title", ctx.guild), description=getMsg("hint_none_category_description", ctx.guild), color=strToColor(config["color_warn"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("hint_none_category_title", ctx.guild),
|
||||
description=getMsg("hint_none_category_description", ctx.guild),
|
||||
color=strToColor(config["color_warn"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
@channel.command(name="reset", description="Reset the currently selected parent voice channel")
|
||||
async def channel_reset(self, ctx: ApplicationContext):
|
||||
@channel.command(
|
||||
name="reset", description="Reset the currently selected parent voice channel"
|
||||
)
|
||||
async def channel_reset(self, ctx: ApplicationContext):
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
if guildConfGet(ctx.guild, "channel") is not None:
|
||||
guildConfReset(ctx.guild, "channel")
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("reset_channel_title", ctx.guild), description=getMsg("reset_channel_description", ctx.guild), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("reset_channel_title", ctx.guild),
|
||||
description=getMsg("reset_channel_description", ctx.guild),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("hint_none_channel_title", ctx.guild), description=getMsg("hint_none_channel_description", ctx.guild), color=strToColor(config["color_warn"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("hint_none_channel_title", ctx.guild),
|
||||
description=getMsg("hint_none_channel_description", ctx.guild),
|
||||
color=strToColor(config["color_warn"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
#=========================================================================================================================
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
# =========================================================================================================================
|
||||
|
@@ -1,11 +1,20 @@
|
||||
from os import listdir
|
||||
from discord import ApplicationContext, Option, SlashCommandGroup
|
||||
from discord.ext import commands
|
||||
from functions import appendLog, getMsg, guildConfGet, guildConfReset, guildConfSet, loadJson, makeEmbed, strToColor
|
||||
from functions import (
|
||||
appendLog,
|
||||
getMsg,
|
||||
guildConfGet,
|
||||
guildConfReset,
|
||||
guildConfSet,
|
||||
loadJson,
|
||||
makeEmbed,
|
||||
strToColor,
|
||||
)
|
||||
|
||||
#=========================================================================================================================
|
||||
|
||||
# =========================================================================================================================
|
||||
class CogLocale(commands.Cog):
|
||||
|
||||
def __init__(self, client):
|
||||
self.client = client
|
||||
|
||||
@@ -17,32 +26,78 @@ class CogLocale(commands.Cog):
|
||||
valid_locales.append(".".join(entry.split(".")[:-1]))
|
||||
|
||||
@locale.command(name="set", description="Set bot's messages language")
|
||||
async def locale_set(self, ctx: ApplicationContext, language: Option(str, "One of the languages in list", choices=valid_locales)): # type: ignore
|
||||
async def locale_set(self, ctx: ApplicationContext, language: Option(str, "One of the languages in list", choices=valid_locales)): # type: ignore
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
if language+".json" in listdir(f"locale/"):
|
||||
if language + ".json" in listdir(f"locale/"):
|
||||
guildConfSet(ctx.guild, "locale", language)
|
||||
appendLog(f"Server's locale is now set to {language}", ctx.guild)
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("set_locale_title", ctx.guild), description=getMsg("set_locale_description", ctx.guild).format(getMsg("locale_name", ctx.guild)), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("set_locale_title", ctx.guild),
|
||||
description=getMsg("set_locale_description", ctx.guild).format(
|
||||
getMsg("locale_name", ctx.guild)
|
||||
),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
valid_locales = []
|
||||
files_locales = listdir(f"locale/")
|
||||
for entry in files_locales:
|
||||
valid_locales.append(entry.split(".")[:-1])
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("error_locale_title", ctx.guild), description=getMsg("error_locale_description", ctx.guild).format(", ".join(valid_locales)), color=strToColor(config["color_error"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("error_locale_title", ctx.guild),
|
||||
description=getMsg(
|
||||
"error_locale_description", ctx.guild
|
||||
).format(", ".join(valid_locales)),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
@locale.command(name="reset", description="Reset the bot's language in this guild")
|
||||
async def locale_reset(self, ctx: ApplicationContext): # type: ignore
|
||||
async def locale_reset(self, ctx: ApplicationContext): # type: ignore
|
||||
config = loadJson("config.json")
|
||||
if ctx.guild is not None:
|
||||
if guildConfGet(ctx.guild, "locale") is not None:
|
||||
guildConfReset(ctx.guild, "locale")
|
||||
appendLog(f"Server's locale has been reset", ctx.guild)
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("reset_locale_title", ctx.guild), description=getMsg("reset_locale_description", ctx.guild).format(getMsg("locale_name", ctx.guild)), color=strToColor(config["color_ok"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("reset_locale_title", ctx.guild),
|
||||
description=getMsg(
|
||||
"reset_locale_description", ctx.guild
|
||||
).format(getMsg("locale_name", ctx.guild)),
|
||||
color=strToColor(config["color_ok"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("hint_none_locale_title", ctx.guild), description=getMsg("hint_none_locale_description", ctx.guild).format(getMsg("locale_name", ctx.guild)), color=strToColor(config["color_warn"])))
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("hint_none_locale_title", ctx.guild),
|
||||
description=getMsg(
|
||||
"hint_none_locale_description", ctx.guild
|
||||
).format(getMsg("locale_name", ctx.guild)),
|
||||
color=strToColor(config["color_warn"]),
|
||||
)
|
||||
)
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("dm_title", ctx.guild), description=getMsg("dm_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
#=========================================================================================================================
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("dm_title", ctx.guild),
|
||||
description=getMsg("dm_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
# =========================================================================================================================
|
||||
|
@@ -4,37 +4,48 @@ from discord import ApplicationContext, slash_command, Cog, Guild
|
||||
from discord.ext import commands
|
||||
from functions import appendLog, getMsg, loadJson, makeEmbed, saveJson, strToColor
|
||||
|
||||
#=========================================================================================================================
|
||||
class CogUtility(commands.Cog):
|
||||
|
||||
# =========================================================================================================================
|
||||
class CogUtility(commands.Cog):
|
||||
def __init__(self, client):
|
||||
self.client = client
|
||||
|
||||
@Cog.listener()
|
||||
async def on_guild_join(self, guild: Guild):
|
||||
|
||||
makedirs(f"guilds/{str(guild.id)}", exist_ok=True)
|
||||
makedirs(f"guilds/{str(guild.id)}/channels", exist_ok=True)
|
||||
saveJson({}, f"guilds/{str(guild.id)}/config.json")
|
||||
|
||||
|
||||
appendLog(f"Joined guild '{guild}' with id {str(guild.id)}")
|
||||
|
||||
@Cog.listener()
|
||||
async def on_guild_remove(self, guild: Guild):
|
||||
|
||||
try:
|
||||
rmtree(f"guilds/{str(guild.id)}")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
appendLog(f"Left guild '{guild}' with id {str(guild.id)}")
|
||||
|
||||
@slash_command(name="shutdown", description="Restart the bot")
|
||||
async def shutdown(self, ctx: ApplicationContext):
|
||||
config = loadJson("config.json")
|
||||
if ctx.author.id == config["owner"]:
|
||||
await ctx.respond(embed=makeEmbed(description=getMsg("shutdown", ctx.guild).format(ctx.author), color=strToColor(config["color_default"])))
|
||||
if ctx.author.id == config["owner"]:
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
description=getMsg("shutdown", ctx.guild).format(ctx.author),
|
||||
color=strToColor(config["color_default"]),
|
||||
)
|
||||
)
|
||||
system(f"kill -9 {str(getpid())}")
|
||||
else:
|
||||
await ctx.respond(embed=makeEmbed(title=getMsg("admin_title", ctx.guild), description=getMsg("admin_description", ctx.guild), color=strToColor(config["color_error"])))
|
||||
#=========================================================================================================================
|
||||
await ctx.respond(
|
||||
embed=makeEmbed(
|
||||
title=getMsg("admin_title", ctx.guild),
|
||||
description=getMsg("admin_description", ctx.guild),
|
||||
color=strToColor(config["color_error"]),
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
# =========================================================================================================================
|
||||
|
Reference in New Issue
Block a user