-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.js
285 lines (236 loc) · 9.32 KB
/
bot.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
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
const Discord = require("discord.js");
const {prefix, token, admins, guildId} = require("./config.json");
const client = new Discord.Client();
const nodemailer = require("nodemailer");
const sqlite3 = require('sqlite3').verbose();
const DB_PATH = 'kayitlar.db';
const express = require('express');
const app = express();
const fs = require('fs');
const request = require("request");
const cheerio = require("cheerio");
let CronJob = require("cron").CronJob;
client.commands = new Discord.Collection();
const command_files = fs.readdirSync("./commands").filter(file => file.endsWith(".js"));
for (const file of command_files){
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
const voice_files = fs.readdirSync("./commands/voiceCommands").filter(file => file.endsWith(".js"));
for (const file of voice_files){
const command = require(`./commands/voiceCommands/${file}`);
client.commands.set(command.name, command)
}
/////database intro
const DB = new sqlite3.Database(DB_PATH, function(err){
if (err) {
console.log(err)
return
}
console.log('Connected to ' + DB_PATH + ' database.')
});
let dbSchema = "CREATE TABLE IF NOT EXISTS kayit (id int, mail text, numara text, isim text, kod text, secenek text);"
DB.exec(dbSchema, function(err){
if (err) {
console.log(err)
}
});
let dbSchema2 = "CREATE TABLE IF NOT EXISTS leveller (studentId text, studentXp int, studentLevel int, backgroundUrl text);";//to be continued bu gklpVi
DB.exec(dbSchema2, function(err){
if (err) {
console.log(err);
}
});
/////////////////////////////////////
///////mail sistemi< buraya dokunmayalım lütfen
var transporter = nodemailer.createTransport({
service: "gmail",
auth: {
user: "[email protected]",
pass: "botdiscorditu"
}
});
////////////////////////
client.on("ready", () => {
try{
console.log("Ready!");
/////// ÖZEL KATEGORISI KONTROLU ///////
let guild = client.guilds.cache.get(guildId);
let channels = [];
for (let channel of guild.channels.cache.array()){
if (channel.parent){
if ((channel.parent.name.toLowerCase() === "gündem") && (channel.name !== "kanal-açma")){
channels.push(channel);
//console.log(channel.name);
}
}
}
const currentTime = new Date();
const dayLength = 24 * 60 * 60; // seconds
for (const channel of channels){
const diff = (currentTime - channel.createdAt) / 1000;
//console.log(diff / 3600);
if((diff) < (dayLength)){
const date = new Date();
date.setSeconds(date.getSeconds() + (dayLength - diff));
let job = new CronJob(date,function() {
channel.delete();
job.stop();
});
job.start();
} else {
channel.delete();
}
}
} catch (error){
console.error(error);
}
////////////////////////////////////
});
client.on("message", message => {
////Kullanıcı XP verileri işleme başlangıcı
/// resim urlsini yazcaz database'e // beeBot Id
if (message.content.length > 3 && message.author.id !== "759074904137531422"){
const userId = message.author.id;
let sql = "SELECT * FROM leveller WHERE (studentId=?)";
DB.all(sql, [userId.toString()],(err, rows) => {
if (err) {
throw err;
}
if (rows.length === 0){ // kullanıcının database'de verisi yok ise eklenir.
let studentId = message.author.id;
let studentXp = 0;
let studentLevel = 0;
let backgroundUrl = ""; /// url'yi yazcazz
DB.run(`INSERT INTO leveller VALUES( ?, ?, ?, ?)`, [studentId.toString(), studentXp, studentLevel, backgroundUrl], function(err) {
if (err) {
return console.log(err.message);
}
// get the last insert id
console.log(`leveller tablosuna kullanıcı: ${studentId.toString()}, ${this.lastID} satır eklendi.`);
});
}
else { //kullanıcı verisi var ise update etmemiz gerek.
let studentId = message.author.id;
let levelKatsayısı = 200;
let studentXp = rows[0].studentXp;
let studentLevel = rows[0].studentLevel;
let newStudentLevel = studentLevel;
let newStudentXp = studentXp + message.content.length;
while (newStudentXp > newStudentLevel * levelKatsayısı){
newStudentXp -= newStudentLevel * levelKatsayısı;
newStudentLevel++;
}
DB.run("UPDATE leveller SET studentXp = ?, studentLevel = ? WHERE studentId = ?", [newStudentXp, newStudentLevel, studentId.toString()], function(err) {
if (err) {
return console.log(err.message);
}
// get the last insert id
console.log(`leveller tablosu ${studentId.toString()} no'lu kişinin verileri güncellendi (level: ${newStudentLevel}, xp: ${newStudentXp}). ${this.changes}`);
});
}
});
}
////Kullanıcı XP verileri işleme sonu
if (!message.content.startsWith(prefix)){
if (message.channel.name === "hoşgeldiniz" && message.author.id !== "759074904137531422" ){
message.delete();
}
return;
}
const args = message.content
.slice(prefix.length)
.trim()
.split(/ +/);
const commandName = args.shift().toLowerCase();
if (!client.commands.has(commandName)){
message.author.send("Girdiğiniz komut geçersiz.Komutu doğru yazdığınızdan emin olunuz.");
setTimeout(
function(){message.delete()}, 6000
);
return;
}
const command = client.commands.get(commandName);
let adminRole;
if (message.guild !== null){
adminRole = message.guild.roles.cache.get('763319365625970689'); //758939878288261132
}
try {
if (command.guildOnly && message.channel.type === "dm"){
console.log(message.channel);
throw `This command cannot run via direct message.`;
}
if(command.channelOnly){
if (message.channel.type === "dm"){
if(!command.dmAvailable){
throw `Bu komut özel mesaj yoluyla çalışmamaktadır !`;
}
} else {
if(message.channel.name !== command.channel){
throw `Bu komut sunucuda sadece **${command.channel}** kanalında çalışmaktadır !`
}
}
}
if(command.adminOnly && !(message.member.roles.cache.array().includes(adminRole))){
throw `This command is only for admin's usage !`;
}
command.execute(message,DB,args,fs, transporter,prefix,client);
} catch (error) {
console.error(error);
message.reply(error);
}
if(message.channel.type !== "dm"){
if (message.channel.name === "hoşgeldiniz" && message.author.id !== "759074904137531422" ){
message.delete();
} else if (message.channel.name !== "hoşgeldiniz" && message.author.id !== "759074904137531422" ) {
setTimeout(function(){message.delete()}, 6000);
}
}
});
///*/*/site için
// app.use(express.static("public"));
// app.get("/", (request, response) => {
// response.sendFile(__dirname + "/views/index.html");
// console.log(Date.now() + " Ping alındı aktivite devam ediyor.");
// //response.render(__dirname+'/index.html')
// });
// app.listen(process.env.PORT);
// setInterval(() => {
// http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`);
// console.log(Date.now() + " Ping alındı aktivite devam ediyor.");
// }, 10000);
///*/*/*/
client.on("guildMemberAdd", member => {
let user = member;
let temp = "ITU Student sunucumuza hoş geldiniz. <@" + user.id +">\nÜye olmak için:\nHoşgeldiniz kanalında !üyeol komutunu kullanarak üye olabilirsiniz. Bu komutu kullanırken yanına sırasıyla itümail, 9 haneli öğrenci numaranız, isim soy isminizi ve eğitim tercihinizi (lisans için L, yüksek lisans için YL, hazırlık için H) yazmanızı sizden rica ediyoruz. \nİTÜMailinize gelen doğrulama kodunu !onayla komutundan sonra yazarak discord serverımıza katılabilirsiniz. \n Uyarı: İtü mailinizi ve öğrenci numaranızı yanlış girmeniz yetki hataları almanıza sebep olabilir (Bölümünüz farklı atanabilir vs.). Mailinize doğrulama kodu gelmesi yaklaşık 2 dakika sürmektedir. \nÖrnek: **!üyeol kullanıcıadı@itu.edu.tr 123456789 İsim Soyisim L** \n**!onayla 123456**";
user.send(temp);
let studentId = member.id;
let studentXp = 0;
let studentLevel = 0;
let backgroundUrl = ""; /// url'yi yazcazz
DB.run(`INSERT INTO leveller VALUES( ?, ?, ?, ?)`, [studentId.toString(), studentXp, studentLevel, backgroundUrl], function(err) {
if (err) {
return console.log(err.message);
}
// get the last insert id
console.log(`leveller tablosuna ${this.lastID} satır eklendi.`);
});
});
client.on("guildMemberRemove", member => {
let user = member.user;
DB.run("DELETE FROM kayit WHERE id = ?", [user.id], function(err) {
if (err) {
return console.log(err.message);
}
// get the last insert id
console.log(`Satır silme işlemi başarılı ${this.lastID}`);
});
DB.run("DELETE FROM leveller WHERE studentId = ?", [user.id.toString()], function(err) {
if (err) {
return console.log(err.message);
}
// get the last insert id
console.log(`Satır silme işlemi başarılı ${this.lastID}`);
});
})
client.login(token);