/[sudobot]/trunk/commands/warn.js
ViewVC logotype

Contents of /trunk/commands/warn.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25 - (show annotations)
Mon Jul 29 17:28:16 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 4093 byte(s)
More improvements
1 const History = require("../src/History");
2 const MessageEmbed = require("../src/MessageEmbed");
3
4 module.exports = {
5 async handle(msg, cm) {
6 if (typeof cm.args[0] === 'undefined') {
7 await msg.reply({
8 embeds: [
9 new MessageEmbed()
10 .setColor('#f14a60')
11 .setDescription(`This command requires at least one argument.`)
12 ]
13 });
14
15 return;
16 }
17
18 var user = await msg.mentions.members.first();
19 let reason;
20
21 if (typeof cm.args[1] !== 'undefined') {
22 let args = [...cm.args];
23 args.shift();
24
25 await (reason = args.join(' '));
26 }
27
28 if (typeof user !== 'object') {
29 try {
30 user = await msg.guild.members.fetch(cm.args[0]);
31 }
32 catch(e) {
33
34 }
35 }
36
37 if (typeof user !== 'object') {
38 await msg.reply({
39 embeds: [
40 new MessageEmbed()
41 .setColor('#f14a60')
42 .setDescription(`Invalid user given.`)
43 ]
44 });
45
46 return;
47 }
48
49 await this.warn(user, reason, msg, async (data) => {
50 await msg.reply({
51 embeds: [
52 new MessageEmbed()
53 .setDescription(`The user ${user.user.tag} has been warned`)
54 .addFields([
55 {
56 name: "Reason",
57 value: typeof reason === 'undefined' ? '*No reason provided*' : reason
58 },
59 {
60 name: "Strike",
61 value: data.count + ' time(s)'
62 },
63 {
64 name: "ID",
65 value: data.id + ''
66 }
67 ])
68 ]
69 });
70
71 console.log(data);
72 });
73 },
74 async warn(user, reason, msg, callback, warned_by1) {
75 await app.db.get('INSERT INTO warnings(user_id, guild_id, strike, reason, warned_by) VALUES(?, ?, 1, ?, ?)', [user.id, msg.guild.id, reason === undefined ? '\c\b\c' : reason, warned_by1 === undefined ? msg.author.id : warned_by1], async (err) => {
76 if (err) {
77 console.log(err);
78 }
79
80 await app.db.get('SELECT id, user_id, guild_id, COUNT(*) AS count FROM warnings WHERE user_id = ? AND guild_id = ? ORDER BY id DESC LIMIT 0, 1', [user.id, msg.guild.id], async (err, data) => {
81 if (err) {
82 console.log(err);
83 }
84
85 console.log('fr');
86
87 await app.logger.logWarn(msg, user, warned_by1 === undefined ? msg.author : warned_by1, typeof reason === 'undefined' ? '*No reason provided*' : reason);
88
89 await History.create(user.id, msg.guild, 'warn', warned_by1 === undefined ? msg.author.id : warned_by1.id, async (data2) => {
90 await user.send({
91 embeds: [
92 new MessageEmbed()
93 .setAuthor({
94 iconURL: msg.guild.iconURL(),
95 name: `\tYou have been warned in ${msg.guild.name}`
96 })
97 .addFields([
98 {
99 name: "Reason",
100 value: typeof reason === 'undefined' ? '*No reason provided*' : reason
101 },
102 {
103 name: "Strike",
104 value: data.count + ' time(s)'
105 }
106 ])
107 ]
108 });
109
110 callback(data);
111 });
112 });
113 });
114 }
115 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26