-
Notifications
You must be signed in to change notification settings - Fork 535
/
main-pt.py
317 lines (287 loc) · 12.8 KB
/
main-pt.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
from os import system
import psutil
import os
from pypresence import Presence
import time
import sys
import discord
import json
import traceback
from rich.table import Table
from rich.console import Console
from rich.style import Style
from rich.panel import Panel as RichPanel
from rich.progress import Progress
import asyncio
from colorama import Fore, init, Style
import platform
import inquirer
from cloner import Clone
version = '1.4'
console = Console()
def loading(seconds):
with Progress() as progress:
task = progress.add_task("", total=seconds)
while not progress.finished:
progress.update(task, advance=1)
time.sleep(1)
def clearall():
system('clear')
print(f"""{Style.BRIGHT}{Fore.RED}
▄▄▄██▀▀▀▒█████ ▄▄▄ ▒█████ ██ ▄█▀ ██▀███ ██▓ ██████ ▄▄▄█████▓ ▄▄▄ ███▄ █ ██▓
▒██ ▒██▒ ██▒▒████▄ ▒██▒ ██▒ ██▄█▒ ▓██ ▒ ██▒▓██▒▒██ ▒ ▓ ██▒ ▓▒▒████▄ ██ ▀█ █ ▓██▒
░██ ▒██░ ██▒▒██ ▀█▄ ▒██░ ██▒▓███▄░ ▓██ ░▄█ ▒▒██▒░ ▓██▄ ▒ ▓██░ ▒░▒██ ▀█▄ ▓██ ▀█ ██▒▒██▒
▓██▄██▓ ▒██ ██░░██▄▄▄▄██ ▒██ ██░▓██ █▄ ▒██▀▀█▄ ░██░ ▒ ██▒░ ▓██▓ ░ ░██▄▄▄▄██ ▓██▒ ▐▌██▒░██░
▓███▒ ░ ████▓▒░ ▓█ ▓██▒░ ████▓▒░▒██▒ █▄░██▓ ▒██▒░██░▒██████▒▒ ▒██▒ ░ ▓█ ▓██▒▒██░ ▓██░░██░
▒▓▒▒░ ░ ▒░▒░▒░ ▒▒ ▓▒█░░ ▒░▒░▒░ ▒ ▒▒ ▓▒░ ▒▓ ░▒▓░░▓ ▒ ▒▓▒ ▒ ░ ▒ ░░ ▒▒ ▓▒█░░ ▒░ ▒ ▒ ░▓
▒ ░▒░ ░ ▒ ▒░ ▒ ▒▒ ░ ░ ▒ ▒░ ░ ░▒ ▒░ ░▒ ░ ▒░ ▒ ░░ ░▒ ░ ░ ░ ▒ ▒▒ ░░ ░░ ░ ▒░ ▒ ░
░ ░ ░ ░ ░ ░ ▒ ░ ▒ ░ ░ ░ ▒ ░ ░░ ░ ░░ ░ ▒ ░░ ░ ░ ░ ░ ▒ ░ ░ ░ ▒ ░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
{Style.RESET_ALL}{Fore.RESET}""")
def get_user_preferences():
preferences = {}
preferences['guild_edit'] = True
preferences['channels_delete'] = True
preferences['roles_create'] = True
preferences['categories_create'] = True
preferences['channels_create'] = True
preferences['emojis_create'] = False
def map_boolean_to_string(value):
return "Sim" if value else "Não"
panel_title = "Config BETA"
panel_content = "\n"
panel_content += f"- Alterar nome e ícone do servidor: {map_boolean_to_string(preferences.get('guild_edit', False))}\n"
panel_content += f"- Excluir os canais do servidor de destino: {map_boolean_to_string(preferences.get('channels_delete', False))}\n"
panel_content += f"- Clonar os cargos: {map_boolean_to_string(preferences.get('roles_create', False))}\n"
panel_content += f"- Clonar as categorias: {map_boolean_to_string(preferences.get('categories_create', False))}\n"
panel_content += f"- Clonar os canais: {map_boolean_to_string(preferences.get('channels_create', False))}\n"
panel_content += f"- Clonar os emojis: {map_boolean_to_string(preferences.get('emojis_create', False))}\n"
console.print(
RichPanel(panel_content,
title=panel_title,
style="bold blue",
width=70))
questions = [
inquirer.List(
'reconfigure',
message='Você deseja reconfigurar as configurações padrão?',
choices=['Sim', 'Não'],
default='Não')
]
answers = inquirer.prompt(questions)
reconfigure = answers['reconfigure']
if reconfigure == 'Sim':
questions = [
inquirer.Confirm(
'guild_edit',
message='Deseja editar o ícone do servidor e nome?',
default=False),
inquirer.Confirm('channels_delete',
message='Deseja deletar os canais?',
default=False),
inquirer.Confirm(
'roles_create',
message=
'Deseja clonar os cargos? (NÃO É RECOMENDADO DESATIVAR)',
default=False),
inquirer.Confirm('categories_create',
message='Deseja clonar as categorias?',
default=False),
inquirer.Confirm('channels_create',
message='Deseja clonar os canais?',
default=False),
inquirer.Confirm(
'emojis_create',
message=
'Deseja clonar os Emojis? (É RECOMENDADO ATIVAR ESSA CLONAGEM SOLO(SOZINHA) PARA NÃO OCORRER ERROS)',
default=False)
]
answers = inquirer.prompt(questions)
preferences['guild_edit'] = answers['guild_edit']
preferences['channels_delete'] = answers['channels_delete']
preferences['roles_create'] = answers['roles_create']
preferences['categories_create'] = answers['categories_create']
preferences['channels_create'] = answers['channels_create']
preferences['emojis_create'] = answers['emojis_create']
clearall()
return preferences
versao_python = sys.version.split()[0]
def restart():
python = sys.executable
os.execv(python, [python] + sys.argv)
client = discord.Client()
if os == "Windows":
system("cls")
else:
print(chr(27) + "[2J")
clearall()
while True:
token = input(
f'{Style.BRIGHT}{Fore.MAGENTA}Insira o seu token para prosseguir{Style.RESET_ALL}{Fore.RESET}\n >'
)
guild_s = input(
f'{Style.BRIGHT}{Fore.MAGENTA}Insira o ID do servidor que você deseja replicar{Style.RESET_ALL}{Fore.RESET}\n >'
)
guild = input(
f'{Style.BRIGHT}{Fore.MAGENTA}Insira o ID do servidor de destino para colar o servidor copiado{Style.RESET_ALL}{Fore.RESET}\n>'
)
clearall()
print(f'{Style.BRIGHT}{Fore.GREEN}Os valores inseridos são:')
token_length = len(token)
hidden_token = "*" * token_length
print(
f'{Style.BRIGHT}{Fore.GREEN}Seu token: {Fore.YELLOW}{hidden_token}{Style.RESET_ALL}{Fore.RESET}'
)
print(
f'{Style.BRIGHT}{Fore.GREEN}ID do Servidor para replicar: {Fore.YELLOW}{guild_s}{Style.RESET_ALL}{Fore.RESET}'
)
print(
f'{Style.BRIGHT}{Fore.GREEN}ID do Servidor que você deseja colar o servidor copiado: {Fore.YELLOW}{guild}{Style.RESET_ALL}{Fore.RESET}'
)
confirm = input(
f'{Style.BRIGHT}{Fore.MAGENTA}Os valores estão corretos? {Fore.YELLOW}(Y/N){Style.RESET_ALL}{Fore.RESET}\n >'
)
if confirm.upper() == 'Y':
if not guild_s.isnumeric():
clearall()
print(
f'{Style.BRIGHT}{Fore.RED}O ID do servidor para replicar deve conter apenas números.{Style.RESET_ALL}{Fore.RESET}'
)
continue
if not guild.isnumeric():
clearall()
print(
f'{Style.BRIGHT}{Fore.RED}O ID do servidor de destino deve conter apenas números.{Style.RESET_ALL}{Fore.RESET}'
)
continue
if not token.strip() or not guild_s.strip() or not guild.strip():
clearall()
print(
f'{Style.BRIGHT}{Fore.RED}Um ou mais campos estão em branco.{Style.RESET_ALL}{Fore.RESET}'
)
continue
if len(token.strip()) < 3 or len(guild_s.strip()) < 3 or len(
guild.strip()) < 3:
clearall()
print(
f'{Style.BRIGHT}{Fore.RED}Um ou mais campos têm menos de 3 caracteres.{Style.RESET_ALL}{Fore.RESET}'
)
continue
break
elif confirm.upper() == 'N':
clearall()
else:
clearall()
print(
f'{Style.BRIGHT}{Fore.RED}Opção inválida. Por favor, insira Y ou N.{Style.RESET_ALL}{Fore.RESET}'
)
input_guild_id = guild_s
output_guild_id = guild
token = token
clearall()
@client.event
async def on_ready():
try:
start_time = time.time()
table = Table(title="Versões", style="bold magenta", width=85)
table.add_column("Componente", width=35)
table.add_column("Versão", style="cyan", width=35)
table.add_row("Clonador", version)
table.add_row("Discord.py", discord.__version__)
table.add_row("Python", versao_python)
console.print(RichPanel(table))
console.print(
RichPanel(f" Autenticação bem-sucedida em {client.user.name}",
style="bold green",
width=69))
print(f"\n")
loading(5)
clearall()
guild_from = client.get_guild(int(input_guild_id))
guild_to = client.get_guild(int(output_guild_id))
preferences = get_user_preferences()
if not any(preferences.values()):
preferences = {k: True for k in preferences}
if preferences['guild_edit']:
await Clone.guild_edit(guild_to, guild_from)
if preferences['channels_delete']:
await Clone.channels_delete(guild_to)
if preferences['roles_create']:
await Clone.roles_create(guild_to, guild_from)
if preferences['categories_create']:
await Clone.categories_create(guild_to, guild_from)
if preferences['channels_create']:
await Clone.channels_create(guild_to, guild_from)
if preferences['emojis_create']:
await Clone.emojis_create(guild_to, guild_from)
end_time = time.time()
duration = end_time - start_time
duration_str = time.strftime("%M:%S", time.gmtime(duration))
print("\n\n")
print(
f"{Style.BRIGHT}{Fore.BLUE} O servidor foi clonado com sucesso em {Fore.YELLOW}{duration_str}{Style.RESET_ALL}"
)
print(
f"{Style.BRIGHT}{Fore.BLUE} Visite nosso servidor do Discord: {Fore.YELLOW}https://discord.gg/Qvf5NUtqMg{Style.RESET_ALL}"
)
print(
f"{Style.BRIGHT}{Fore.BLUE}Finalizando processo e encerrando a sessão na conta {Fore.YELLOW}{client.user}"
)
await asyncio.sleep(30)
await client.close() #fecha o codigo
except discord.LoginFailure:
print(
"Não foi possível autenticar na conta. Verifique se o token está correto."
)
except discord.Forbidden:
print(
"Não foi possível realizar a clonagem devido a permissões insuficientes."
)
except discord.NotFound:
print(
"Não foi possível encontrar algum dos elementos da cópia (canais, categorias, etc.)."
)
except discord.HTTPException:
print(
"Houve um erro de comunicação com a API do Discord. Em 20 segundos, o código continuará a partir do ponto em que parou."
)
loading(20)
await Clone.emojis_create(guild_to, guild_from)
except asyncio.TimeoutError:
print(f"Ocorreu um erro: TimeOut")
except Exception as e:
print(Fore.RED + " Ocorreu um erro:", e)
print("\n")
traceback.print_exc()
panel_text = (
f"1. ID do servidor incorreto\n"
f"2. Você não está no servidor inserido\n"
f"3. Servidor inserido não existe\n"
f"Mesmo assim não foi resolvido? Entre em contato com o desenvolvedor em [link=https://discord.gg/Qvf5NUtqMg]https://discord.gg/Qvf5NUtqMg[/link]"
)
console.print(
RichPanel(panel_text,
title="Possíveis causas e soluções",
style="bold red",
width=70))
print(
Fore.YELLOW +
"\nO código será reiniciado em 20 segundos. Se você não quiser esperar atualize a página e comece novamente."
)
print(Style.RESET_ALL)
loading(20)
restart()
print(Fore.RED + "Reiniciando...")
try:
client.run(token)
except discord.LoginFailure:
print(Fore.RED + "O token inserido é inválido")
print(
Fore.YELLOW +
"\n\nO código será reiniciado em 10 segundos. Se você não quiser esperar atualize a página e comece novamente."
)
print(Style.RESET_ALL)
loading(10)
restart()
clearall()
print(Fore.RED + "Reiniciando...")