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

Contents of /trunk/commands/bean.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (show annotations)
Mon Jul 29 17:28:21 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 2571 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 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
19 try {
20 var user = await getUser(cm.args[0], msg);
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 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 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 await History.create(user.id, msg.guild, 'bean', msg.author.id, typeof reason === 'undefined' ? null : reason, async (data2) => {
68 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 });
86 }
87 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26