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

Annotation of /trunk/commands/ban.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (hide annotations)
Mon Jul 29 17:28:21 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 3880 byte(s)
Release version 1.10.0

* Added -queues command to list all queued jobs
* Added -joke command to fetch random jokes
* Added support of user tags in some user-based commands
1 rakin 25 const History = require("../src/History");
2 rakin 5 const MessageEmbed = require("../src/MessageEmbed");
3 rakin 49 const { getUser } = require("../src/UserInput");
4 rakin 5
5     module.exports = {
6     async handle(msg, cm) {
7     if (typeof cm.args[0] === 'undefined') {
8     await msg.reply({
9     embeds: [
10     new MessageEmbed()
11     .setColor('#f14a60')
12     .setDescription(`This command requires at least one argument.`)
13     ]
14     });
15    
16     return;
17     }
18    
19 rakin 49 try {
20     var user = await getUser(cm.args[0], msg, false);
21    
22     console.log(user);
23    
24     if (!user) {
25     throw new Error('Invalid User');
26     }
27     }
28     catch (e) {
29     console.log(e);
30    
31     await msg.reply({
32     embeds: [
33     new MessageEmbed()
34     .setColor('#f14a60')
35     .setDescription(`Invalid user given.`)
36     ]
37     });
38    
39     return;
40     }
41    
42 rakin 37 const argFirst = cm.args.slice(0, 3);
43 rakin 5
44 rakin 37 const banOptions = {};
45 rakin 5
46 rakin 37 console.log(argFirst);
47 rakin 5
48 rakin 37 const pos = argFirst.indexOf('-d');
49     let length = argFirst.length;
50    
51     if (pos !== -1) {
52     const days = argFirst[pos + 1];
53 rakin 5
54 rakin 37 if (days === undefined || !parseInt(days)) {
55     await msg.reply({
56     embeds: [
57     new MessageEmbed()
58     .setColor('#f14a60')
59     .setDescription(`Option \`-d\` requires a valid numeric argument.`)
60     ]
61     });
62    
63     return;
64     }
65    
66     if (days < 0 || days > 7) {
67     await msg.reply({
68     embeds: [
69     new MessageEmbed()
70     .setColor('#f14a60')
71     .setDescription(`Days must be in range 0-7.`)
72     ]
73     });
74    
75     return;
76     }
77    
78     banOptions.days = parseInt(days);
79     argFirst.splice(1, 2);
80 rakin 5 }
81 rakin 37 else {
82     length = 1;
83     }
84 rakin 5
85 rakin 37 const args1 = [...cm.args];
86     args1.splice(0, length);
87     const reason = args1.join(' ');
88    
89     if (reason.trim() !== '') {
90     banOptions.reason = reason;
91     }
92    
93     console.log(argFirst, banOptions);
94    
95 rakin 5 try {
96     if (typeof user.bannable === 'boolean' && user.bannable === false) {
97     await msg.reply({
98     embeds: [
99     new MessageEmbed()
100     .setColor('#f14a60')
101     .setDescription(`This user isn't bannable.`)
102     ]
103     });
104    
105     return;
106     }
107    
108 rakin 37 await History.create(user.id, msg.guild, 'ban', msg.author.id, typeof banOptions.reason === 'undefined' ? null : banOptions.reason, async (data2) => {
109     await msg.guild.bans.create(user.id, banOptions);
110 rakin 25 });
111 rakin 5 }
112     catch(e) {
113     console.log(e);
114    
115     await msg.reply({
116     embeds: [
117     new MessageEmbed()
118     .setColor('#f14a60')
119     .setDescription(`I don't have enough permission to ban this user.`)
120     ]
121     });
122    
123     return;
124     }
125    
126     await msg.reply({
127     embeds: [
128     new MessageEmbed()
129 rakin 25 .setDescription(`The user ${user.tag} has been banned`)
130 rakin 5 .addFields([
131     {
132     name: "Reason",
133 rakin 37 value: typeof banOptions.reason === 'undefined' ? '*No reason provided*' : banOptions.reason
134 rakin 5 }
135     ])
136     ]
137     });
138     }
139     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26