Browse Source

hype hehe

huy
gsd 2 years ago
parent
commit
b6d3f79940
  1. 21
      other_ext/register.py
  2. 4
      player.py

21
other_ext/register.py

@ -1,8 +1,10 @@
from email import message
import discord import discord
from discord.ext import commands from discord.ext import commands
import os import os
import asyncio, aiohttp import asyncio, aiohttp
import traceback import traceback
from typing import List
class Extension: class Extension:
auth_channel = 960796520247091201 auth_channel = 960796520247091201
@ -106,16 +108,25 @@ class Extension:
print(f"Cannot delete message from auth channel, error: {err}") print(f"Cannot delete message from auth channel, error: {err}")
return return
'''@core.tree.command(name = "synclist", description = "Сихронизировать работяг") @core.tree.command(name = "synclist", description = "Сихронизировать работяг")
@discord.app_commands.describe() @discord.app_commands.describe()
@discord.app_commands.checks.has_role("Администратор Фактов13") @discord.app_commands.checks.has_role("Администратор Фактов13")
async def sync_list_not_have_role(interaction: discord.Interaction): async def sync_list_not_have_role(interaction: discord.Interaction):
current_members = self.core.get_guild(int(self.core.main_server_id)).members current_members:List[discord.Member] = self.core.get_guild(int(self.core.main_server_id)).members
current_members = [i for i in current_members if i] current_members = [str(i.id) for i in current_members if i.get_role(self.default_role) == None]
not_synced = None
async with aiohttp.ClientSession(cookies={"secretkey":os.getenv("BACKEND_SECRETKEY")}) as session: async with aiohttp.ClientSession(cookies={"secretkey":os.getenv("BACKEND_SECRETKEY")}) as session:
async with session.post(f"{os.getenv('BACKEND_URL')}/api/discord/sync", ssl=False, payload=current_members) as response: async with session.post(f"{os.getenv('BACKEND_URL')}/api/discord/sync", ssl=False, data=current_members) as response:
await response.json()''' not_synced = await response.json()
message = "Текущий список:\n"
for uid in not_synced:
message += f"<@{uid}>\n"
if not not_synced:
message += "пусто..."
return await interaction.followup.send(content=message, ephemeral=True)
async def final_stage(self, user: discord.Member, guild: discord.Guild, reason = ""): async def final_stage(self, user: discord.Member, guild: discord.Guild, reason = ""):
try: try:

4
player.py

@ -108,9 +108,9 @@ class Player:
message = "" message = ""
for d in self.current.get("attached_discords", []): for d in self.current.get("attached_discords", []):
if d['active'] == 1: if d['active'] == 1:
message_head += f"<@{d['discord_id']}> | {utime2human(d['utime'])}" message_head += f"<@{d['discord_id']}> | {utime2human(d['utime'])}\n"
else: else:
message += f"<@{d['discord_id']}> | {utime2human(d['utime'])}" message += f"<@{d['discord_id']}> | {utime2human(d['utime'])}\n"
if message_head: if message_head:
embed.add_field(name="Привязаный аккаунт Discord:", value=message_head, inline=False) embed.add_field(name="Привязаный аккаунт Discord:", value=message_head, inline=False)

Loading…
Cancel
Save