-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
233 lines (211 loc) · 8.74 KB
/
index.js
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
const { Client, Events, GatewayIntentBits, Collection, Activity, ActivityType } = require('discord.js')
const cooldowns = new Collection();
// dotenv
const dotenv = require('dotenv')
dotenv.config()
const { TOKEN } = process.env
// importação dos comandos
const fs = require("node:fs")
const path = require("node:path")
const commandsPath = path.join(__dirname, "commands")
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith(".js"))
const client = new Client({ intents: [GatewayIntentBits.Guilds] })
client.commands = new Collection()
for (const file of commandFiles){
const filePath = path.join(commandsPath, file)
const command = require(filePath)
if ("data" in command && "execute" in command) {
client.commands.set(command.data.name, command)
} else {
console.log(`Esse comando em ${filePath} está com "data" ou "execute ausentes"`)
}
}
let status = [
{
name: "🗳️ Vote no top.gg",
type: ActivityType.Watching,
link: "https://top.gg/bot/1193011045577523300"
},
{
name: "👨💻 Explorando novas linguagens",
type: ActivityType.Playing,
},
{
name: "📘 Compartilhando dicas de código",
type: ActivityType.Playing,
},
{
name: "🔍 Resolvendo bugs",
type: ActivityType.Playing,
},
{
name: "💬 Respondendo dúvidas de programação",
type: ActivityType.Playing,
},
{
name: "🚀 Lançando atualizações",
type: ActivityType.Watching,
link: "https://github.com/emanuelsacoman/CodeBucket-website"
},
{
name: "🎵 Encontrando inspiração em músicas",
type: ActivityType.Listening,
link: "https://open.spotify.com/playlist/3FbsZmt8BrFFmVpKD4ju4H?si=0948ff034a394fba"
},
{
name: "📚 Aprendendo novos frameworks",
type: ActivityType.Playing,
},
{
name: "💻 Codificando novas funcionalidades",
type: ActivityType.Watching,
link: "https://github.com/emanuelsacoman/CodeBucket-website"
},
{
name: "🔍 Descobrindo novos comandos",
type: ActivityType.Watching,
link: "https://codebucketweb.web.app/comandos"
},
{
name: "🔧 Otimizando desempenho",
type: ActivityType.Playing,
},
{
name: "🌐 Desenvolvendo para a web",
type: ActivityType.Playing,
},
{
name: "📝 Escrevendo documentação",
type: ActivityType.Playing,
},
{
name: "🔍 Depurando código",
type: ActivityType.Playing
},
{
name: "🛢️ Enchendo o balde de códigos",
type: ActivityType.Playing,
},
]
// Login do bot
client.once('ready', () => {
console.log(`Pronto! Login realizado como ${client.user.tag}\n`);
console.log(`${client.user.tag} foi iniciado em:`);
client.guilds.cache.forEach(guild => {
console.log(`Nome do servidor: ${guild.name} | ID: ${guild.id} | Membros: ${guild.memberCount}`);
});
console.log(`O bot está conectado em um total de ${client.guilds.cache.size} servidores.`);
console.log('\n');
//status personalizado
setInterval(() => {
let random = Math.floor(Math.random() * status.length);
client.user.setActivity(status[random]);
}, 100000);
});
//avisa se alguém adicionar o bot
client.on('guildCreate', guild => {
const now = new Date();
const formattedDate = now.toLocaleDateString('pt-BR', { year: 'numeric', month: 'long', day: 'numeric' });
const formattedTime = now.toLocaleTimeString('pt-BR', { hour: '2-digit', minute: '2-digit', second: '2-digit' });
console.log(`O bot foi adicionado ao servidor: ${guild.name} (ID: ${guild.id})`);
console.log(`Data: ${formattedDate}`);
console.log(`Hora: ${formattedTime}`);
console.log(`O bot está conectado em um total de ${client.guilds.cache.size} servidores.`);
console.log('\n');
});
client.login(TOKEN)
// Linguagens para 'docs.js'
const selectedOptions = {
angular: "Documentação do Angular: https://angular.io/docs",
csharp: "Documentação do C#: https://learn.microsoft.com/en-us/dotnet/csharp/",
cpp: "Documentação do C++: https://devdocs.io/cpp/",
css: "Documentação do CSS: https://developer.mozilla.org/en-US/docs/Web/CSS",
discordjs: "Documentação do Discord.js: https://discordjs.guide/#before-you-begin",
godot: "Documentação do Godot: https://docs.godotengine.org/en/stable/",
html: "Documentação do HTML: https://developer.mozilla.org/en-US/docs/Web/HTML",
ionic: "Documentação do Ionic: https://ionicframework.com/docs",
java: "Documentação do Java: https://docs.oracle.com/en/java/",
javascript: "Documentação do Javascript: https://developer.mozilla.org/en-US/docs/Web/JavaScript",
python: "Documentação do Python: https://www.python.org",
react: "Documentação do React: https://reactjs.org/docs/getting-started.html",
typescript: "Documentação do TypeScript: https://www.typescriptlang.org/docs/",
unreal: "Documentação da Unreal Engine: https://docs.unrealengine.com/",
unity: "Documentação do Unity: https://learn.unity.com/",
dart: "Documentação do Dart: https://dart.dev/guides",
go: "Documentação do Go: https://golang.org/doc/",
kotlin: "Documentação do Kotlin: https://kotlinlang.org/docs/home.html",
ruby: "Documentação do Ruby: https://www.ruby-lang.org/pt/documentation/",
swift: "Documentação do Swift: https://swift.org/documentation/",
git: "Documentação do Git: https://git-scm.com/docs/git/pt_BR",
laravel: "Documentação do Laravel: https://laravel.com/docs/10.x/readme",
rust: "Documentação do Rust: https://doc.rust-lang.org/book/",
php: "Documentação do PHP: https://www.php.net/manual/en/",
vuejs: "Documentação do Vue.js: https://vuejs.org/v2/guide/",
jquery: "Documentação do jQuery: https://api.jquery.com/",
};
const docsCommand = require('./commands/docs');
client.commands.set(docsCommand.data.name, docsCommand);
// Listener de interações com o bot
client.on(Events.InteractionCreate, async interaction => {
try {
if (interaction.isStringSelectMenu()) {
const selected = interaction.values[0];
const selectedOption = selectedOptions[selected];
if (selectedOption) {
try {
await interaction.reply(selectedOption);
} catch (error) {
console.error("Erro ao responder/atualizar a interação:", error);
}
} else {
try {
await interaction.reply("Opção não reconhecida.");
} catch (error) {
console.error("Erro ao responder/atualizar a interação:", error);
}
}
} else if (interaction.isCommand()) {
const command = client.commands.get(interaction.commandName);
if (!command) {
console.error("Comando não encontrado");
return;
}
// Verificação de cooldown
if (!cooldowns.has(command.data.name)) {
cooldowns.set(command.data.name, new Collection());
}
const now = Date.now();
const timestamps = cooldowns.get(command.data.name);
const cooldownAmount = (command.data.cooldown || 5) * 1000;
if (timestamps.has(interaction.user.id)) {
const expirationTime = timestamps.get(interaction.user.id) + cooldownAmount;
if (now < expirationTime) {
const timeLeft = (expirationTime - now) / 1000;
try {
await interaction.reply({
content: `:anger: Por favor, espere **${timeLeft.toFixed(1)}** segundos antes de usar o comando novamente.`,
ephemeral: true
});
} catch (error) {
console.error("Erro ao responder/atualizar a interação:", error);
}
return;
}
}
timestamps.set(interaction.user.id, now);
setTimeout(() => timestamps.delete(interaction.user.id), cooldownAmount);
try {
await command.execute(interaction);
} catch (error) {
console.error(error);
try {
await interaction.reply("Houve um erro ao executar esse comando!");
} catch (error) {
console.error("Erro ao responder à interação de erro:", error);
}
}
}
} catch (error) {
console.error("Erro geral na interação:", error);
}
});