@ -1,6 +1,8 @@
from discord . ext import tasks
import discord
from . . bot import DiscordClient
import asyncio
import traceback
class Extension :
core = None
@ -16,16 +18,16 @@ class Extension:
self . track_guild_id = core . main_server_id
self . webhook_reaction_translate = {
" 😘 " : ( self . core . loaded_extensions [ ' ban ' ] , { " profile " : " " , " reason " : " " , " minutes " : 0 , " requester " : " " } ) ,
" 🔨 " : ( self . core . loaded_extensions [ ' ban ' ] , { " profile " : " " , " reason " : " " , " minutes " : 30 , " requester " : " " } ) ,
" ⚒️ " : ( self . core . loaded_extensions [ ' ban ' ] , { " profile " : " " , " reason " : " " , " minutes " : 120 , " requester " : " " } ) ,
" 😘 " : ( ' ban ' , { " profile " : " " , " reason " : " " , " minutes " : 0 , " requester " : " " } ) ,
" 🔨 " : ( ' ban ' , { " profile " : " " , " reason " : " " , " minutes " : 30 , " requester " : " " } ) ,
" ⚒️ " : ( ' ban ' , { " profile " : " " , " reason " : " " , " minutes " : 120 , " requester " : " " } ) ,
" 📨 " : ( self . no_reason , { " requester " : " " } ) ,
" 🦵 " : " kick {reported_steam} " ,
" 🔇 " : " mute {reported_steam} " ,
" 😇 " : " unban {reported_steam} " ,
" hueglot:713139400028061767 " : " kick {original_steam} " ,
" 🔍 " : " {reported_steam} " ,
" 🔎 " : " {original_steam} "
" 🦵 " : ( " kick " , { " profile " : " " } ) ,
" 🔇 " : ( " mute " , { " profile " : " " } ) ,
" 😇 " : ( " unban " , { " profile " : " " } ) ,
" hueglot:713139400028061767 " : ( " kick " , { " profile " : " " , " requester_profile " : " " } ) ,
" 🔍 " : ( " profile " , { " profile " : " " } ) ,
" 🔎 " : ( " unban " , { " profile " : " " , " requester_profile " : " " } )
}
@core . event
@ -48,11 +50,55 @@ class Extension:
if reaction . me :
return
if not reaction . message . guild . get_member ( user . id ) . get_role ( self . track_role_id ) :
return
if str ( reaction . emoji ) in self . webhook_reaction_translate . keys ( ) :
executor , kwargs = self . webhook_reaction_translate [ str ( reaction . emoji ) ]
if " requester " in kwargs :
kwargs [ " requester " ] = user . id
if " reason " in kwargs and not user . id in self . no_reason :
def check ( message : discord . Message ) :
return message . author == user and message . channel == reaction . message . channel
try :
req_msg = await reaction . message . channel . send ( content = f " { user . mention } ! \n Введи причину отправив сообщение " )
msg = await self . core . wait_for ( " message " , timeout = 60.0 , check = check )
except asyncio . TimeoutError :
await reaction . message . channel . send ( content = f " { user . mention } ! \n Действие { reaction . emoji } отменено спустя время " , delete_after = 60 )
return
try :
await req_msg . delete ( )
except Exception as err :
print ( " Cannot delete request reason message, error: " + err )
#не ну это пиздец
if msg . content . split ( " " ) > 0 and msg . content . lower ( ) . split ( " " ) [ 0 ] == " отмена " :
return await reaction . message . channel . send ( content = f " { user . mention } ! \n Действие { reaction . emoji } отменено по твоей воле " , delete_after = 60 )
else :
kwargs [ " reason " ] = msg . content
if " reason " in kwargs and user . id in self . no_reason :
kwargs [ " reason " ] = self . no_reason [ user . id ]
del self . no_reason [ user . id ]
if " profile " in kwargs :
kwargs [ " profile " ] = reaction . message . embeds [ 0 ] . url
if " requester_profile " in kwargs :
kwargs [ " profile " ] = reaction . message . embeds [ 0 ] . author . url
try :
if type ( executor ) == str :
result = await self . core . loaded_extensions [ executor ] ( * * kwargs )
else :
result = await executor ( * * kwargs )
except Exception as err :
traceback . print_exc ( )
return await reaction . message . channel . send ( content = f " { user . mention } ! \n Действие { reaction . emoji } невозможно из-за ошибки: { err } . Стоит написать добродею! " , delete_after = 60 )
return await reaction . message . channel . send ( content = f " { user . mention } ! \n Действие { reaction . emoji } дало ответ: { result } " )
async def null_reason ( self , requester ) :
self . no_reason [ requester ] = " no reason "
return " Следующий бан будет без причины "