discord.js-selfbot-v13/src/structures/Modal.js

280 lines
8.7 KiB
JavaScript
Raw Normal View History

2022-05-14 08:06:15 +00:00
'use strict';
2022-12-12 12:28:13 +00:00
const { setTimeout } = require('node:timers');
2022-05-14 08:06:15 +00:00
const BaseMessageComponent = require('./BaseMessageComponent');
2022-06-13 16:53:43 +00:00
const User = require('./User');
const SnowflakeUtil = require('../util/SnowflakeUtil');
2022-05-14 08:06:15 +00:00
const Util = require('../util/Util');
/**
* Represents a modal (form) to be shown in response to an interaction
*/
class Modal {
/**
* @typedef {Object} ModalOptions
* @property {string} [customId] A unique string to be sent in the interaction when clicked
* @property {string} [title] The title to be displayed on this modal
2023-05-02 04:34:13 +00:00
* @property {Array<(MessageActionRow|MessageActionRowOptions)>} [components]
2022-05-14 08:06:15 +00:00
* Action rows containing interactive components for the modal (text input components)
*/
/**
* @param {Modal|ModalOptions} data Modal to clone or raw data
* @param {Client} client The client constructing this Modal, if provided
*/
constructor(data = {}, client = null) {
/**
* A list of MessageActionRows in the modal
* @type {MessageActionRow[]}
*/
this.components = data.components?.map(c => BaseMessageComponent.create(c, client)) ?? [];
/**
* A unique string to be sent in the interaction when submitted
* @type {?string}
*/
this.customId = data.custom_id ?? data.customId ?? null;
/**
* The title to be displayed on this modal
* @type {?string}
*/
this.title = data.title ?? null;
2022-06-13 16:53:43 +00:00
/**
* Timestamp (Discord epoch) of when this modal was created
* @type {?Snowflake}
*/
this.nonce = data.nonce ?? null;
/**
2022-09-28 15:03:20 +00:00
* ID slash / button / menu when modal is displayed
2022-06-13 16:53:43 +00:00
* @type {?Snowflake}
*/
this.id = data.id ?? null;
/**
* Application sending the modal
* @type {?Object}
*/
this.application = data.application
? {
...data.application,
2022-10-09 12:37:04 +00:00
bot: data.application.bot ? new User(client, data.application.bot, data.application) : null,
2022-06-13 16:53:43 +00:00
}
: null;
this.client = client;
2022-05-14 08:06:15 +00:00
}
2022-10-09 12:37:04 +00:00
/**
* Get Interaction Response
* @type {?InteractionResponse}
* @readonly
*/
get sendFromInteraction() {
if (this.id && this.nonce && this.client) {
const cache = this.client._interactionCache.get(this.nonce);
const channel = cache.guildId
? this.client.guilds.cache.get(cache.guildId)?.channels.cache.get(cache.channelId)
: this.client.channels.cache.get(cache.channelId);
return channel.interactions.cache.get(this.id);
}
return null;
}
2022-05-14 08:06:15 +00:00
/**
* Adds components to the modal.
* @param {...MessageActionRowResolvable[]} components The components to add
* @returns {Modal}
*/
addComponents(...components) {
this.components.push(...components.flat(Infinity).map(c => BaseMessageComponent.create(c)));
return this;
}
/**
* Sets the components of the modal.
* @param {...MessageActionRowResolvable[]} components The components to set
* @returns {Modal}
*/
setComponents(...components) {
this.spliceComponents(0, this.components.length, components);
return this;
}
/**
* Sets the custom id for this modal
* @param {string} customId A unique string to be sent in the interaction when submitted
* @returns {Modal}
*/
setCustomId(customId) {
this.customId = Util.verifyString(customId, RangeError, 'MODAL_CUSTOM_ID');
return this;
}
/**
* Removes, replaces, and inserts components in the modal.
* @param {number} index The index to start at
* @param {number} deleteCount The number of components to remove
* @param {...MessageActionRowResolvable[]} [components] The replacing components
* @returns {Modal}
*/
spliceComponents(index, deleteCount, ...components) {
this.components.splice(index, deleteCount, ...components.flat(Infinity).map(c => BaseMessageComponent.create(c)));
return this;
}
/**
* Sets the title of this modal
* @param {string} title The title to be displayed on this modal
* @returns {Modal}
*/
setTitle(title) {
this.title = Util.verifyString(title, RangeError, 'MODAL_TITLE');
return this;
}
toJSON() {
return {
components: this.components.map(c => c.toJSON()),
custom_id: this.customId,
title: this.title,
2022-06-13 16:53:43 +00:00
id: this.id,
};
}
/**
2022-09-29 12:45:22 +00:00
* @typedef {Object} TextInputComponentReplyData
2022-06-13 16:53:43 +00:00
* @property {string} [customId] TextInputComponent custom id
* @property {string} [value] TextInputComponent value
*/
2022-09-29 12:45:22 +00:00
/**
* @typedef {Object} ModalReplyData
2022-10-09 12:37:04 +00:00
* @property {?GuildResolvable} [guild] Guild to send the modal to
* @property {?TextChannelResolvable} [channel] User to send the modal to
2022-12-12 12:28:13 +00:00
* @property {?TextInputComponentReplyData[]} [data] Reply data
2022-09-29 12:45:22 +00:00
*/
2022-06-13 16:53:43 +00:00
/**
* Reply to this modal with data. (Event only)
2022-09-29 12:45:22 +00:00
* @param {ModalReplyData} data Data to send with the modal
2022-10-09 12:37:04 +00:00
* @returns {Promise<InteractionResponse>}
2022-06-13 17:03:51 +00:00
* @example
* client.on('interactionModalCreate', modal => {
2022-12-12 12:28:13 +00:00
* // 1.
2022-10-09 12:37:04 +00:00
* modal.reply({
* data: [
* {
* customId: 'code',
* value: '1+1'
* }, {
* customId: 'message',
* value: 'hello'
* }
2022-12-08 08:14:17 +00:00
* ],
* channel: 'id', // optional
* guild: 'id', // optional
2022-06-13 17:03:51 +00:00
* })
2022-12-12 12:28:13 +00:00
* // or 2.
* modal.components[0].components[0].setValue('1+1');
* modal.components[1].components[0].setValue('hello');
* modal.reply();
2022-06-13 17:03:51 +00:00
* })
2022-06-13 16:53:43 +00:00
*/
2022-12-12 12:28:13 +00:00
async reply(data = {}) {
if (!this.application) throw new Error('Modal cannot reply (Missing Application)');
2022-10-09 12:37:04 +00:00
const data_cache = this.sendFromInteraction;
2022-12-12 12:28:13 +00:00
const guild = this.client.guilds.resolveId(data?.guild) || data_cache.guildId || null;
const channel = this.client.channels.resolveId(data?.channel) || data_cache.channelId;
2022-12-08 08:14:17 +00:00
if (!channel) throw new Error('Modal cannot reply (Missing data)');
2022-06-13 16:53:43 +00:00
// Add data to components
// this.components = [ MessageActionRow.components = [ TextInputComponent ] ]
// 5 MessageActionRow / Modal, 1 TextInputComponent / 1 MessageActionRow
2022-12-12 12:28:13 +00:00
if (Array.isArray(data?.data) && data?.data?.length > 0) {
for (let i = 0; i < this.components.length; i++) {
const value = data.data.find(d => d.customId == this.components[i].components[0].customId);
if (this.components[i].components[0].required == true && !value) {
2022-12-08 08:14:17 +00:00
throw new Error(
2022-12-12 12:28:13 +00:00
'MODAL_REQUIRED_FIELD_MISSING\n' +
`Required fieldId ${this.components[i].components[0].customId} missing value`,
2022-06-13 16:53:43 +00:00
);
}
2022-12-12 12:28:13 +00:00
if (value) {
if (value?.value?.includes('\n') && this.components[i].components[0].style == 'SHORT') {
throw new Error(
'MODAL_REPLY_DATA_INVALID\n' +
`value must be a single line, got multiple lines [Custom ID: ${value.customId}]`,
);
}
this.components[i].components[0].setValue(value.value);
}
2022-06-13 16:53:43 +00:00
}
}
// Get Object
const dataFinal = this.toJSON();
2022-12-08 08:14:17 +00:00
dataFinal.components = dataFinal.components
.map(c => {
delete c.components[0].max_length;
delete c.components[0].min_length;
delete c.components[0].required;
delete c.components[0].placeholder;
delete c.components[0].label;
delete c.components[0].style;
return c;
})
.filter(c => c.components[0].value && c.components[0].value !== '');
2022-06-13 16:53:43 +00:00
delete dataFinal.title;
2022-06-15 16:07:24 +00:00
const nonce = SnowflakeUtil.generate();
2022-06-13 16:53:43 +00:00
const postData = {
2022-06-15 11:52:06 +00:00
type: 5, // Modal
2022-06-13 16:53:43 +00:00
application_id: this.application.id,
2022-09-29 12:45:22 +00:00
guild_id: guild || null,
channel_id: channel,
2022-06-13 16:53:43 +00:00
data: dataFinal,
2022-06-15 16:07:24 +00:00
nonce,
2022-06-13 16:53:43 +00:00
session_id: this.client.session_id,
2022-05-14 08:06:15 +00:00
};
2022-06-13 16:53:43 +00:00
await this.client.api.interactions.post({
data: postData,
});
2022-12-12 12:28:13 +00:00
this.client._interactionCache.set(nonce, {
channelId: channel,
guildId: guild,
metadata: postData,
});
return new Promise((resolve, reject) => {
const handler = data => {
timeout.refresh();
2023-06-14 06:53:09 +00:00
if (data.metadata?.nonce !== nonce) return;
2022-12-12 12:28:13 +00:00
clearTimeout(timeout);
this.client.removeListener('interactionResponse', handler);
this.client.decrementMaxListeners();
if (data.status) {
resolve(data.metadata);
} else {
reject(
new Error('INTERACTION_ERROR', {
cause: data,
}),
);
}
};
const timeout = setTimeout(() => {
this.client.removeListener('interactionResponse', handler);
this.client.decrementMaxListeners();
reject(
new Error('INTERACTION_TIMEOUT', {
2022-12-12 12:55:26 +00:00
cause: postData,
2022-12-12 12:28:13 +00:00
}),
);
}, this.client.options.interactionTimeout).unref();
this.client.incrementMaxListeners();
this.client.on('interactionResponse', handler);
});
2022-05-14 08:06:15 +00:00
}
}
module.exports = Modal;