/[sudobot]/trunk/src/services/AFKEngine.ts
ViewVC logotype

Annotation of /trunk/src/services/AFKEngine.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 226 - (hide annotations)
Mon Jul 29 17:29:06 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 2081 byte(s)
refactor: make all services inherit a base class
1 rakin 51 import { CommandInteraction, GuildMember, Message, User } from "discord.js";
2     import DiscordClient from "../client/Client";
3     import MessageEmbed from "../client/MessageEmbed";
4     import { notAFK } from "../commands/utils/AFKCommand";
5 rakin 226 import Service from "../utils/structures/Service";
6 rakin 51
7 rakin 226 export default class AFKEngine extends Service {
8 rakin 51 mention(msg: Message, user: GuildMember, cb: (data: any) => void, msg1?: any) {
9     this.client.db.get('SELECT * FROM afk WHERE user_id = ?', [user.id], (err: any, data: any) => {
10     if (data) {
11     if (msg1 === undefined) {
12     msg.channel!.send({
13     embeds: [
14     new MessageEmbed()
15     .setDescription(`**${user.user.tag}** is AFK right now${data.reason.trim() == '' ? '.' : (' for reason: **' + data.reason.replace(/\*/g, '\\*') + '**')}`)
16     ]
17     });
18     }
19    
20     this.client.db.get('UPDATE afk SET mentions = ? WHERE id = ?', [parseInt(data.mentions) + 1, data.id], (err: any) => {});
21    
22     cb(data);
23     }
24     });
25    
26     }
27    
28     start(msg: Message) {
29 rakin 69 if (msg.author.bot)
30     return;
31    
32 rakin 51 const mention = msg.mentions.members!.first();
33    
34     if (mention) {
35     this.mention(msg, msg.member!, data => {
36     if (msg.author.id === data.user_id) {
37     notAFK(this.client, msg, data);
38     }
39     }, true);
40    
41     msg.mentions.members!.forEach((member) => {
42     this.mention(msg, member, data => {
43     if (msg.author.id === data.user_id) {
44     notAFK(this.client, msg, data);
45     }
46     });
47     });
48     }
49     else {
50     this.client.db.get('SELECT * FROM afk WHERE user_id = ?', [msg.author.id], (err: any, data: any) => {
51     if (data) {
52     notAFK(this.client, msg, data);
53     }
54     });
55     }
56     }
57     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26