-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.js
560 lines (547 loc) · 20.1 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
require("dotenv").config({ path: ".env" });
const chalk = require("chalk");
const Sequelize = require("sequelize");
const { QueryTypes } = require("sequelize");
const axios = require("axios").default;
const Twitch = require("dank-twitch-irc");
const humanize = require("humanize-duration");
const { ChatClient } = require("dank-twitch-irc");
const shortHumanize = humanize.humanizer({
language: "shortEn",
languages: {
shortEn: {
y: () => "y",
mo: () => "mo",
w: () => "w",
d: () => "d",
h: () => "h",
m: () => "m",
s: () => "s",
ms: () => "ms",
},
},
});
const sequelize = new Sequelize(
process.env.DATABASE,
process.env.USERNAME,
process.env.PASSWORD,
{
host: process.env.SERVERNAME,
dialect: "mysql",
logging: false,
},
);
(async () => {
await sequelize
.authenticate()
.then(async () => {
console.log(chalk.cyan("Connection has been established successfully."));
})
.catch((error) =>
console.error(chalk.red("Unable to connect to the database: ", error)),
);
})();
const client = new ChatClient({
username: process.env.NICKNAME,
password: process.env.TOKEN,
rateLimits: "default",
});
client.on("ready", () =>
console.log(chalk.green("Twitch client is ready to connect.")),
);
client.on("close", (error) => {
console.error(chalk.red(`Twitch client was closed | ${error}`));
});
client.on("error", (error) => {
if (error instanceof Twitch.LoginError) {
console.error(
chalk.yellow(`"[LOGIN]" || Error logging in to Twitch: ${error}`),
);
}
if (error instanceof Twitch.JoinError) {
console.error(
chalk.yellow(
`"[JOIN]" || Error joining channel ${error.failedChannelName}: ${error}`,
),
);
}
if (error instanceof Twitch.SayError) {
console.error(
chalk.yellow(
`"[SAY]" || Error sending message in ${error.failedChannelName}: ${error.cause} | ${error}`,
),
);
}
console.error(chalk.yellow(`"[ERROR]" || Error occurred in DTI: ${error}`));
});
const channels = [process.env.DEFAULTCHANNEL];
(async () => {
await sequelize
.query(
`CREATE TABLE IF NOT EXISTS \`Channels\` (
\`ChannelID\` VARCHAR(20) NOT NULL COLLATE 'utf8mb4_general_ci',
\`Name\` VARCHAR(30) NOT NULL COLLATE 'utf8mb4_general_ci',
\`Timestamp\` TIMESTAMP NULL DEFAULT current_timestamp(),
\`Availiable\` TINYINT(4) NOT NULL DEFAULT '1',
PRIMARY KEY (\`ChannelID\`) USING BTREE)
COMMENT='List of logging channels'
COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;`,
{
type: QueryTypes.RAW,
},
)
.catch((error) => {
console.error(
chalk.red(`Error while creating channels table | ${error}.`),
);
})
.then(async () => {
console.log(chalk.cyan("Successfully created channels table."));
await sequelize
.query(
"SELECT ChannelID FROM Channels WHERE Availiable = 1 AND Name != 'trefis'",
)
.then(async (data) => {
data[0].forEach(async (channel) => {
await axios({
method: "get",
url: `https://api.twitch.tv/helix/users?id=${channel.ChannelID}`,
responseType: "json",
headers: {
"Client-Id": process.env.CLIENTID,
Authorization: process.env.BEARER,
},
}).then((data) => {
const channelName = data.data.data[0].login;
channels.push(channelName);
});
});
setTimeout(() => {
client
.joinAll(channels)
.catch((error) => {
console.error(chalk.red("Timed out while connecting: ", error));
})
.then(() => {
console.log(
chalk.magenta(
"Successfully connected to the twitch servers.",
),
);
})
.then(() => {
console.log(chalk.blue("Success.. 👌"));
});
client.connect();
}, 1000);
})
.catch((error) => {
console.error(
chalk.red(`Error while selecting a list of channels: ${error}`),
);
});
});
})();
const prefix = process.env.PREFIX;
const main = process.env.MAIN;
const admins = process.env.ADMINS.split(" ");
const botsToIgnore = [
"fossabot",
"feelsokayegbot",
"supibot",
"streamelements",
"pwgud",
"nightbot",
"snusbot",
];
let messageCount = 0;
client.on("CLEARCHAT", async (state) => {
try {
if (!state.wasChatCleared()) {
if (state.isTimeout()) {
await sequelize
.query(
`INSERT INTO
ttvUser_${state.ircTags["room-id"]} (SenderID, Name, Message, Emotes, Color, Badges)
VALUES (?, ?, ?, ?, ?, ?)`,
{
replacements: [
state.ircTags["target-user-id"],
state.targetUsername,
`${state.targetUsername} has been timed out for ${state.banDuration} seconds`,
null,
null,
null,
],
type: QueryTypes.INSERT,
},
)
.catch(() => {
console.warn(
chalk.yellow(
`[LOGGING] Error while logging mute from channel: ${state.ircTags["room-id"]}`,
),
);
});
}
if (state.isPermaban()) {
await sequelize
.query(
`INSERT INTO
ttvUser_${state.ircTags["room-id"]} (SenderID, Name, Message, Emotes, Color, Badges)
VALUES (?, ?, ?, ?, ?, ?)`,
{
replacements: [
state.ircTags["target-user-id"],
state.targetUsername,
`${state.targetUsername} has been banned`,
null,
null,
null,
],
type: QueryTypes.INSERT,
},
)
.catch(() => {
console.warn(
chalk.yellow(
`[LOGGING] Error while logging ban from channel: ${state.ircTags["room-id"]}`,
),
);
});
}
}
} catch (error) {
console.error(
chalk.red(
`[LOGGING] Error while logging delete from channel: ${channelID.data.data[0].id}, error: ${error}`,
),
);
}
});
client.on("CLEARMSG", async (msg) => {
try {
const channelID = await axios({
method: "get",
url: `https://api.twitch.tv/helix/users?login=${msg.channelName}`,
responseType: "json",
headers: {
"Client-Id": process.env.CLIENTID,
Authorization: process.env.BEARER,
},
});
const senderID = await axios({
method: "get",
url: `https://api.twitch.tv/helix/users?login=${msg.ircTags.login}`,
responseType: "json",
headers: {
"Client-Id": process.env.CLIENTID,
Authorization: process.env.BEARER,
},
});
if (channelID.data !== undefined && senderID.data !== undefined) {
await sequelize
.query(
`UPDATE ttvUser_${channelID.data.data[0].id} SET isDeleted = 1
WHERE Message = ? AND SenderID = ?`,
{
replacements: [msg.targetMessageContent, senderID.data.data[0].id],
type: QueryTypes.UPDATE,
},
)
.catch(() => {
console.warn(
chalk.yellow(
`[LOGGING] Error while logging delete from channel: ${channelID.data.data[0].id}`,
),
);
});
}
} catch (error) {
console.error(
chalk.red(
`[LOGGING] Error while logging delete from channel: ${channelID.data.data[0].id}, error: ${error}`,
),
);
}
});
client.on("PRIVMSG", async (message) => {
if (!botsToIgnore.includes(message.senderUsername.toLowerCase())) {
messageCount = messageCount + 1;
await sequelize
.query(
`INSERT INTO
ttvUser_${message.channelID} (SenderID, Name, Message, Emotes, Color, Badges)
VALUES (?, ?, ?, ?, ?, ?)`,
{
replacements: [
message.senderUserID,
message.displayName,
message.messageText,
message.emotes.length === 0 ? null : JSON.stringify(message.emotes),
message.colorRaw,
message.badges.length === 0 ? null : JSON.stringify(message.badges),
],
type: QueryTypes.INSERT,
},
)
.catch(() => {
console.warn(
chalk.yellow(
`[LOGGING] Error while logging from channel: ${message.channelID}, message: ${message.messageText}`,
),
);
});
}
if (message.messageText.charAt(0) === prefix) {
const args = message.messageText.substring(1).split(" ");
if (args[0] === main) {
switch (args[1]) {
case "join": {
if (admins.includes(message.senderUsername)) {
if (!args[2]) {
client.say(
message.channelName,
`@${message.displayName}, You did not specify the name of the channel`,
);
} else {
let channels = args[2].includes(",")
? args[2].split(",").toLowerCase()
: [args[2].toLowerCase()];
channels.map(async (channel) => {
await axios({
method: "get",
url: `https://api.twitch.tv/helix/users?login=${channel}`,
responseType: "json",
headers: {
"Client-Id": process.env.CLIENTID,
Authorization: process.env.BEARER,
},
}).then(async (data) => {
if (data.data !== null && data.data !== undefined) {
const channelId = data.data.data[0].id;
await sequelize
.query(`SELECT * FROM Channels WHERE ChannelID = ?`, {
replacements: [channelId],
type: QueryTypes.SELECT,
})
.then(async (data) => {
if (data.length == 0) {
await sequelize
.query(
`INSERT INTO Channels (ChannelID, Name) VALUES (?, ?)`,
{
replacements: [channelId, channel],
type: QueryTypes.INSERT,
},
)
.then(async () => {
await sequelize
.query(
`CREATE TABLE \`ttvUser_${channelId}\` (
\`ID\` INT(11) NOT NULL AUTO_INCREMENT,
\`SenderID\` VARCHAR(10) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
\`Name\` VARCHAR(30) NOT NULL DEFAULT 'No name provided' COLLATE 'utf8mb4_general_ci',
\`Message\` TEXT NULL COLLATE 'utf8mb4_general_ci',
\`Emotes\` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
\`Color\` VARCHAR(7) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
\`Badges\` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
\`Timestamp\` TIMESTAMP NULL DEFAULT current_timestamp(),
\`isDeleted\` TINYINT(4) NOT NULL DEFAULT '0',
PRIMARY KEY (\`ID\`) USING BTREE)
COMMENT='Logs from ${channel} channel.'
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB;`,
{
type: QueryTypes.RAW,
},
)
.then(() => {
client.join(channel);
client.say(
message.channelName,
`@${message.displayName}, Successfully joined ${channel} Okayeg 👍`,
);
})
.catch((error) => {
console.error(
chalk.red(
`Error while creating table for the channel ${channel}: ${error}`,
),
);
client.say(
message.channelName,
`@${message.displayName}, Error while executing FeelsDankMan`,
);
});
})
.catch((error) => {
console.error(
chalk.red(
`Error while inserting channel with ID = ${channelId}: ${error}`,
),
);
client.say(
message.channelName,
`@${message.displayName}, Error while executing FeelsDankMan`,
);
});
} else {
if (data[0].Availiable == 0) {
await sequelize
.query(
`UPDATE Channels SET Availiable = 1 WHERE ChannelID = ?`,
{
replacements: [channelId],
type: QueryTypes.UPDATE,
},
)
.then(() => {
client
.say(
message.channelName,
`@${message.displayName}, Successfully joined ${channel} (after leaving) Okayeg 👍`,
)
.catch((error) => {
console.error(
chalk.red(
`Error while updating channel with ID = ${channelId}: ${error}`,
),
);
client.say(
message.channelName,
`@${message.displayName}, Error while executing FeelsDankMan`,
);
});
});
} else {
client.say(
message.channelName,
`@${message.displayName}, Channel ${channel} is already in logs FeelsDankMan`,
);
}
}
})
.catch((error) => {
console.error(
chalk.red(
`Error while selecting channel with ID = ${channelId}: ${error}`,
),
);
client.say(
message.channelName,
`@${message.displayName}, Error while executing FeelsDankMan`,
);
});
} else
client.say(
message.channelName,
`@${message.displayName}, User: ${channel} does not exists`,
);
});
});
}
break;
} else {
client.say(
message.channelName,
`@${message.displayName}, So you call these things "chips"? Instead of crispity crunchy munchie crackerjack snackernibbler snap crack n pop westpool chestershire queens lovely jubily delights? Thats rather a bit cringe, innit bruv.`,
);
}
}
case "leave": {
if (admins.includes(message.senderUsername)) {
if (!args[2]) {
client.say(
message.channelName,
`@${message.displayName}, You did not specify the name of the channel`,
);
} else {
let channels = args[2].includes(",")
? args[2].split(",")
: [args[2]];
channels.map(async (channel) => {
await axios({
method: "get",
url: `https://api.twitch.tv/helix/users?login=${channel}`,
responseType: "json",
headers: {
"Client-Id": process.env.CLIENTID,
Authorization: process.env.BEARER,
},
}).then(async (data) => {
if (data.data !== null) {
const channelId = data.data.data[0].id;
await sequelize
.query(`SELECT * FROM Channels WHERE ChannelID = ?`, {
replacements: [channelId],
type: QueryTypes.SELECT,
})
.then(async (data) => {
if (data.toString() !== ",") {
await sequelize
.query(
`UPDATE Channels SET Availiable = 0 WHERE ChannelID = ?`,
{
replacements: [channelId],
type: QueryTypes.UPDATE,
},
)
.then(() => {
client.part(channel);
client.say(
message.channelName,
`@${message.displayName}, Successfully parted from ${channel} Okayeg 👍`,
);
})
.catch((error) => {
console.error(
chalk.red(
`Error while creating table for the channel ${channel}: ${error}`,
),
);
client.say(
message.channelName,
`@${message.displayName}, Error while executing FeelsDankMan`,
);
});
} else {
client.say(
message.channelName,
`@${message.displayName}, Specified channel does not exists in the datatbase FeelsDankMan`,
);
}
});
} else
client.say(
message.channelName,
`@${message.displayName}, User: ${channel} does not exists`,
);
});
});
}
} else {
client.say(
message.channelName,
`@${message.displayName}, User: ${channel} does not exists`,
);
}
}
case "ping": {
const ms = process.uptime() * 1000;
const short = shortHumanize(ms, {
units: ["w", "d", "h", "m", "s"],
largest: 4,
round: true,
conjunction: "",
spacer: "",
});
client.say(
message.channelName,
`@${message.displayName}, Pong! zoilFloof Uptime: ${short}, Logged: ${messageCount} messages.`,
);
}
}
}
}
});