-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcmdhelper.py
194 lines (163 loc) · 6.91 KB
/
cmdhelper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import os
import re
import json
import asyncio
import discord
import requests
from . import codeblock
from . import config
from . import imgembed
from . import webhook
get_command_full_name = lambda cmd: f"{cmd.parent.name} {cmd.name}" if cmd.parent else cmd.name
def format_time(seconds, short_form=True):
minutes, seconds = divmod(seconds, 60)
hours, minutes = divmod(minutes, 60)
days, hours = divmod(hours, 24)
seconds = int(seconds)
minutes = int(minutes)
hours = int(hours)
days = int(days)
if days:
return f"{days}d, {hours}h, {minutes}m" if short_form else f"{days} days, {hours} hours, {minutes} mins"
elif hours:
return f"{hours}h, {minutes}m" if short_form else f"{hours} hours, {minutes} mins"
elif minutes:
return f"{minutes}m, {seconds}s" if short_form else f"{minutes} mins, {seconds} secs"
else:
return f"{seconds}s" if short_form else f"{seconds} seconds"
def remove_emojis(text):
emoji_pattern = re.compile(
"["
"\U0001F600-\U0001F64F" # Emoticons
"\U0001F300-\U0001F5FF" # Symbols & Pictographs
"\U0001F680-\U0001F6FF" # Transport & Map Symbols
"\U0001F700-\U0001F77F" # Alchemical Symbols
"\U0001F780-\U0001F7FF" # Geometric Shapes Extended
"\U0001F800-\U0001F8FF" # Supplemental Arrows-C
"\U0001F900-\U0001F9FF" # Supplemental Symbols and Pictographs
"\U0001FA00-\U0001FA6F" # Chess Symbols
"\U0001FA70-\U0001FAFF" # Symbols and Pictographs Extended-A
"\U00002702-\U000027B0" # Dingbats
"\U000024C2-\U0001F251" # Enclosed Characters
"]+",
flags=re.UNICODE
)
return emoji_pattern.sub(r'', text)
def cog_desc(cmd, desc):
return f"{desc}\n{cmd}"
def generate_help_pages(bot, cog_name):
commands = bot.get_cog(cog_name).walk_commands()
command_details = []
max_name_length = 0
for cmd in commands:
if cmd.name.lower() != cog_name.lower():
full_name = get_command_full_name(cmd)
max_name_length = max(max_name_length, len(full_name))
command_details.append((full_name, cmd.description))
formatted_commands = []
formatted_commands_codeblock = []
for name, description in command_details:
padded_name = name.ljust(max_name_length)
if description.endswith("."):
description = description[:-1]
formatted_commands_codeblock.append(f"{padded_name} :: {description}")
formatted_commands.append(f"**{bot.command_prefix}{name}** {description}")
def split_into_pages(commands_list, max_length):
pages = []
current_page = ""
for cmd in commands_list:
if len(current_page) + len(cmd) > max_length:
pages.append(current_page)
current_page = ""
current_page += f"{cmd}\n"
if current_page:
pages.append(current_page)
return pages
codeblock_pages = split_into_pages(formatted_commands_codeblock, 1000)
image_pages = split_into_pages(formatted_commands, 400)
embed_pages = split_into_pages(formatted_commands, 1000)
return {"codeblock": codeblock_pages, "image": image_pages, "embed": embed_pages}
async def rich_embed(ctx, embed):
cfg = config.Config()
webhook_url = cfg.get("rich_embed_webhook")
webhook_client = webhook.Webhook.from_url(webhook_url)
webhook_channel = ctx.bot.get_channel(int(webhook_client.channel_id))
webhook_client.send(embed=embed.to_dict())
async for message in webhook_channel.history(limit=1):
try:
resp = requests.post(
f"https://discord.com/api/v9/channels/{ctx.channel.id}/messages",
headers={"Authorization": cfg.get("token"), "Content-Type": "application/json"},
data=json.dumps({
"content": "",
"flags": 0,
"message_reference": {
"channel_id": message.channel.id,
"guild_id": message.guild.id,
"message_id": message.id,
"type": 1
}
})
)
if resp.status_code == 200:
await asyncio.sleep(cfg.get("message_settings")["auto_delete_delay"])
try:
requests.delete(f"https://discord.com/api/v9/channels/{ctx.channel.id}/messages/{resp.json()['id']}", headers={"Authorization": cfg.get("token")})
except:
pass
except Exception as e:
print(e)
async def send_message(ctx, embed_obj: dict, extra_title="", extra_message="", delete_after=None):
cfg = config.Config()
theme = cfg.theme
title = embed_obj.get("title", theme.title)
description = embed_obj.get("description", "")
colour = embed_obj.get("colour", theme.colour)
footer = embed_obj.get("footer", theme.footer)
thumbnail = embed_obj.get("thumbnail", theme.image)
codeblock_desc = embed_obj.get("codeblock_desc", description)
if delete_after is None:
delete_after = cfg.get("message_settings")["auto_delete_delay"]
elif delete_after is False:
delete_after = None
msg_style = cfg.get("message_settings")["style"]
if msg_style == "embed" and not cfg.get("rich_embed_webhook"):
msg_style = "codeblock"
if msg_style == "codeblock":
description = re.sub(r"[*_~`]", "", codeblock_desc).lower()
if title == theme.title:
title = f"{theme.emoji} {title}"
if len(description.split("\n")) == 1:
extra_title = description
description = ""
msg = await ctx.send(
str(codeblock.Codeblock(
title=title.lower(),
description=description.lower(),
extra_title=extra_title.lower()
)),
delete_after=delete_after
)
elif msg_style == "image":
title = remove_emojis(title.replace(theme.emoji, "").lstrip())
embed2 = imgembed.Embed(title=title.lower(), description=description.lower(), colour=colour)
embed2.set_footer(text=footer)
embed2.set_thumbnail(url=thumbnail)
embed_file = embed2.save()
msg = await ctx.send(file=discord.File(embed_file, filename="embed.png"), delete_after=delete_after)
os.remove(embed_file)
elif msg_style == "embed" and cfg.get("rich_embed_webhook"):
if title == theme.title:
title = f"{theme.emoji} {title}"
embed = discord.Embed(
title=title.lower(),
description=description.lower(),
colour=discord.Color.from_str(colour)
)
embed.set_footer(text=footer)
embed.set_thumbnail(url=thumbnail)
return await rich_embed(ctx, embed)
if extra_message:
extra_msg = await ctx.send(extra_message, delete_after=delete_after)
return msg, extra_msg
return msg