1 |
const History = require("../src/History"); |
2 |
const MessageEmbed = require("../src/MessageEmbed"); |
3 |
const { getUser } = require("../src/UserInput"); |
4 |
|
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 |
try { |
19 |
var user = await getUser(cm.args[0], msg); |
20 |
|
21 |
console.log(user); |
22 |
|
23 |
if (!user) { |
24 |
throw new Error('Invalid User'); |
25 |
} |
26 |
} |
27 |
catch (e) { |
28 |
console.log(e); |
29 |
|
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 |
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 |
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 |
|
64 |
await History.create(user.id, msg.guild, 'kick', msg.author.id, typeof reason.reason === 'undefined' ? null : reason.reason, async (data2) => { |
65 |
await user.kick(reason); |
66 |
}); |
67 |
} |
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 |
}; |