1 |
rakin |
26 |
const MessageEmbed = require("../src/MessageEmbed"); |
2 |
|
|
|
3 |
|
|
module.exports = { |
4 |
|
|
async handle(msg, cm) { |
5 |
|
|
app.db.get("SELECT * FROM afk WHERE user_id = ?", [msg.author.id], async (err, data) => { |
6 |
|
|
if (data) { |
7 |
|
|
this.notAFK(msg, data); |
8 |
|
|
} |
9 |
|
|
else { |
10 |
|
|
this.AFK(msg); |
11 |
|
|
} |
12 |
|
|
}); |
13 |
|
|
}, |
14 |
|
|
async notAFK(msg, data) { |
15 |
|
|
app.db.get('DELETE FROM afk WHERE user_id = ?', [msg.author.id], async (err) => { |
16 |
|
|
await msg.channel.send({ |
17 |
|
|
embeds: [ |
18 |
|
|
new MessageEmbed() |
19 |
|
|
.setDescription('You\'re no longer AFK. You had **' + data.mentions + '** mentions in the servers where SudoBot is joined.') |
20 |
|
|
] |
21 |
|
|
}); |
22 |
|
|
}); |
23 |
|
|
}, |
24 |
|
|
async AFK(msg) { |
25 |
|
|
app.db.get('INSERT INTO afk(user_id, date, mentions) VALUES(?, ?, ?)', [msg.author.id, new Date().toISOString(), '0'], async (err) => { |
26 |
|
|
await msg.channel.send({ |
27 |
|
|
embeds: [ |
28 |
|
|
new MessageEmbed() |
29 |
|
|
.setDescription('Your status has been updated to AFK.') |
30 |
|
|
] |
31 |
|
|
}); |
32 |
|
|
}); |
33 |
|
|
} |
34 |
|
|
}; |