-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
132 lines (127 loc) · 3.69 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
const {
Client,
WebhookClient,
GatewayIntentBits,
Partials,
EmbedBuilder,
Colors,
} = require("discord.js");
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildEmojisAndStickers,
GatewayIntentBits.GuildIntegrations,
GatewayIntentBits.GuildWebhooks,
GatewayIntentBits.GuildInvites,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildMessageTyping,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageReactions,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.MessageContent,
],
shards: "auto",
partials: [
Partials.Message,
Partials.Channel,
Partials.GuildMember,
Partials.Reaction,
Partials.GuildScheduledEvent,
Partials.User,
Partials.ThreadMember,
],
});
const { token, kanallar, mongoURI } = require("./config.js");
const db = require("erenaydb");
const fs = require("fs");
const pasteEkle = require("./handlers/pastebin/pasteEkle");
db.setAdapter("mongo", {
url: mongoURI,
});
//event-handler
const eventFiles = fs
.readdirSync("./src/events")
.filter((file) => file.endsWith(".js"));
for (const file of eventFiles) {
const event = require(`./src/events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args));
} else {
client.on(event.name, (...args) => event.execute(...args));
}
}
client.on("error", console.error);
client.on("shardError", console.error);
client.on("shardDisconnect", console.error);
client.on("warn", console.error);
const webhook = new WebhookClient({
url: kanallar.hataLogWebhookURI,
});
process.on("unhandledRejection", (error) => {
console.log("Error > ", error);
if (!webhook) return;
const Hata = new EmbedBuilder()
.setColor(Colors.Red)
.setDescription(`> Bot bir hata verdi.\n\n> \`${error.stack}\``)
.setTimestamp();
webhook.send({ embeds: [Hata] });
});
process.on("uncaughtException", (error) => {
console.log("Error > ", error);
if (!webhook) return;
const Hata2 = new EmbedBuilder()
.setColor(Colors.Red)
.setDescription(`> Bot bir hata verdi.\n\n> \`${error.stack}\``)
.setTimestamp();
webhook.send({ embeds: [Hata2] });
});
process.on("uncaughtExceptionMonitor", (error) => {
console.log("Error > ", error);
if (!webhook) return;
const Hata3 = new EmbedBuilder()
.setColor(Colors.Red)
.setDescription(`> Bot bir hata verdi.\n\n> \`${error.stack}\``)
.setTimestamp();
webhook.send({ embeds: [Hata3] });
});
process.on("rejectionHandled", (error) => {
console.log(error);
if (!webhook) return;
const Hata4 = new EmbedBuilder()
.setColor(Colors.Red)
.setDescription(`> Bot bir hata verdi.\n\n> \`${error.stack}\``)
.setTimestamp();
webhook.send({ embeds: [Hata4] });
});
client.on("interactionCreate", async (interaction) => {
if (interaction.customId == "pasteoluşturmaform") {
await pasteEkle(client, interaction);
}
});
client.on("ready", () => {
(async () => {
require("./dashboard/index")(client);
const checkWatch = require("./handlers/watchbot/watchBots.js");
let botlar = (await db.fetch("botlar")) || [];
setInterval(async () => {
botlar = await db.fetch("botlar");
}, 1 * 1000 * 60);
setInterval(async () => {
if (botlar.length > 0) {
try {
await checkWatch(botlar, client);
} catch (err) {
console.error(
`Bir hata oluştu. Bot yeniden başlatılıyor...\n\n\n` + err
);
process.exit(1);
}
}
}, 5 * 1000);
})();
});
client.login(token);