2024-05-13 19:26:13 -04:00
# _____ _
# / ____| (_)
# | (___ ___ __ _ _____ ___ _ __ ___ _ __ ___ ___ _ __
# \___ \ / _ \/ _` / __\ \ /\ / / | '_ ` _ \| '_ ` _ \ / _ \ '__|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
2024-05-28 16:22:22 -04:00
import asyncio
2024-05-13 19:26:13 -04:00
import inspect
2024-05-13 21:12:51 -04:00
import operator
2024-05-28 20:35:25 -04:00
import re
2024-05-28 18:01:35 -04:00
from asyncio . subprocess import Process
2024-05-17 00:12:40 -04:00
from functools import partial , partialmethod
from typing import Any
2024-05-13 19:26:13 -04:00
2024-05-28 20:20:21 -04:00
import aiohttp
2024-05-28 16:33:15 -04:00
import yaml
2024-05-28 20:20:21 -04:00
from bs4 import BeautifulSoup
2024-05-28 17:53:58 -04:00
from discord import Color , Embed , app_commands
2024-05-17 00:12:40 -04:00
from discord . utils import CachedSlotProperty , cached_property
2024-05-28 20:29:39 -04:00
from markdownify import MarkdownConverter
2024-05-13 19:26:13 -04:00
from redbot . core import commands
from redbot . core . bot import Red
2024-05-17 00:12:40 -04:00
from redbot . core . dev_commands import cleanup_code
2024-05-13 19:26:13 -04:00
from redbot . core . utils import chat_formatting as cf
2024-05-13 21:09:02 -04:00
from redbot . core . utils . views import SimpleMenu
2024-05-13 19:26:13 -04:00
2024-05-28 20:29:39 -04:00
def md ( soup : BeautifulSoup , * * options ) - > Any | str :
return MarkdownConverter ( * * options ) . convert_soup ( soup )
2024-05-28 20:35:25 -04:00
def convert_rfc_references ( text : str ) :
2024-05-28 20:40:48 -04:00
return re . sub ( r " \ ( \ . \ /rfc( \ d+) " , r " (https://www.rfc-editor.org/rfc/rfc \ 1.html " , text )
2024-05-28 20:35:25 -04:00
2024-05-13 19:26:13 -04:00
class SeaUtils ( commands . Cog ) :
""" A collection of random utilities. """
__author__ = [ " SeaswimmerTheFsh " ]
__version__ = " 1.0.0 "
def __init__ ( self , bot : Red ) :
self . bot = bot
def format_help_for_context ( self , ctx : commands . Context ) - > str :
pre_processed = super ( ) . format_help_for_context ( ctx ) or " "
n = " \n " if " \n \n " not in pre_processed else " "
text = [
f " { pre_processed } { n } " ,
f " Cog Version: ** { self . __version__ } ** " ,
f " Author: { cf . humanize_list ( self . __author__ ) } "
]
return " \n " . join ( text )
2024-05-19 00:18:48 -04:00
def format_src ( self , obj : Any ) - > str :
2024-05-17 00:12:40 -04:00
""" A large portion of this code is repurposed from Zephyrkul ' s RTFS cog.
https : / / github . com / Zephyrkul / FluffyCogs / blob / master / rtfs / rtfs . py """
obj = inspect . unwrap ( obj )
src : Any = getattr ( obj , " __func__ " , obj )
if isinstance ( obj , ( commands . Command , app_commands . Command ) ) :
src = obj . callback
elif isinstance ( obj , ( partial , partialmethod ) ) :
src = obj . func
elif isinstance ( obj , property ) :
src = obj . fget
elif isinstance ( obj , ( cached_property , CachedSlotProperty ) ) :
src = obj . function
return inspect . getsource ( src )
2024-05-13 20:22:13 -04:00
@commands.command ( aliases = [ " source " , " src " , " code " , " showsource " ] )
2024-05-13 19:26:13 -04:00
@commands.is_owner ( )
2024-05-19 00:18:48 -04:00
async def showcode ( self , ctx : commands . Context , * , object : str ) : # pylint: disable=redefined-builtin
2024-05-17 00:12:40 -04:00
""" Show the code for a particular object. """
2024-05-13 19:26:13 -04:00
try :
2024-05-17 00:12:40 -04:00
if object . startswith ( " / " ) and ( obj := ctx . bot . tree . get_command ( object [ 1 : ] ) ) :
2024-05-19 00:18:48 -04:00
text = self . format_src ( obj )
2024-05-17 00:12:40 -04:00
elif obj := ctx . bot . get_cog ( object ) :
2024-05-19 00:18:48 -04:00
text = self . format_src ( type ( obj ) )
2024-05-17 00:20:00 -04:00
elif obj := ctx . bot . get_command ( object ) :
2024-05-19 00:18:48 -04:00
text = self . format_src ( obj )
2024-05-13 21:11:15 -04:00
temp_content = cf . pagify (
2024-05-17 00:12:40 -04:00
text = cleanup_code ( text ) ,
2024-05-13 21:09:02 -04:00
escape_mass_mentions = True ,
page_length = 1977
2024-05-13 21:11:15 -04:00
)
content = [ ]
2024-05-13 21:12:51 -04:00
max_i = operator . length_hint ( temp_content )
2024-05-13 21:09:02 -04:00
i = 1
for page in temp_content :
2024-05-13 21:11:15 -04:00
content . append ( f " **Page { i } / { max_i } ** \n { cf . box ( page , lang = ' py ' ) } " )
2024-05-13 21:09:02 -04:00
i + = 1
2024-05-13 21:14:15 -04:00
await SimpleMenu ( pages = content , disable_after_timeout = True , timeout = 180 ) . start ( ctx )
2024-05-17 00:14:33 -04:00
except ( OSError , AttributeError , UnboundLocalError ) :
2024-05-13 21:14:15 -04:00
if ctx . embed_requested ( ) :
2024-05-17 00:12:40 -04:00
embed = Embed ( title = " Object not found! " , color = await ctx . embed_color ( ) )
2024-05-13 21:14:15 -04:00
await ctx . send ( embed = embed , reference = ctx . message . to_reference ( fail_if_not_exists = False ) )
else :
2024-05-17 00:12:40 -04:00
await ctx . send ( content = " Object not found! " , reference = ctx . message . to_reference ( fail_if_not_exists = False ) )
2024-05-28 16:22:22 -04:00
@commands.command ( name = ' dig ' , aliases = [ ' dnslookup ' , ' nslookup ' ] )
@commands.is_owner ( )
2024-05-28 18:55:09 -04:00
async def dig ( self , ctx : commands . Context , name : str , type : str | None = None , server : str | None = None , port : int = 53 ) - > None :
""" Retrieve DNS information for a domain.
Uses ` dig ` to perform a DNS query . Will fall back to ` nslookup ` if ` dig ` is not installed on the system .
` nslookup ` does not provide as much information as ` dig ` , so only the ` name ` parameter will be used if ` nslookup ` is used .
Will return the A , AAAA , and CNAME records for a domain by default . You can specify a different record type with the ` type ` parameter . """
2024-05-28 18:40:43 -04:00
command_opts : list [ str | int ] = [ ' dig ' ]
2024-05-28 18:55:09 -04:00
query_types = [ type ] if type else [ ' A ' , ' AAAA ' , ' CNAME ' ]
2024-05-28 16:22:22 -04:00
if server :
command_opts . extend ( [ ' @ ' , server ] )
2024-05-28 18:55:09 -04:00
for query_type in query_types :
command_opts . extend ( [ name , query_type ] )
command_opts . extend ( [ ' -p ' , str ( port ) , ' +yaml ' ] )
2024-05-28 16:22:22 -04:00
2024-05-28 18:01:35 -04:00
try :
process : Process = await asyncio . create_subprocess_exec ( * command_opts , stdout = asyncio . subprocess . PIPE , stderr = asyncio . subprocess . PIPE )
stdout , stderr = await process . communicate ( )
2024-05-28 18:31:38 -04:00
if stderr :
await ctx . maybe_send_embed ( message = " An error was encountered! \n " + cf . box ( text = stderr . decode ( ) ) )
2024-05-28 16:33:15 -04:00
else :
2024-05-28 18:31:38 -04:00
data = yaml . safe_load ( stdout . decode ( ) )
message_data : dict = data [ 0 ] [ ' message ' ]
response_data : dict = message_data [ ' response_message_data ' ]
if ctx . embed_requested ( ) :
embed = Embed (
title = " DNS Query Result " ,
color = await ctx . embed_color ( ) ,
timestamp = message_data [ ' response_time ' ]
)
embed . add_field ( name = " Response Address " , value = message_data [ ' response_address ' ] , inline = True )
embed . add_field ( name = " Response Port " , value = message_data [ ' response_port ' ] , inline = True )
embed . add_field ( name = " Query Address " , value = message_data [ ' query_address ' ] , inline = True )
embed . add_field ( name = " Query Port " , value = message_data [ ' query_port ' ] , inline = True )
embed . add_field ( name = " Status " , value = response_data [ ' status ' ] , inline = True )
embed . add_field ( name = " Flags " , value = response_data [ ' flags ' ] , inline = True )
if response_data . get ( ' status ' ) != ' NOERROR ' :
embed . colour = Color . red ( )
embed . description = cf . error ( " Dig query did not return `NOERROR` status. " )
2024-05-28 19:06:11 -04:00
questions = [ ]
answers = [ ]
authorities = [ ]
for m in data :
response = m [ ' message ' ] [ ' response_message_data ' ]
if ' QUESTION_SECTION ' in response :
for question in response [ ' QUESTION_SECTION ' ] :
2024-05-28 19:10:15 -04:00
if question not in questions :
questions . append ( question )
2024-05-28 19:06:11 -04:00
if ' ANSWER_SECTION ' in response :
for answer in response [ ' ANSWER_SECTION ' ] :
2024-05-28 19:10:15 -04:00
if answer not in answers :
answers . append ( answer )
2024-05-28 19:06:11 -04:00
if ' AUTHORITY_SECTION ' in response :
for authority in response [ ' AUTHORITY_SECTION ' ] :
2024-05-28 19:10:15 -04:00
if authority not in authorities :
authorities . append ( authority )
2024-05-28 19:06:11 -04:00
2024-05-28 19:26:07 -04:00
if questions :
question_section = " \n " . join ( questions )
2024-05-28 19:29:26 -04:00
embed . add_field ( name = " Question Section " , value = f " { cf . box ( text = question_section , lang = ' prolog ' ) } " , inline = False )
2024-05-28 19:26:07 -04:00
if answers :
answer_section = " \n " . join ( answers )
if len ( answer_section ) > 1024 :
embed . description = cf . warning ( " Answer section is too long to fit within embed field, falling back to description. " ) + cf . box ( answer_section )
else :
2024-05-28 19:29:26 -04:00
embed . add_field ( name = " Answer Section " , value = f " { cf . box ( text = answer_section , lang = ' prolog ' ) } " , inline = False )
2024-05-28 19:26:07 -04:00
if authorities :
2024-05-28 19:06:11 -04:00
authority_section = " \n " . join ( authorities )
2024-05-28 19:29:26 -04:00
embed . add_field ( name = " Authority Section " , value = f " { cf . box ( text = authority_section , lang = ' prolog ' ) } " , inline = False )
2024-05-28 18:31:38 -04:00
await ctx . send ( embed = embed )
else :
await ctx . send ( content = cf . box ( text = stdout , lang = ' yaml ' ) )
except ( FileNotFoundError ) :
try :
ns_process = await asyncio . create_subprocess_exec ( ' nslookup ' , name , stdout = asyncio . subprocess . PIPE , stderr = asyncio . subprocess . PIPE )
ns_stdout , ns_stderr = await ns_process . communicate ( )
if ns_stderr :
await ctx . maybe_send_embed ( message = " An error was encountered! \n " + cf . box ( text = ns_stderr . decode ( ) ) )
else :
warning = cf . warning ( " `dig` is not installed! Defaulting to `nslookup`. \n This command provides more information when `dig` is installed on the system. \n " )
if await ctx . embed_requested ( ) :
embed = Embed (
title = " DNS Query Result " ,
color = await ctx . embed_color ( ) ,
timestamp = ctx . message . created_at
)
embed . description = warning + cf . box ( text = ns_stdout . decode ( ) )
await ctx . send ( embed = embed )
else :
await ctx . send ( content = warning + cf . box ( text = ns_stdout . decode ( ) ) )
except ( FileNotFoundError ) :
await ctx . maybe_send_embed ( message = cf . error ( " Neither `dig` nor `nslookup` are installed on the system. Unable to resolve DNS query. " ) )
2024-05-28 20:20:21 -04:00
@commands.command ( )
async def rfc ( self , ctx : commands . Context , number : int ) - > None :
""" Retrieve the text of an RFC document. """
url = f " https://www.rfc-editor.org/rfc/rfc { number } .html "
async with aiohttp . ClientSession ( ) as session :
async with session . get ( url = url ) as response :
if response . status == 200 :
html = await response . text ( )
soup = BeautifulSoup ( html , ' html.parser ' )
2024-05-28 20:29:39 -04:00
pre_tags = soup . find_all ( ' pre ' )
content = [ ]
for pre_tag in pre_tags :
2024-05-28 20:35:25 -04:00
text = convert_rfc_references ( md ( pre_tag ) )
2024-05-28 20:29:39 -04:00
if await ctx . embed_requested ( ) :
embed = Embed (
title = " RFC Document " ,
2024-05-28 20:35:25 -04:00
description = text ,
2024-05-28 20:29:39 -04:00
color = await ctx . embed_color ( )
)
content . append ( embed )
else :
2024-05-28 20:35:25 -04:00
content . append ( text )
2024-05-28 20:20:21 -04:00
await SimpleMenu ( pages = content , disable_after_timeout = True , timeout = 300 ) . start ( ctx )
else :
await ctx . maybe_send_embed ( content = cf . error ( f " An error occurred while fetching RFC { number } . Status code: { response . status } . " ) )