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

Annotation of /trunk/commands/kick.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: 2663 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 rakin 49 try {
19     var user = await getUser(cm.args[0], msg);
20 rakin 5
21 rakin 49 console.log(user);
22 rakin 5
23 rakin 49 if (!user) {
24     throw new Error('Invalid User');
25 rakin 5 }
26     }
27 rakin 49 catch (e) {
28     console.log(e);
29 rakin 5
30     await msg.reply({
31     embeds: [
32     new MessageEmbed()
33     .setColor('#f14a60')
34     .setDescription(`Invalid user given.`)
35     ]
36     });
37    
38     return;
39     }
40    
41 rakin 49 let reason = {};
42    
43     if (typeof cm.args[1] !== 'undefined') {
44     let args = [...cm.args];
45     args.shift();
46    
47     await (reason.reason = args.join(' '));
48     }
49    
50 rakin 5 try {
51     if (typeof user.kickable === 'boolean' && user.kickable === false) {
52     await msg.reply({
53     embeds: [
54     new MessageEmbed()
55     .setColor('#f14a60')
56     .setDescription(`This user isn't kickable.`)
57     ]
58     });
59    
60     return;
61     }
62    
63 rakin 25
64 rakin 49 await History.create(user.id, msg.guild, 'kick', msg.author.id, typeof reason.reason === 'undefined' ? null : reason.reason, async (data2) => {
65 rakin 25 await user.kick(reason);
66     });
67 rakin 5 }
68     catch(e) {
69     console.log(e);
70    
71     await msg.reply({
72     embeds: [
73     new MessageEmbed()
74     .setColor('#f14a60')
75     .setDescription(`I don't have enough permission to kick this user.`)
76     ]
77     });
78    
79     return;
80     }
81    
82     await msg.reply({
83     embeds: [
84     new MessageEmbed()
85     .setDescription(`The user ${user.user.tag} has been kicked`)
86     .addFields([
87     {
88     name: "Reason",
89     value: typeof reason.reason === 'undefined' ? '*No reason provided*' : reason.reason
90     }
91     ])
92     ]
93     });
94     }
95     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26