General improvements and refactoring
This commit is contained in:
parent
19d2ef281c
commit
982d0bce43
123
cogs/admin.py
123
cogs/admin.py
@ -1,4 +1,5 @@
|
|||||||
import logging
|
import logging
|
||||||
|
import sys
|
||||||
|
|
||||||
from discord import ApplicationContext, Embed, User, option, slash_command
|
from discord import ApplicationContext, Embed, User, option, slash_command
|
||||||
from discord import utils as ds_utils
|
from discord import utils as ds_utils
|
||||||
@ -14,9 +15,12 @@ logger = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
class Admin(commands.Cog):
|
class Admin(commands.Cog):
|
||||||
|
"""Cog with utility commands for admins."""
|
||||||
|
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: PycordBot):
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
|
# Disabled because warning functionality is temporarily not needed
|
||||||
# @slash_command(
|
# @slash_command(
|
||||||
# name="warning",
|
# name="warning",
|
||||||
# description="Попередити юзера про порушення правил",
|
# description="Попередити юзера про порушення правил",
|
||||||
@ -119,42 +123,49 @@ class Admin(commands.Cog):
|
|||||||
amount,
|
amount,
|
||||||
ctx.channel.id,
|
ctx.channel.id,
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(description="Видаляю..."), ephemeral=True, delete_after=2.0
|
embed=Embed(description="Видаляю..."), ephemeral=True, delete_after=2.0
|
||||||
)
|
)
|
||||||
if user == None:
|
|
||||||
|
if user is None:
|
||||||
await ctx.channel.purge(limit=amount)
|
await ctx.channel.purge(limit=amount)
|
||||||
else:
|
else:
|
||||||
await ctx.channel.purge(
|
await ctx.channel.purge(
|
||||||
limit=amount, check=lambda msg: msg.author == user
|
limit=amount, check=lambda msg: msg.author == user
|
||||||
)
|
)
|
||||||
else:
|
|
||||||
logging.warning(
|
return
|
||||||
"User %s tried to use /clear but permission denied",
|
|
||||||
guild_name(ctx.user),
|
logging.warning(
|
||||||
)
|
"User %s tried to use /clear but permission denied",
|
||||||
await ctx.respond(
|
guild_name(ctx.user),
|
||||||
embed=Embed(
|
)
|
||||||
title="Відмовлено в доступі",
|
|
||||||
description="Здається, це команда лише для модераторів",
|
await ctx.respond(
|
||||||
color=Color.fail,
|
embed=Embed(
|
||||||
)
|
title="Відмовлено в доступі",
|
||||||
)
|
description="Здається, це команда лише для модераторів",
|
||||||
mod_role = ds_utils.get(
|
color=Color.fail,
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
|
||||||
)
|
|
||||||
admin_chan = ds_utils.get(
|
|
||||||
ctx.user.guild.channels,
|
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
|
||||||
)
|
|
||||||
await admin_chan.send(
|
|
||||||
content=f"{mod_role.mention}",
|
|
||||||
embed=Embed(
|
|
||||||
title="Неавторизований запит",
|
|
||||||
description=f"Користувач {ctx.user.mention} запитав у каналі {ctx.channel.mention} команду, до якої не повинен мати доступу/бачити.",
|
|
||||||
color=Color.fail,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
mod_role = ds_utils.get(
|
||||||
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
|
)
|
||||||
|
admin_chan = ds_utils.get(
|
||||||
|
ctx.user.guild.channels,
|
||||||
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
|
)
|
||||||
|
|
||||||
|
await admin_chan.send(
|
||||||
|
content=f"{mod_role.mention}",
|
||||||
|
embed=Embed(
|
||||||
|
title="Неавторизований запит",
|
||||||
|
description=f"Користувач {ctx.user.mention} запитав у каналі {ctx.channel.mention} команду, до якої не повинен мати доступу/бачити.",
|
||||||
|
color=Color.fail,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
@slash_command(
|
@slash_command(
|
||||||
name="reboot",
|
name="reboot",
|
||||||
@ -163,6 +174,7 @@ class Admin(commands.Cog):
|
|||||||
)
|
)
|
||||||
async def reboot_cmd(self, ctx: ApplicationContext):
|
async def reboot_cmd(self, ctx: ApplicationContext):
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
|
|
||||||
if ctx.user.id in self.client.owner_ids:
|
if ctx.user.id in self.client.owner_ids:
|
||||||
logging.info("Calling shutdown initiated by %s", guild_name(ctx.user))
|
logging.info("Calling shutdown initiated by %s", guild_name(ctx.user))
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
@ -173,34 +185,37 @@ class Admin(commands.Cog):
|
|||||||
)
|
)
|
||||||
scheduler.shutdown()
|
scheduler.shutdown()
|
||||||
await self.client.close()
|
await self.client.close()
|
||||||
exit()
|
sys.exit()
|
||||||
else:
|
|
||||||
logging.warning(
|
logging.warning(
|
||||||
"User %s tried to use /reboot but permission denied",
|
"User %s tried to use /reboot but permission denied",
|
||||||
guild_name(ctx.user),
|
guild_name(ctx.user),
|
||||||
)
|
)
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
await ctx.respond(
|
||||||
title="Відмовлено в доступі",
|
embed=Embed(
|
||||||
description="Здається, це команда лише для модераторів",
|
title="Відмовлено в доступі",
|
||||||
color=Color.fail,
|
description="Здається, це команда лише для модераторів",
|
||||||
)
|
color=Color.fail,
|
||||||
)
|
|
||||||
mod_role = ds_utils.get(
|
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
|
||||||
)
|
|
||||||
admin_chan = ds_utils.get(
|
|
||||||
ctx.user.guild.channels,
|
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
|
||||||
)
|
|
||||||
await admin_chan.send(
|
|
||||||
content=f"{mod_role.mention}",
|
|
||||||
embed=Embed(
|
|
||||||
title="Неавторизований запит",
|
|
||||||
description=f"Користувач {ctx.user.mention} запитав у каналі {ctx.channel.mention} команду, до якої не повинен мати доступу/бачити.",
|
|
||||||
color=Color.fail,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
mod_role = ds_utils.get(
|
||||||
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
|
)
|
||||||
|
admin_chan = ds_utils.get(
|
||||||
|
ctx.user.guild.channels,
|
||||||
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
|
)
|
||||||
|
|
||||||
|
await admin_chan.send(
|
||||||
|
content=f"{mod_role.mention}",
|
||||||
|
embed=Embed(
|
||||||
|
title="Неавторизований запит",
|
||||||
|
description=f"Користувач {ctx.user.mention} запитав у каналі {ctx.channel.mention} команду, до якої не повинен мати доступу/бачити.",
|
||||||
|
color=Color.fail,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot):
|
def setup(client: PycordBot):
|
||||||
|
@ -17,8 +17,8 @@ class Analytics(commands.Cog):
|
|||||||
async def on_message(self, message: Message):
|
async def on_message(self, message: Message):
|
||||||
if (
|
if (
|
||||||
(message.author != self.client.user)
|
(message.author != self.client.user)
|
||||||
and (message.author.bot == False)
|
and (message.author.bot is False)
|
||||||
and (message.author.system == False)
|
and (message.author.system is False)
|
||||||
):
|
):
|
||||||
stickers = []
|
stickers = []
|
||||||
for sticker in message.stickers:
|
for sticker in message.stickers:
|
||||||
|
@ -37,46 +37,8 @@ class CustomChannels(commands.Cog):
|
|||||||
):
|
):
|
||||||
holo_user_ctx = HoloUser(ctx.user)
|
holo_user_ctx = HoloUser(ctx.user)
|
||||||
|
|
||||||
if holo_user_ctx.customchannel == None:
|
# Return if the user already has a custom channel
|
||||||
await ctx.defer()
|
if holo_user_ctx.customchannel is not None:
|
||||||
created_channel = await ctx.user.guild.create_text_channel(
|
|
||||||
name=name,
|
|
||||||
reason=f"Користувач {guild_name(ctx.user)} отримав власний приватний канал",
|
|
||||||
category=ds_utils.get(
|
|
||||||
ctx.author.guild.categories,
|
|
||||||
id=await config_get("customchannels", "categories"),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
await created_channel.set_permissions(
|
|
||||||
ctx.user.guild.default_role,
|
|
||||||
send_messages=False,
|
|
||||||
add_reactions=reactions,
|
|
||||||
create_public_threads=threads,
|
|
||||||
create_private_threads=threads,
|
|
||||||
)
|
|
||||||
await created_channel.set_permissions(
|
|
||||||
ctx.user,
|
|
||||||
attach_files=True,
|
|
||||||
manage_messages=True,
|
|
||||||
send_messages=True,
|
|
||||||
embed_links=True,
|
|
||||||
manage_channels=True,
|
|
||||||
)
|
|
||||||
holo_user_ctx.set("customchannel", created_channel.id)
|
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
|
||||||
title="Створено канал",
|
|
||||||
description=f"Вітаємо! Ви створили канал {created_channel.mention}. Для керування ним користуйтесь меню налаштувань каналу а також командою `/customchannel edit`",
|
|
||||||
color=Color.success,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
bots = await config_get("bots")
|
|
||||||
for bot in bots:
|
|
||||||
await created_channel.set_permissions(
|
|
||||||
ds_utils.get(ctx.user.guild.roles, id=bots[bot]["role"]),
|
|
||||||
view_channel=False,
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@ -85,6 +47,52 @@ class CustomChannels(commands.Cog):
|
|||||||
color=Color.fail,
|
color=Color.fail,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
return
|
||||||
|
|
||||||
|
await ctx.defer()
|
||||||
|
|
||||||
|
created_channel = await ctx.user.guild.create_text_channel(
|
||||||
|
name=name,
|
||||||
|
reason=f"Користувач {guild_name(ctx.user)} отримав власний приватний канал",
|
||||||
|
category=ds_utils.get(
|
||||||
|
ctx.author.guild.categories,
|
||||||
|
id=await config_get("customchannels", "categories"),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
await created_channel.set_permissions(
|
||||||
|
ctx.user.guild.default_role,
|
||||||
|
send_messages=False,
|
||||||
|
add_reactions=reactions,
|
||||||
|
create_public_threads=threads,
|
||||||
|
create_private_threads=threads,
|
||||||
|
)
|
||||||
|
await created_channel.set_permissions(
|
||||||
|
ctx.user,
|
||||||
|
attach_files=True,
|
||||||
|
manage_messages=True,
|
||||||
|
send_messages=True,
|
||||||
|
embed_links=True,
|
||||||
|
manage_channels=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
holo_user_ctx.set("customchannel", created_channel.id)
|
||||||
|
|
||||||
|
await ctx.respond(
|
||||||
|
embed=Embed(
|
||||||
|
title="Створено канал",
|
||||||
|
description=f"Вітаємо! Ви створили канал {created_channel.mention}. Для керування ним користуйтесь меню налаштувань каналу а також командою `/customchannel edit`",
|
||||||
|
color=Color.success,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
bots = await config_get("bots")
|
||||||
|
|
||||||
|
for bot in bots:
|
||||||
|
await created_channel.set_permissions(
|
||||||
|
ds_utils.get(ctx.user.guild.roles, id=bots[bot]["role"]),
|
||||||
|
view_channel=False,
|
||||||
|
)
|
||||||
|
|
||||||
@customchannel.command(
|
@customchannel.command(
|
||||||
name="edit",
|
name="edit",
|
||||||
@ -102,6 +110,8 @@ class CustomChannels(commands.Cog):
|
|||||||
custom_channel = ds_utils.get(
|
custom_channel = ds_utils.get(
|
||||||
ctx.guild.channels, id=holo_user_ctx.customchannel
|
ctx.guild.channels, id=holo_user_ctx.customchannel
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Return if the channel was not found
|
||||||
if custom_channel is None:
|
if custom_channel is None:
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@ -111,6 +121,7 @@ class CustomChannels(commands.Cog):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
await custom_channel.edit(name=name)
|
await custom_channel.edit(name=name)
|
||||||
await custom_channel.set_permissions(
|
await custom_channel.set_permissions(
|
||||||
ctx.user.guild.default_role,
|
ctx.user.guild.default_role,
|
||||||
@ -119,6 +130,7 @@ class CustomChannels(commands.Cog):
|
|||||||
create_public_threads=threads,
|
create_public_threads=threads,
|
||||||
create_private_threads=threads,
|
create_private_threads=threads,
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
title="Канал змінено",
|
title="Канал змінено",
|
||||||
@ -138,40 +150,8 @@ class CustomChannels(commands.Cog):
|
|||||||
):
|
):
|
||||||
holo_user_ctx = HoloUser(ctx.user)
|
holo_user_ctx = HoloUser(ctx.user)
|
||||||
|
|
||||||
if holo_user_ctx.customchannel is not None:
|
# Return if the user does not have a custom channel
|
||||||
await ctx.defer()
|
if holo_user_ctx.customchannel is None:
|
||||||
custom_channel = ds_utils.get(
|
|
||||||
ctx.guild.channels, id=holo_user_ctx.customchannel
|
|
||||||
)
|
|
||||||
if custom_channel is None:
|
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
|
||||||
title="Канал не знайдено",
|
|
||||||
description="Канал, вказаний як ваш, не існує. Можливо, його було вручну видалено раніше.",
|
|
||||||
color=Color.fail,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
holo_user_ctx.set("customchannel", None)
|
|
||||||
return
|
|
||||||
if not confirm:
|
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
|
||||||
title="Підтвердження не надано",
|
|
||||||
description="Для підтвердження операції додайте до команди параметр `confirm` зі значенням `True`.",
|
|
||||||
color=Color.fail,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
return
|
|
||||||
await custom_channel.delete(reason="Власник запросив видалення")
|
|
||||||
holo_user_ctx.set("customchannel", None)
|
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
|
||||||
title="Канал знищено",
|
|
||||||
description="Ви відмовились від каналу та видалили його.",
|
|
||||||
color=Color.default,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@ -180,6 +160,48 @@ class CustomChannels(commands.Cog):
|
|||||||
color=Color.fail,
|
color=Color.fail,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
return
|
||||||
|
|
||||||
|
await ctx.defer()
|
||||||
|
|
||||||
|
custom_channel = ds_utils.get(
|
||||||
|
ctx.guild.channels, id=holo_user_ctx.customchannel
|
||||||
|
)
|
||||||
|
|
||||||
|
# Return if the channel was not found
|
||||||
|
if custom_channel is None:
|
||||||
|
await ctx.respond(
|
||||||
|
embed=Embed(
|
||||||
|
title="Канал не знайдено",
|
||||||
|
description="Канал, вказаний як ваш, не існує. Можливо, його було вручну видалено раніше.",
|
||||||
|
color=Color.fail,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
holo_user_ctx.set("customchannel", None)
|
||||||
|
return
|
||||||
|
|
||||||
|
# Return if the confirmation is missing
|
||||||
|
if not confirm:
|
||||||
|
await ctx.respond(
|
||||||
|
embed=Embed(
|
||||||
|
title="Підтвердження не надано",
|
||||||
|
description="Для підтвердження операції додайте до команди параметр `confirm` зі значенням `True`.",
|
||||||
|
color=Color.fail,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
return
|
||||||
|
|
||||||
|
await custom_channel.delete(reason="Власник запросив видалення")
|
||||||
|
|
||||||
|
holo_user_ctx.set("customchannel", None)
|
||||||
|
|
||||||
|
await ctx.respond(
|
||||||
|
embed=Embed(
|
||||||
|
title="Канал знищено",
|
||||||
|
description="Ви відмовились від каналу та видалили його.",
|
||||||
|
color=Color.default,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot):
|
def setup(client: PycordBot):
|
||||||
|
133
cogs/data.py
133
cogs/data.py
@ -35,38 +35,16 @@ class Data(commands.Cog):
|
|||||||
async def data_export_cmd(self, ctx: ApplicationContext, kind: str):
|
async def data_export_cmd(self, ctx: ApplicationContext, kind: str):
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
holo_user = HoloUser(ctx.author)
|
holo_user = HoloUser(ctx.author)
|
||||||
if (ctx.user.id in self.client.owner_ids) or (
|
|
||||||
|
# Return if the user is not an owner and not in the council
|
||||||
|
if (ctx.user.id not in self.client.owner_ids) and not (
|
||||||
await holo_user.is_council(ctx.author)
|
await holo_user.is_council(ctx.author)
|
||||||
):
|
):
|
||||||
logging.info(
|
|
||||||
"Moderator %s exported current users list", guild_name(ctx.user)
|
|
||||||
)
|
|
||||||
makedirs("tmp", exist_ok=True)
|
|
||||||
uuid = str(uuid4())
|
|
||||||
|
|
||||||
if kind == "Користувачі":
|
|
||||||
users = []
|
|
||||||
|
|
||||||
for member in ctx.guild.members:
|
|
||||||
users.append(
|
|
||||||
{
|
|
||||||
"id": member.id,
|
|
||||||
"nick": member.nick,
|
|
||||||
"username": f"{member.name}#{member.discriminator}",
|
|
||||||
"bot": member.bot,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
json_write_sync(users, str(Path(f"tmp/{uuid}")))
|
|
||||||
|
|
||||||
await ctx.respond(
|
|
||||||
file=File(str(Path(f"tmp/{uuid}")), filename="users.json")
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
logging.info(
|
logging.info(
|
||||||
"User %s tried to use /export but permission denied",
|
"User %s tried to use /export but permission denied",
|
||||||
guild_name(ctx.user),
|
guild_name(ctx.user),
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
title="Відмовлено в доступі",
|
title="Відмовлено в доступі",
|
||||||
@ -74,6 +52,7 @@ class Data(commands.Cog):
|
|||||||
color=Color.fail,
|
color=Color.fail,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role = ds_utils.get(
|
mod_role = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
@ -81,6 +60,7 @@ class Data(commands.Cog):
|
|||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
|
|
||||||
await admin_chan.send(
|
await admin_chan.send(
|
||||||
content=f"{mod_role.mention}",
|
content=f"{mod_role.mention}",
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@ -90,6 +70,33 @@ class Data(commands.Cog):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info("Moderator %s exported current users list", guild_name(ctx.user))
|
||||||
|
|
||||||
|
makedirs("tmp", exist_ok=True)
|
||||||
|
|
||||||
|
uuid = str(uuid4())
|
||||||
|
|
||||||
|
if kind == "Користувачі":
|
||||||
|
users = []
|
||||||
|
|
||||||
|
for member in ctx.guild.members:
|
||||||
|
users.append(
|
||||||
|
{
|
||||||
|
"id": member.id,
|
||||||
|
"nick": member.nick,
|
||||||
|
"username": f"{member.name}#{member.discriminator}",
|
||||||
|
"bot": member.bot,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
json_write_sync(users, str(Path(f"tmp/{uuid}")))
|
||||||
|
|
||||||
|
await ctx.respond(
|
||||||
|
file=File(str(Path(f"tmp/{uuid}")), filename="users.json")
|
||||||
|
)
|
||||||
|
|
||||||
@data.command(
|
@data.command(
|
||||||
name="migrate",
|
name="migrate",
|
||||||
description="Мігрувати всіх користувачів до бази",
|
description="Мігрувати всіх користувачів до бази",
|
||||||
@ -100,45 +107,18 @@ class Data(commands.Cog):
|
|||||||
)
|
)
|
||||||
async def data_migrate_cmd(self, ctx: ApplicationContext, kind: str):
|
async def data_migrate_cmd(self, ctx: ApplicationContext, kind: str):
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
|
|
||||||
holo_user = HoloUser(ctx.author)
|
holo_user = HoloUser(ctx.author)
|
||||||
if (ctx.user.id in self.client.owner_ids) or (
|
|
||||||
|
# Return if the user is not an owner and not in the council
|
||||||
|
if (ctx.user.id not in self.client.owner_ids) and not (
|
||||||
await holo_user.is_council(ctx.author)
|
await holo_user.is_council(ctx.author)
|
||||||
):
|
):
|
||||||
logging.info(
|
|
||||||
"Moderator %s started migration of all members to the database",
|
|
||||||
guild_name(ctx.user),
|
|
||||||
)
|
|
||||||
|
|
||||||
if kind == "Користувачі":
|
|
||||||
for member in ctx.guild.members:
|
|
||||||
if member.bot:
|
|
||||||
continue
|
|
||||||
if col_users.find_one({"user": member.id}) is None:
|
|
||||||
user = {}
|
|
||||||
defaults = await config_get("user", "defaults")
|
|
||||||
|
|
||||||
user["user"] = member.id
|
|
||||||
|
|
||||||
for key in defaults:
|
|
||||||
user[key] = defaults[key]
|
|
||||||
|
|
||||||
col_users.insert_one(document=user)
|
|
||||||
logging.info(
|
|
||||||
"Added DB record for user %s during migration", member.id
|
|
||||||
)
|
|
||||||
|
|
||||||
await ctx.respond(
|
|
||||||
embed=Embed(
|
|
||||||
title="Міграцію завершено",
|
|
||||||
description="Всім користувачам сервера було створено записи в базі даних.",
|
|
||||||
color=Color.success,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
logging.info(
|
logging.info(
|
||||||
"User %s tried to use /migrate but permission denied",
|
"User %s tried to use /migrate but permission denied",
|
||||||
guild_name(ctx.user),
|
guild_name(ctx.user),
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
title="Відмовлено в доступі",
|
title="Відмовлено в доступі",
|
||||||
@ -146,6 +126,7 @@ class Data(commands.Cog):
|
|||||||
color=Color.fail,
|
color=Color.fail,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role = ds_utils.get(
|
mod_role = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
@ -153,6 +134,7 @@ class Data(commands.Cog):
|
|||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
|
|
||||||
await admin_chan.send(
|
await admin_chan.send(
|
||||||
content=f"{mod_role.mention}",
|
content=f"{mod_role.mention}",
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@ -162,6 +144,41 @@ class Data(commands.Cog):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info(
|
||||||
|
"Moderator %s started migration of all members to the database",
|
||||||
|
guild_name(ctx.user),
|
||||||
|
)
|
||||||
|
|
||||||
|
if kind == "Користувачі":
|
||||||
|
for member in ctx.guild.members:
|
||||||
|
if member.bot:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if col_users.find_one({"user": member.id}) is None:
|
||||||
|
user = {}
|
||||||
|
defaults = await config_get("user", "defaults")
|
||||||
|
|
||||||
|
user["user"] = member.id
|
||||||
|
|
||||||
|
for key in defaults:
|
||||||
|
user[key] = defaults[key]
|
||||||
|
|
||||||
|
col_users.insert_one(document=user)
|
||||||
|
|
||||||
|
logging.info(
|
||||||
|
"Added DB record for user %s during migration", member.id
|
||||||
|
)
|
||||||
|
|
||||||
|
await ctx.respond(
|
||||||
|
embed=Embed(
|
||||||
|
title="Міграцію завершено",
|
||||||
|
description="Всім користувачам сервера було створено записи в базі даних.",
|
||||||
|
color=Color.success,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot):
|
def setup(client: PycordBot):
|
||||||
client.add_cog(Data(client))
|
client.add_cog(Data(client))
|
||||||
|
@ -15,8 +15,8 @@ class Logger(commands.Cog):
|
|||||||
async def on_message(self, message: Message):
|
async def on_message(self, message: Message):
|
||||||
if (
|
if (
|
||||||
(message.author != self.client.user)
|
(message.author != self.client.user)
|
||||||
and (message.author.bot == False)
|
and (message.author.bot is False)
|
||||||
and (message.author.system == False)
|
and (message.author.system is False)
|
||||||
):
|
):
|
||||||
if col_users.find_one({"user": message.author.id}) is None:
|
if col_users.find_one({"user": message.author.id}) is None:
|
||||||
user = {}
|
user = {}
|
||||||
@ -42,8 +42,8 @@ class Logger(commands.Cog):
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
(member != self.client.user)
|
(member != self.client.user)
|
||||||
and (member.bot == False)
|
and (member.bot is False)
|
||||||
and (member.system == False)
|
and (member.system is False)
|
||||||
):
|
):
|
||||||
await welcome_chan.send(
|
await welcome_chan.send(
|
||||||
content=(await config_get("welcome", "messages")).format(
|
content=(await config_get("welcome", "messages")).format(
|
||||||
|
Loading…
Reference in New Issue
Block a user