1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { AttachmentPayload, Message, PermissionsBitField, SlashCommandBuilder } from "discord.js"; |
21 |
|
|
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
|
import { logError } from "../../utils/logger"; |
23 |
|
|
|
24 |
|
|
export default class EchoCommand extends Command { |
25 |
|
|
public readonly name = "send"; |
26 |
|
|
public readonly validationRules: ValidationRule[] = [ |
27 |
|
|
{ |
28 |
|
|
types: [ArgumentType.User], |
29 |
|
|
name: "user", |
30 |
|
|
entityNotNull: true, |
31 |
|
|
entityNotNullErrorMessage: "This user does not exist!", |
32 |
|
|
typeErrorMessage: "Please provide a valid user to DM!", |
33 |
|
|
requiredErrorMessage: "Please provide a user to DM!" |
34 |
|
|
}, |
35 |
|
|
{ |
36 |
|
|
types: [ArgumentType.StringRest], |
37 |
|
|
name: "content", |
38 |
|
|
requiredErrorMessage: "Please provide the message content!", |
39 |
|
|
optional: true |
40 |
|
|
} |
41 |
|
|
]; |
42 |
|
|
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
43 |
|
|
public readonly aliases = ["s", "dm", "message", "msg"]; |
44 |
|
|
|
45 |
|
|
public readonly description = "Send a DM to a user."; |
46 |
|
|
public readonly slashCommandBuilder = new SlashCommandBuilder() |
47 |
|
|
.addUserOption(option => option.setName("user").setDescription("The user to DM")) |
48 |
|
|
.addStringOption(option => option.setName("content").setDescription("Message content")); |
49 |
|
|
|
50 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
51 |
|
|
await this.deferIfInteraction(message, { |
52 |
|
|
ephemeral: true |
53 |
|
|
}); |
54 |
|
|
|
55 |
|
|
const user = !context.isLegacy ? context.options.getUser("user") : context.parsedNamedArgs.user; |
56 |
|
|
const content: string | undefined = !context.isLegacy ? context.options.getString("content", true) : context.parsedNamedArgs.content; |
57 |
|
|
|
58 |
|
|
if (!content && message instanceof Message && message.attachments.size === 0) { |
59 |
|
|
await this.error(message, "Please provide the message content or attachments!"); |
60 |
|
|
return; |
61 |
|
|
} |
62 |
|
|
|
63 |
|
|
try { |
64 |
|
|
await user?.send({ |
65 |
|
|
content, |
66 |
|
|
files: |
67 |
|
|
message instanceof Message |
68 |
|
|
? message.attachments.map( |
69 |
|
|
a => |
70 |
|
|
({ |
71 |
|
|
attachment: a.proxyURL, |
72 |
|
|
name: a.name, |
73 |
|
|
description: a.description |
74 |
|
|
} as AttachmentPayload) |
75 |
|
|
) |
76 |
|
|
: undefined |
77 |
|
|
}); |
78 |
|
|
|
79 |
|
|
if (message instanceof Message) { |
80 |
|
|
await message.react(this.emoji("check")); |
81 |
|
|
} else { |
82 |
|
|
await this.deferredReply(message, { |
83 |
|
|
content: `Message sent.` |
84 |
|
|
}); |
85 |
|
|
} |
86 |
|
|
} catch (e) { |
87 |
|
|
logError(e); |
88 |
|
|
await this.error(message, `Could not deliver DM. Maybe the user does not share any server with me or has blocked me or disabled DMs?`); |
89 |
|
|
} |
90 |
|
|
} |
91 |
|
|
} |