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); |
21 |
rakin |
5 |
|
22 |
rakin |
49 |
console.log(user); |
23 |
rakin |
5 |
|
24 |
rakin |
49 |
if (!user) { |
25 |
|
|
throw new Error('Invalid User'); |
26 |
rakin |
5 |
} |
27 |
|
|
} |
28 |
rakin |
49 |
catch (e) { |
29 |
|
|
console.log(e); |
30 |
rakin |
5 |
|
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 |
49 |
let reason; |
43 |
|
|
|
44 |
|
|
if (typeof cm.args[1] !== 'undefined') { |
45 |
|
|
let args = [...cm.args]; |
46 |
|
|
args.shift(); |
47 |
|
|
|
48 |
|
|
await (reason = args.join(' ')); |
49 |
|
|
} |
50 |
|
|
|
51 |
rakin |
5 |
this.bean(user, reason, msg); |
52 |
|
|
|
53 |
|
|
await msg.reply({ |
54 |
|
|
embeds: [ |
55 |
|
|
new MessageEmbed() |
56 |
|
|
.setDescription(`The user ${user.user.tag} has been beaned`) |
57 |
|
|
.addFields([ |
58 |
|
|
{ |
59 |
|
|
name: "Reason", |
60 |
|
|
value: typeof reason === 'undefined' ? '*No reason provided*' : reason |
61 |
|
|
} |
62 |
|
|
]) |
63 |
|
|
] |
64 |
|
|
}); |
65 |
|
|
}, |
66 |
|
|
async bean(user, reason, msg) { |
67 |
rakin |
37 |
await History.create(user.id, msg.guild, 'bean', msg.author.id, typeof reason === 'undefined' ? null : reason, async (data2) => { |
68 |
rakin |
25 |
await user.send({ |
69 |
|
|
embeds: [ |
70 |
|
|
new MessageEmbed() |
71 |
|
|
.setAuthor({ |
72 |
|
|
iconURL: msg.guild.iconURL(), |
73 |
|
|
name: `\tYou have been beaned in ${msg.guild.name}` |
74 |
|
|
}) |
75 |
|
|
.addFields([ |
76 |
|
|
{ |
77 |
|
|
name: "Reason", |
78 |
|
|
value: typeof reason === 'undefined' ? '*No reason provided*' : reason |
79 |
|
|
} |
80 |
|
|
]) |
81 |
|
|
] |
82 |
|
|
}); |
83 |
|
|
|
84 |
|
|
await app.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.author); |
85 |
rakin |
5 |
}); |
86 |
|
|
} |
87 |
|
|
}; |