/[sudobot]/trunk/src/commands/moderation/ShotCommand.ts
ViewVC logotype

Diff of /trunk/src/commands/moderation/ShotCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/commands/moderation/BeanCommand.ts revision 125 by rakin, Mon Jul 29 17:28:41 2024 UTC trunk/src/commands/moderation/ShotCommand.ts revision 363 by rakin, Mon Jul 29 17:29:47 2024 UTC
# Line 1  Line 1 
1  import { BanOptions, CommandInteraction, ContextMenuInteraction, GuildMember, Interaction, Message, User } from 'discord.js';  import { CommandInteraction, ContextMenuInteraction, GuildMember, Message, User } from 'discord.js';
2  import BaseCommand from '../../utils/structures/BaseCommand';  import BaseCommand from '../../utils/structures/BaseCommand';
3  import DiscordClient from '../../client/Client';  import DiscordClient from '../../client/Client';
4  import CommandOptions from '../../types/CommandOptions';  import CommandOptions from '../../types/CommandOptions';
5  import InteractionOptions from '../../types/InteractionOptions';  import InteractionOptions from '../../types/InteractionOptions';
6  import MessageEmbed from '../../client/MessageEmbed';  import MessageEmbed from '../../client/MessageEmbed';
 import getUser from '../../utils/getUser';  
7  import getMember from '../../utils/getMember';  import getMember from '../../utils/getMember';
 import History from '../../automod/History';  
8  import Punishment from '../../models/Punishment';  import Punishment from '../../models/Punishment';
9  import PunishmentType from '../../types/PunishmentType';  import PunishmentType from '../../types/PunishmentType';
10    
11  export default class BeanCommand extends BaseCommand {  export default class ShotCommand extends BaseCommand {
12      supportsInteractions: boolean = true;      supportsInteractions: boolean = true;
13      supportsContextMenu: boolean = true;      supportsContextMenu: boolean = true;
14    
15      constructor() {      constructor() {
16          super('bean', 'moderation', ['Bean']);          super('shot', 'moderation', ['Shot']);
17      }      }
18    
19      async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) {      async run(client: DiscordClient, msg: Message | CommandInteraction | ContextMenuInteraction, options: CommandOptions | InteractionOptions) {
# Line 32  export default class BeanCommand extends Line 30  export default class BeanCommand extends
30          }          }
31    
32          let user: GuildMember;          let user: GuildMember;
33            let dm = true;
34          let reason: string | undefined;          let reason: string | undefined;
35            
36          if (options.isInteraction) {          if (options.isInteraction) {
37              user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member'));              user = await <GuildMember> (msg instanceof ContextMenuInteraction ? options.options.getMember('user') : options.options.getMember('member'));
38    
# Line 84  export default class BeanCommand extends Line 83  export default class BeanCommand extends
83              }              }
84          }          }
85    
86            const anonymous = options.isInteraction ? options.options.getBoolean('anonymous') ?? false : false;
87    
88          try {                      try {            
89              await Punishment.create({              await Punishment.create({
90                  type: PunishmentType.BEAN,                  type: PunishmentType.SHOT,
91                  user_id: user.id,                  user_id: user.id,
92                  guild_id: msg.guild!.id,                  guild_id: msg.guild!.id,
93                  mod_id: msg.member!.user.id,                  mod_id: msg.member!.user.id,
94                  mod_tag: (msg.member!.user as User).tag,                  mod_tag: (msg.member!.user as User).tag,
95                  reason                  reason,
96                    createdAt: new Date()
97              });              });
98    
99              await History.create(user.id, msg.guild!, 'bean', msg.member!.user.id, typeof reason === 'undefined' ? null : reason);              // await History.create(user.id, msg.guild!, 'bean', msg.member!.user.id, typeof reason === 'undefined' ? null : reason);
100    
101              await user.send({              try {
102                  embeds: [                  await user.send({
103                      new MessageEmbed()                      embeds: [
104                      .setAuthor({                          new MessageEmbed()
105                          iconURL: <string> msg.guild!.iconURL(),                              .setAuthor({
106                          name: `\tYou have been beaned in ${msg.guild!.name}`                                  iconURL: <string> msg.guild!.iconURL(),
107                      })                                  name: `\tYou got a shot in ${msg.guild!.name}`
108                      .addFields([                              })
109                          {                              .addFields([
110                              name: "Reason",                                  {
111                              value: typeof reason === 'undefined' ? '*No reason provided*' : reason                                      name: "Reason",
112                          }                                      value: typeof reason === 'undefined' ? '*No reason provided*' : reason
113                      ])                                  },
114                  ]                                  ...(!anonymous ? [{
115              });                                      name: "💉 Doctor",
116                                        value: `${(msg.member?.user as User).tag}`
117                                    }] : [])
118                                ])
119                        ]
120                    });
121                }
122                catch (e) {
123                    console.log(e);
124                    dm = false;
125                }
126    
127              await client.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.member!.user as User);              // await client.logger.logBeaned(user, typeof reason === 'undefined' ? '*No reason provided*' : reason, msg.member!.user as User);
128          }          }
129          catch (e) {          catch (e) {
130              console.log(e);                          console.log(e);            
# Line 125  export default class BeanCommand extends Line 137  export default class BeanCommand extends
137                      name: user.user.tag,                      name: user.user.tag,
138                      iconURL: user.user.displayAvatarURL(),                      iconURL: user.user.displayAvatarURL(),
139                  })                  })
140                  .setDescription(user.user.tag + " has been beaned.")                  .setDescription(user.user.tag + " got a shot." + (!dm ? "\nThey have DMs disabled. They will not know that they got a shot." : ''))
141                  .addFields([                  .addFields([
142                      {                      {
143                          name: "Beaned by",                          name: "💉 Doctor",
144                          value: (msg.member!.user as User).tag                          value: (msg.member!.user as User).tag
145                      },                      },
146                      {                      {
# Line 139  export default class BeanCommand extends Line 151  export default class BeanCommand extends
151              ]              ]
152          });          });
153      }      }
 }  
154    }

Legend:
Removed from v.125  
changed lines
  Added in v.363

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26