@velliajs/discord 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/README.md +133 -0
- package/package.json +82 -0
- package/src/client/BaseClient.js +83 -0
- package/src/client/Client.js +591 -0
- package/src/client/WebhookClient.js +103 -0
- package/src/client/actions/Action.js +119 -0
- package/src/client/actions/ActionsManager.js +79 -0
- package/src/client/actions/ApplicationCommandPermissionsUpdate.js +34 -0
- package/src/client/actions/AutoModerationActionExecution.js +26 -0
- package/src/client/actions/AutoModerationRuleCreate.js +27 -0
- package/src/client/actions/AutoModerationRuleDelete.js +31 -0
- package/src/client/actions/AutoModerationRuleUpdate.js +29 -0
- package/src/client/actions/ChannelCreate.js +23 -0
- package/src/client/actions/ChannelDelete.js +23 -0
- package/src/client/actions/ChannelUpdate.js +33 -0
- package/src/client/actions/GuildAuditLogEntryCreate.js +29 -0
- package/src/client/actions/GuildBanAdd.js +20 -0
- package/src/client/actions/GuildBanRemove.js +25 -0
- package/src/client/actions/GuildChannelsPositionUpdate.js +21 -0
- package/src/client/actions/GuildDelete.js +44 -0
- package/src/client/actions/GuildEmojiCreate.js +20 -0
- package/src/client/actions/GuildEmojiDelete.js +19 -0
- package/src/client/actions/GuildEmojiUpdate.js +20 -0
- package/src/client/actions/GuildEmojisUpdate.js +34 -0
- package/src/client/actions/GuildIntegrationsUpdate.js +19 -0
- package/src/client/actions/GuildMemberRemove.js +31 -0
- package/src/client/actions/GuildMemberUpdate.js +44 -0
- package/src/client/actions/GuildRoleCreate.js +25 -0
- package/src/client/actions/GuildRoleDelete.js +29 -0
- package/src/client/actions/GuildRoleUpdate.js +39 -0
- package/src/client/actions/GuildRolesPositionUpdate.js +21 -0
- package/src/client/actions/GuildScheduledEventCreate.js +27 -0
- package/src/client/actions/GuildScheduledEventDelete.js +31 -0
- package/src/client/actions/GuildScheduledEventUpdate.js +30 -0
- package/src/client/actions/GuildScheduledEventUserAdd.js +32 -0
- package/src/client/actions/GuildScheduledEventUserRemove.js +32 -0
- package/src/client/actions/GuildStickerCreate.js +20 -0
- package/src/client/actions/GuildStickerDelete.js +19 -0
- package/src/client/actions/GuildStickerUpdate.js +20 -0
- package/src/client/actions/GuildStickersUpdate.js +34 -0
- package/src/client/actions/GuildUpdate.js +33 -0
- package/src/client/actions/InteractionCreate.js +101 -0
- package/src/client/actions/InviteCreate.js +28 -0
- package/src/client/actions/InviteDelete.js +30 -0
- package/src/client/actions/MessageCreate.js +37 -0
- package/src/client/actions/MessageDelete.js +32 -0
- package/src/client/actions/MessageDeleteBulk.js +47 -0
- package/src/client/actions/MessageReactionAdd.js +55 -0
- package/src/client/actions/MessageReactionRemove.js +45 -0
- package/src/client/actions/MessageReactionRemoveAll.js +33 -0
- package/src/client/actions/MessageReactionRemoveEmoji.js +28 -0
- package/src/client/actions/MessageUpdate.js +26 -0
- package/src/client/actions/PresenceUpdate.js +42 -0
- package/src/client/actions/StageInstanceCreate.js +28 -0
- package/src/client/actions/StageInstanceDelete.js +31 -0
- package/src/client/actions/StageInstanceUpdate.js +30 -0
- package/src/client/actions/ThreadCreate.js +24 -0
- package/src/client/actions/ThreadDelete.js +26 -0
- package/src/client/actions/ThreadListSync.js +60 -0
- package/src/client/actions/ThreadMemberUpdate.js +30 -0
- package/src/client/actions/ThreadMembersUpdate.js +47 -0
- package/src/client/actions/TypingStart.js +29 -0
- package/src/client/actions/UserUpdate.js +36 -0
- package/src/client/actions/VoiceStateUpdate.js +43 -0
- package/src/client/actions/WebhooksUpdate.js +20 -0
- package/src/client/voice/ClientVoiceManager.js +44 -0
- package/src/client/websocket/WebSocketManager.js +393 -0
- package/src/client/websocket/WebSocketShard.js +231 -0
- package/src/client/websocket/handlers/APPLICATION_COMMAND_PERMISSIONS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_ACTION_EXECUTION.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_CREATE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_DELETE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_CREATE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_DELETE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +22 -0
- package/src/client/websocket/handlers/CHANNEL_UPDATE.js +16 -0
- package/src/client/websocket/handlers/GUILD_AUDIT_LOG_ENTRY_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_BAN_ADD.js +5 -0
- package/src/client/websocket/handlers/GUILD_BAN_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_CREATE.js +26 -0
- package/src/client/websocket/handlers/GUILD_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +39 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +20 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_ADD.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_STICKERS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_UPDATE.js +5 -0
- package/src/client/websocket/handlers/INTERACTION_CREATE.js +5 -0
- package/src/client/websocket/handlers/INVITE_CREATE.js +5 -0
- package/src/client/websocket/handlers/INVITE_DELETE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_CREATE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_DELETE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_DELETE_BULK.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_ADD.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_UPDATE.js +16 -0
- package/src/client/websocket/handlers/PRESENCE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/READY.js +27 -0
- package/src/client/websocket/handlers/RESUMED.js +14 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js +5 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js +5 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_CREATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_DELETE.js +5 -0
- package/src/client/websocket/handlers/THREAD_LIST_SYNC.js +5 -0
- package/src/client/websocket/handlers/THREAD_MEMBERS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_MEMBER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_UPDATE.js +16 -0
- package/src/client/websocket/handlers/TYPING_START.js +5 -0
- package/src/client/websocket/handlers/USER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/VOICE_SERVER_UPDATE.js +6 -0
- package/src/client/websocket/handlers/VOICE_STATE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/WEBHOOKS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/index.js +64 -0
- package/src/errors/DJSError.js +48 -0
- package/src/errors/ErrorCodes.js +319 -0
- package/src/errors/Messages.js +170 -0
- package/src/errors/index.js +5 -0
- package/src/index.js +213 -0
- package/src/managers/ApplicationCommandManager.js +263 -0
- package/src/managers/ApplicationCommandPermissionsManager.js +434 -0
- package/src/managers/AutoModerationRuleManager.js +288 -0
- package/src/managers/BaseGuildEmojiManager.js +80 -0
- package/src/managers/BaseManager.js +19 -0
- package/src/managers/CachedManager.js +57 -0
- package/src/managers/CategoryChannelChildManager.js +77 -0
- package/src/managers/ChannelManager.js +128 -0
- package/src/managers/DataManager.js +61 -0
- package/src/managers/GuildApplicationCommandManager.js +28 -0
- package/src/managers/GuildBanManager.js +204 -0
- package/src/managers/GuildChannelManager.js +494 -0
- package/src/managers/GuildEmojiManager.js +174 -0
- package/src/managers/GuildEmojiRoleManager.js +118 -0
- package/src/managers/GuildForumThreadManager.js +83 -0
- package/src/managers/GuildInviteManager.js +213 -0
- package/src/managers/GuildManager.js +283 -0
- package/src/managers/GuildMemberManager.js +540 -0
- package/src/managers/GuildMemberRoleManager.js +204 -0
- package/src/managers/GuildScheduledEventManager.js +297 -0
- package/src/managers/GuildStickerManager.js +182 -0
- package/src/managers/GuildTextThreadManager.js +91 -0
- package/src/managers/MessageManager.js +259 -0
- package/src/managers/PermissionOverwriteManager.js +168 -0
- package/src/managers/PresenceManager.js +58 -0
- package/src/managers/ReactionManager.js +68 -0
- package/src/managers/ReactionUserManager.js +77 -0
- package/src/managers/RoleManager.js +360 -0
- package/src/managers/StageInstanceManager.js +154 -0
- package/src/managers/ThreadManager.js +204 -0
- package/src/managers/ThreadMemberManager.js +182 -0
- package/src/managers/UserManager.js +139 -0
- package/src/managers/VoiceStateManager.js +37 -0
- package/src/sharding/Shard.js +457 -0
- package/src/sharding/ShardClientUtil.js +285 -0
- package/src/sharding/ShardingManager.js +326 -0
- package/src/structures/ActionRow.js +46 -0
- package/src/structures/ActionRowBuilder.js +35 -0
- package/src/structures/AnonymousGuild.js +97 -0
- package/src/structures/ApplicationCommand.js +606 -0
- package/src/structures/ApplicationRoleConnectionMetadata.js +46 -0
- package/src/structures/Attachment.js +140 -0
- package/src/structures/AttachmentBuilder.js +116 -0
- package/src/structures/AutoModerationActionExecution.js +116 -0
- package/src/structures/AutoModerationRule.js +284 -0
- package/src/structures/AutocompleteInteraction.js +97 -0
- package/src/structures/Base.js +43 -0
- package/src/structures/BaseChannel.js +160 -0
- package/src/structures/BaseGuild.js +119 -0
- package/src/structures/BaseGuildEmoji.js +56 -0
- package/src/structures/BaseGuildTextChannel.js +186 -0
- package/src/structures/BaseGuildVoiceChannel.js +234 -0
- package/src/structures/BaseInteraction.js +344 -0
- package/src/structures/BaseSelectMenuComponent.js +56 -0
- package/src/structures/ButtonBuilder.js +44 -0
- package/src/structures/ButtonComponent.js +65 -0
- package/src/structures/ButtonInteraction.js +11 -0
- package/src/structures/CategoryChannel.js +45 -0
- package/src/structures/ChannelSelectMenuBuilder.js +31 -0
- package/src/structures/ChannelSelectMenuComponent.js +20 -0
- package/src/structures/ChannelSelectMenuInteraction.js +33 -0
- package/src/structures/ChatInputCommandInteraction.js +41 -0
- package/src/structures/ClientApplication.js +193 -0
- package/src/structures/ClientPresence.js +82 -0
- package/src/structures/ClientUser.js +185 -0
- package/src/structures/CommandInteraction.js +224 -0
- package/src/structures/CommandInteractionOptionResolver.js +308 -0
- package/src/structures/Component.js +47 -0
- package/src/structures/ContextMenuCommandInteraction.js +64 -0
- package/src/structures/DMChannel.js +129 -0
- package/src/structures/DirectoryChannel.js +36 -0
- package/src/structures/Embed.js +220 -0
- package/src/structures/EmbedBuilder.js +41 -0
- package/src/structures/Emoji.js +108 -0
- package/src/structures/ForumChannel.js +264 -0
- package/src/structures/Guild.js +1361 -0
- package/src/structures/GuildAuditLogs.js +91 -0
- package/src/structures/GuildAuditLogsEntry.js +527 -0
- package/src/structures/GuildBan.js +59 -0
- package/src/structures/GuildChannel.js +457 -0
- package/src/structures/GuildEmoji.js +148 -0
- package/src/structures/GuildMember.js +518 -0
- package/src/structures/GuildPreview.js +193 -0
- package/src/structures/GuildPreviewEmoji.js +27 -0
- package/src/structures/GuildScheduledEvent.js +439 -0
- package/src/structures/GuildTemplate.js +241 -0
- package/src/structures/Integration.js +220 -0
- package/src/structures/IntegrationApplication.js +85 -0
- package/src/structures/InteractionCollector.js +263 -0
- package/src/structures/InteractionResponse.js +102 -0
- package/src/structures/InteractionWebhook.js +59 -0
- package/src/structures/Invite.js +322 -0
- package/src/structures/InviteGuild.js +22 -0
- package/src/structures/InviteStageInstance.js +87 -0
- package/src/structures/MentionableSelectMenuBuilder.js +32 -0
- package/src/structures/MentionableSelectMenuComponent.js +11 -0
- package/src/structures/MentionableSelectMenuInteraction.js +71 -0
- package/src/structures/Message.js +997 -0
- package/src/structures/MessageCollector.js +146 -0
- package/src/structures/MessageComponentInteraction.js +107 -0
- package/src/structures/MessageContextMenuCommandInteraction.js +20 -0
- package/src/structures/MessageMentions.js +297 -0
- package/src/structures/MessagePayload.js +299 -0
- package/src/structures/MessageReaction.js +142 -0
- package/src/structures/ModalBuilder.js +34 -0
- package/src/structures/ModalSubmitFields.js +55 -0
- package/src/structures/ModalSubmitInteraction.js +121 -0
- package/src/structures/NewsChannel.js +32 -0
- package/src/structures/OAuth2Guild.js +28 -0
- package/src/structures/PartialGroupDMChannel.js +60 -0
- package/src/structures/PermissionOverwrites.js +196 -0
- package/src/structures/Presence.js +372 -0
- package/src/structures/ReactionCollector.js +229 -0
- package/src/structures/ReactionEmoji.js +31 -0
- package/src/structures/Role.js +458 -0
- package/src/structures/RoleSelectMenuBuilder.js +31 -0
- package/src/structures/RoleSelectMenuComponent.js +11 -0
- package/src/structures/RoleSelectMenuInteraction.js +33 -0
- package/src/structures/SelectMenuBuilder.js +26 -0
- package/src/structures/SelectMenuComponent.js +26 -0
- package/src/structures/SelectMenuInteraction.js +26 -0
- package/src/structures/SelectMenuOptionBuilder.js +26 -0
- package/src/structures/StageChannel.js +112 -0
- package/src/structures/StageInstance.js +167 -0
- package/src/structures/Sticker.js +272 -0
- package/src/structures/StickerPack.js +95 -0
- package/src/structures/StringSelectMenuBuilder.js +79 -0
- package/src/structures/StringSelectMenuComponent.js +20 -0
- package/src/structures/StringSelectMenuInteraction.js +21 -0
- package/src/structures/StringSelectMenuOptionBuilder.js +49 -0
- package/src/structures/Team.js +117 -0
- package/src/structures/TeamMember.js +70 -0
- package/src/structures/TextChannel.js +33 -0
- package/src/structures/TextInputBuilder.js +31 -0
- package/src/structures/TextInputComponent.js +29 -0
- package/src/structures/ThreadChannel.js +606 -0
- package/src/structures/ThreadMember.js +113 -0
- package/src/structures/Typing.js +74 -0
- package/src/structures/User.js +331 -0
- package/src/structures/UserContextMenuCommandInteraction.js +29 -0
- package/src/structures/UserSelectMenuBuilder.js +31 -0
- package/src/structures/UserSelectMenuComponent.js +11 -0
- package/src/structures/UserSelectMenuInteraction.js +51 -0
- package/src/structures/VoiceChannel.js +96 -0
- package/src/structures/VoiceRegion.js +46 -0
- package/src/structures/VoiceState.js +303 -0
- package/src/structures/Webhook.js +481 -0
- package/src/structures/WelcomeChannel.js +60 -0
- package/src/structures/WelcomeScreen.js +49 -0
- package/src/structures/Widget.js +88 -0
- package/src/structures/WidgetMember.js +99 -0
- package/src/structures/interfaces/Application.js +108 -0
- package/src/structures/interfaces/Collector.js +335 -0
- package/src/structures/interfaces/InteractionResponses.js +320 -0
- package/src/structures/interfaces/TextBasedChannel.js +413 -0
- package/src/util/APITypes.js +456 -0
- package/src/util/ActivityFlagsBitField.js +26 -0
- package/src/util/ApplicationFlagsBitField.js +26 -0
- package/src/util/BitField.js +176 -0
- package/src/util/ChannelFlagsBitField.js +41 -0
- package/src/util/Channels.js +150 -0
- package/src/util/Colors.js +73 -0
- package/src/util/Components.js +152 -0
- package/src/util/Constants.js +230 -0
- package/src/util/DataResolver.js +140 -0
- package/src/util/Enums.js +13 -0
- package/src/util/Events.js +160 -0
- package/src/util/Formatters.js +413 -0
- package/src/util/GuildMemberFlagsBitField.js +41 -0
- package/src/util/IntentsBitField.js +34 -0
- package/src/util/LimitedCollection.js +68 -0
- package/src/util/MessageFlagsBitField.js +32 -0
- package/src/util/Options.js +216 -0
- package/src/util/Partials.js +44 -0
- package/src/util/PermissionsBitField.js +104 -0
- package/src/util/ShardEvents.js +27 -0
- package/src/util/Status.js +33 -0
- package/src/util/Sweepers.js +467 -0
- package/src/util/SystemChannelFlagsBitField.js +43 -0
- package/src/util/ThreadMemberFlagsBitField.js +31 -0
- package/src/util/Transformers.js +36 -0
- package/src/util/UserFlagsBitField.js +32 -0
- package/src/util/Util.js +394 -0
- package/src/util/WebSocketShardEvents.js +25 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { Collection } = require('@discordjs/collection');
|
|
4
|
+
const { makeURLSearchParams } = require('@discordjs/rest');
|
|
5
|
+
const { Routes } = require('discord-api-types/v10');
|
|
6
|
+
const CachedManager = require('./CachedManager');
|
|
7
|
+
const { DiscordjsError, ErrorCodes } = require('../errors');
|
|
8
|
+
const User = require('../structures/User');
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Manages API methods for users who reacted to a reaction and stores their cache.
|
|
12
|
+
* @extends {CachedManager}
|
|
13
|
+
*/
|
|
14
|
+
class ReactionUserManager extends CachedManager {
|
|
15
|
+
constructor(reaction, iterable) {
|
|
16
|
+
super(reaction.client, User, iterable);
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The reaction that this manager belongs to
|
|
20
|
+
* @type {MessageReaction}
|
|
21
|
+
*/
|
|
22
|
+
this.reaction = reaction;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* The cache of this manager
|
|
27
|
+
* @type {Collection<Snowflake, User>}
|
|
28
|
+
* @name ReactionUserManager#cache
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Options used to fetch users who gave a reaction.
|
|
33
|
+
* @typedef {Object} FetchReactionUsersOptions
|
|
34
|
+
* @property {number} [limit=100] The maximum amount of users to fetch, defaults to `100`
|
|
35
|
+
* @property {Snowflake} [after] Limit fetching users to those with an id greater than the supplied id
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Fetches all the users that gave this reaction. Resolves with a collection of users, mapped by their ids.
|
|
40
|
+
* @param {FetchReactionUsersOptions} [options] Options for fetching the users
|
|
41
|
+
* @returns {Promise<Collection<Snowflake, User>>}
|
|
42
|
+
*/
|
|
43
|
+
async fetch({ limit = 100, after } = {}) {
|
|
44
|
+
const message = this.reaction.message;
|
|
45
|
+
const query = makeURLSearchParams({ limit, after });
|
|
46
|
+
const data = await this.client.rest.get(
|
|
47
|
+
Routes.channelMessageReaction(message.channelId, message.id, this.reaction.emoji.identifier),
|
|
48
|
+
{ query },
|
|
49
|
+
);
|
|
50
|
+
const users = new Collection();
|
|
51
|
+
for (const rawUser of data) {
|
|
52
|
+
const user = this.client.users._add(rawUser);
|
|
53
|
+
this.cache.set(user.id, user);
|
|
54
|
+
users.set(user.id, user);
|
|
55
|
+
}
|
|
56
|
+
return users;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Removes a user from this reaction.
|
|
61
|
+
* @param {UserResolvable} [user=this.client.user] The user to remove the reaction of
|
|
62
|
+
* @returns {Promise<MessageReaction>}
|
|
63
|
+
*/
|
|
64
|
+
async remove(user = this.client.user) {
|
|
65
|
+
const userId = this.client.users.resolveId(user);
|
|
66
|
+
if (!userId) throw new DiscordjsError(ErrorCodes.ReactionResolveUser);
|
|
67
|
+
const message = this.reaction.message;
|
|
68
|
+
const route =
|
|
69
|
+
userId === this.client.user.id
|
|
70
|
+
? Routes.channelMessageOwnReaction(message.channelId, message.id, this.reaction.emoji.identifier)
|
|
71
|
+
: Routes.channelMessageUserReaction(message.channelId, message.id, this.reaction.emoji.identifier, userId);
|
|
72
|
+
await this.client.rest.delete(route);
|
|
73
|
+
return this.reaction;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
module.exports = ReactionUserManager;
|
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const process = require('node:process');
|
|
4
|
+
const { Collection } = require('@discordjs/collection');
|
|
5
|
+
const { Routes } = require('discord-api-types/v10');
|
|
6
|
+
const CachedManager = require('./CachedManager');
|
|
7
|
+
const { DiscordjsTypeError, ErrorCodes } = require('../errors');
|
|
8
|
+
const { Role } = require('../structures/Role');
|
|
9
|
+
const DataResolver = require('../util/DataResolver');
|
|
10
|
+
const PermissionsBitField = require('../util/PermissionsBitField');
|
|
11
|
+
const { setPosition, resolveColor } = require('../util/Util');
|
|
12
|
+
|
|
13
|
+
let cacheWarningEmitted = false;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Manages API methods for roles and stores their cache.
|
|
17
|
+
* @extends {CachedManager}
|
|
18
|
+
*/
|
|
19
|
+
class RoleManager extends CachedManager {
|
|
20
|
+
constructor(guild, iterable) {
|
|
21
|
+
super(guild.client, Role, iterable);
|
|
22
|
+
if (!cacheWarningEmitted && this._cache.constructor.name !== 'Collection') {
|
|
23
|
+
cacheWarningEmitted = true;
|
|
24
|
+
process.emitWarning(
|
|
25
|
+
`Overriding the cache handling for ${this.constructor.name} is unsupported and breaks functionality.`,
|
|
26
|
+
'UnsupportedCacheOverwriteWarning',
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* The guild belonging to this manager
|
|
32
|
+
* @type {Guild}
|
|
33
|
+
*/
|
|
34
|
+
this.guild = guild;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* The role cache of this manager
|
|
39
|
+
* @type {Collection<Snowflake, Role>}
|
|
40
|
+
* @name RoleManager#cache
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
_add(data, cache) {
|
|
44
|
+
return super._add(data, cache, { extras: [this.guild] });
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Obtains a role from Discord, or the role cache if they're already available.
|
|
49
|
+
* @param {Snowflake} [id] The role's id
|
|
50
|
+
* @param {BaseFetchOptions} [options] Additional options for this fetch
|
|
51
|
+
* @returns {Promise<?Role|Collection<Snowflake, Role>>}
|
|
52
|
+
* @example
|
|
53
|
+
* // Fetch all roles from the guild
|
|
54
|
+
* message.guild.roles.fetch()
|
|
55
|
+
* .then(roles => console.log(`There are ${roles.size} roles.`))
|
|
56
|
+
* .catch(console.error);
|
|
57
|
+
* @example
|
|
58
|
+
* // Fetch a single role
|
|
59
|
+
* message.guild.roles.fetch('222078108977594368')
|
|
60
|
+
* .then(role => console.log(`The role color is: ${role.color}`))
|
|
61
|
+
* .catch(console.error);
|
|
62
|
+
*/
|
|
63
|
+
async fetch(id, { cache = true, force = false } = {}) {
|
|
64
|
+
if (id && !force) {
|
|
65
|
+
const existing = this.cache.get(id);
|
|
66
|
+
if (existing) return existing;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// We cannot fetch a single role, as of this commit's date, Discord API throws with 405
|
|
70
|
+
const data = await this.client.rest.get(Routes.guildRoles(this.guild.id));
|
|
71
|
+
const roles = new Collection();
|
|
72
|
+
for (const role of data) roles.set(role.id, this._add(role, cache));
|
|
73
|
+
return id ? roles.get(id) ?? null : roles;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Data that can be resolved to a Role object. This can be:
|
|
78
|
+
* * A Role
|
|
79
|
+
* * A Snowflake
|
|
80
|
+
* @typedef {Role|Snowflake} RoleResolvable
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Resolves a {@link RoleResolvable} to a {@link Role} object.
|
|
85
|
+
* @method resolve
|
|
86
|
+
* @memberof RoleManager
|
|
87
|
+
* @instance
|
|
88
|
+
* @param {RoleResolvable} role The role resolvable to resolve
|
|
89
|
+
* @returns {?Role}
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Resolves a {@link RoleResolvable} to a {@link Role} id.
|
|
94
|
+
* @method resolveId
|
|
95
|
+
* @memberof RoleManager
|
|
96
|
+
* @instance
|
|
97
|
+
* @param {RoleResolvable} role The role resolvable to resolve
|
|
98
|
+
* @returns {?Snowflake}
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Options used to create a new role.
|
|
103
|
+
* @typedef {Object} RoleCreateOptions
|
|
104
|
+
* @property {string} [name] The name of the new role
|
|
105
|
+
* @property {ColorResolvable} [color] The data to create the role with
|
|
106
|
+
* @property {boolean} [hoist] Whether or not the new role should be hoisted
|
|
107
|
+
* @property {PermissionResolvable} [permissions] The permissions for the new role
|
|
108
|
+
* @property {number} [position] The position of the new role
|
|
109
|
+
* @property {boolean} [mentionable] Whether or not the new role should be mentionable
|
|
110
|
+
* @property {?(BufferResolvable|Base64Resolvable|EmojiResolvable)} [icon] The icon for the role
|
|
111
|
+
* <warn>The `EmojiResolvable` should belong to the same guild as the role.
|
|
112
|
+
* If not, pass the emoji's URL directly</warn>
|
|
113
|
+
* @property {?string} [unicodeEmoji] The unicode emoji for the role
|
|
114
|
+
* @property {string} [reason] The reason for creating this role
|
|
115
|
+
*/
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Creates a new role in the guild with given information.
|
|
119
|
+
* <warn>The position will silently reset to 1 if an invalid one is provided, or none.</warn>
|
|
120
|
+
* @param {RoleCreateOptions} [options] Options for creating the new role
|
|
121
|
+
* @returns {Promise<Role>}
|
|
122
|
+
* @example
|
|
123
|
+
* // Create a new role
|
|
124
|
+
* guild.roles.create()
|
|
125
|
+
* .then(console.log)
|
|
126
|
+
* .catch(console.error);
|
|
127
|
+
* @example
|
|
128
|
+
* // Create a new role with data and a reason
|
|
129
|
+
* guild.roles.create({
|
|
130
|
+
* name: 'Super Cool Blue People',
|
|
131
|
+
* color: Colors.Blue,
|
|
132
|
+
* reason: 'we needed a role for Super Cool People',
|
|
133
|
+
* })
|
|
134
|
+
* .then(console.log)
|
|
135
|
+
* .catch(console.error);
|
|
136
|
+
*/
|
|
137
|
+
async create(options = {}) {
|
|
138
|
+
let { name, color, hoist, permissions, position, mentionable, reason, icon, unicodeEmoji } = options;
|
|
139
|
+
color &&= resolveColor(color);
|
|
140
|
+
if (permissions !== undefined) permissions = new PermissionsBitField(permissions);
|
|
141
|
+
if (icon) {
|
|
142
|
+
const guildEmojiURL = this.guild.emojis.resolve(icon)?.url;
|
|
143
|
+
icon = guildEmojiURL ? await DataResolver.resolveImage(guildEmojiURL) : await DataResolver.resolveImage(icon);
|
|
144
|
+
if (typeof icon !== 'string') icon = undefined;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
const data = await this.client.rest.post(Routes.guildRoles(this.guild.id), {
|
|
148
|
+
body: {
|
|
149
|
+
name,
|
|
150
|
+
color,
|
|
151
|
+
hoist,
|
|
152
|
+
permissions,
|
|
153
|
+
mentionable,
|
|
154
|
+
icon,
|
|
155
|
+
unicode_emoji: unicodeEmoji,
|
|
156
|
+
},
|
|
157
|
+
reason,
|
|
158
|
+
});
|
|
159
|
+
const { role } = this.client.actions.GuildRoleCreate.handle({
|
|
160
|
+
guild_id: this.guild.id,
|
|
161
|
+
role: data,
|
|
162
|
+
});
|
|
163
|
+
if (position) return this.setPosition(role, position, { reason });
|
|
164
|
+
return role;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Options for editing a role
|
|
169
|
+
* @typedef {RoleData} RoleEditOptions
|
|
170
|
+
* @property {string} [reason] The reason for editing this role
|
|
171
|
+
*/
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Edits a role of the guild.
|
|
175
|
+
* @param {RoleResolvable} role The role to edit
|
|
176
|
+
* @param {RoleEditOptions} options The options to provide
|
|
177
|
+
* @returns {Promise<Role>}
|
|
178
|
+
* @example
|
|
179
|
+
* // Edit a role
|
|
180
|
+
* guild.roles.edit('222079219327434752', { name: 'buddies' })
|
|
181
|
+
* .then(updated => console.log(`Edited role name to ${updated.name}`))
|
|
182
|
+
* .catch(console.error);
|
|
183
|
+
*/
|
|
184
|
+
async edit(role, options) {
|
|
185
|
+
role = this.resolve(role);
|
|
186
|
+
if (!role) throw new DiscordjsTypeError(ErrorCodes.InvalidType, 'role', 'RoleResolvable');
|
|
187
|
+
|
|
188
|
+
if (typeof options.position === 'number') {
|
|
189
|
+
await this.setPosition(role, options.position, { reason: options.reason });
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
let icon = options.icon;
|
|
193
|
+
if (icon) {
|
|
194
|
+
const guildEmojiURL = this.guild.emojis.resolve(icon)?.url;
|
|
195
|
+
icon = guildEmojiURL ? await DataResolver.resolveImage(guildEmojiURL) : await DataResolver.resolveImage(icon);
|
|
196
|
+
if (typeof icon !== 'string') icon = undefined;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
const body = {
|
|
200
|
+
name: options.name,
|
|
201
|
+
color: options.color === undefined ? undefined : resolveColor(options.color),
|
|
202
|
+
hoist: options.hoist,
|
|
203
|
+
permissions: options.permissions === undefined ? undefined : new PermissionsBitField(options.permissions),
|
|
204
|
+
mentionable: options.mentionable,
|
|
205
|
+
icon,
|
|
206
|
+
unicode_emoji: options.unicodeEmoji,
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
const d = await this.client.rest.patch(Routes.guildRole(this.guild.id, role.id), { body, reason: options.reason });
|
|
210
|
+
|
|
211
|
+
const clone = role._clone();
|
|
212
|
+
clone._patch(d);
|
|
213
|
+
return clone;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Deletes a role.
|
|
218
|
+
* @param {RoleResolvable} role The role to delete
|
|
219
|
+
* @param {string} [reason] Reason for deleting the role
|
|
220
|
+
* @returns {Promise<void>}
|
|
221
|
+
* @example
|
|
222
|
+
* // Delete a role
|
|
223
|
+
* guild.roles.delete('222079219327434752', 'The role needed to go')
|
|
224
|
+
* .then(() => console.log('Deleted the role'))
|
|
225
|
+
* .catch(console.error);
|
|
226
|
+
*/
|
|
227
|
+
async delete(role, reason) {
|
|
228
|
+
const id = this.resolveId(role);
|
|
229
|
+
await this.client.rest.delete(Routes.guildRole(this.guild.id, id), { reason });
|
|
230
|
+
this.client.actions.GuildRoleDelete.handle({ guild_id: this.guild.id, role_id: id });
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* Sets the new position of the role.
|
|
235
|
+
* @param {RoleResolvable} role The role to change the position of
|
|
236
|
+
* @param {number} position The new position for the role
|
|
237
|
+
* @param {SetRolePositionOptions} [options] Options for setting the position
|
|
238
|
+
* @returns {Promise<Role>}
|
|
239
|
+
* @example
|
|
240
|
+
* // Set the position of the role
|
|
241
|
+
* guild.roles.setPosition('222197033908436994', 1)
|
|
242
|
+
* .then(updated => console.log(`Role position: ${updated.position}`))
|
|
243
|
+
* .catch(console.error);
|
|
244
|
+
*/
|
|
245
|
+
async setPosition(role, position, { relative, reason } = {}) {
|
|
246
|
+
role = this.resolve(role);
|
|
247
|
+
if (!role) throw new DiscordjsTypeError(ErrorCodes.InvalidType, 'role', 'RoleResolvable');
|
|
248
|
+
const updatedRoles = await setPosition(
|
|
249
|
+
role,
|
|
250
|
+
position,
|
|
251
|
+
relative,
|
|
252
|
+
this.guild._sortedRoles(),
|
|
253
|
+
this.client,
|
|
254
|
+
Routes.guildRoles(this.guild.id),
|
|
255
|
+
reason,
|
|
256
|
+
);
|
|
257
|
+
|
|
258
|
+
this.client.actions.GuildRolesPositionUpdate.handle({
|
|
259
|
+
guild_id: this.guild.id,
|
|
260
|
+
roles: updatedRoles,
|
|
261
|
+
});
|
|
262
|
+
return role;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* The data needed for updating a guild role's position
|
|
267
|
+
* @typedef {Object} GuildRolePosition
|
|
268
|
+
* @property {RoleResolvable} role The role's id
|
|
269
|
+
* @property {number} position The position to update
|
|
270
|
+
*/
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Batch-updates the guild's role positions
|
|
274
|
+
* @param {GuildRolePosition[]} rolePositions Role positions to update
|
|
275
|
+
* @returns {Promise<Guild>}
|
|
276
|
+
* @example
|
|
277
|
+
* guild.roles.setPositions([{ role: roleId, position: updatedRoleIndex }])
|
|
278
|
+
* .then(guild => console.log(`Role positions updated for ${guild}`))
|
|
279
|
+
* .catch(console.error);
|
|
280
|
+
*/
|
|
281
|
+
async setPositions(rolePositions) {
|
|
282
|
+
// Make sure rolePositions are prepared for API
|
|
283
|
+
rolePositions = rolePositions.map(o => ({
|
|
284
|
+
id: this.resolveId(o.role),
|
|
285
|
+
position: o.position,
|
|
286
|
+
}));
|
|
287
|
+
|
|
288
|
+
// Call the API to update role positions
|
|
289
|
+
await this.client.rest.patch(Routes.guildRoles(this.guild.id), { body: rolePositions });
|
|
290
|
+
return this.client.actions.GuildRolesPositionUpdate.handle({
|
|
291
|
+
guild_id: this.guild.id,
|
|
292
|
+
roles: rolePositions,
|
|
293
|
+
}).guild;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* Compares the positions of two roles.
|
|
298
|
+
* @param {RoleResolvable} role1 First role to compare
|
|
299
|
+
* @param {RoleResolvable} role2 Second role to compare
|
|
300
|
+
* @returns {number} Negative number if the first role's position is lower (second role's is higher),
|
|
301
|
+
* positive number if the first's is higher (second's is lower), 0 if equal
|
|
302
|
+
*/
|
|
303
|
+
comparePositions(role1, role2) {
|
|
304
|
+
const resolvedRole1 = this.resolve(role1);
|
|
305
|
+
const resolvedRole2 = this.resolve(role2);
|
|
306
|
+
if (!resolvedRole1 || !resolvedRole2) {
|
|
307
|
+
throw new DiscordjsTypeError(ErrorCodes.InvalidType, 'role', 'Role nor a Snowflake');
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
const role1Position = resolvedRole1.position;
|
|
311
|
+
const role2Position = resolvedRole2.position;
|
|
312
|
+
|
|
313
|
+
if (role1Position === role2Position) {
|
|
314
|
+
return Number(BigInt(resolvedRole2.id) - BigInt(resolvedRole1.id));
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
return role1Position - role2Position;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Gets the managed role a user created when joining the guild, if any
|
|
322
|
+
* <info>Only ever available for bots</info>
|
|
323
|
+
* @param {UserResolvable} user The user to access the bot role for
|
|
324
|
+
* @returns {?Role}
|
|
325
|
+
*/
|
|
326
|
+
botRoleFor(user) {
|
|
327
|
+
const userId = this.client.users.resolveId(user);
|
|
328
|
+
if (!userId) return null;
|
|
329
|
+
return this.cache.find(role => role.tags?.botId === userId) ?? null;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* The `@everyone` role of the guild
|
|
334
|
+
* @type {Role}
|
|
335
|
+
* @readonly
|
|
336
|
+
*/
|
|
337
|
+
get everyone() {
|
|
338
|
+
return this.cache.get(this.guild.id);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* The premium subscriber role of the guild, if any
|
|
343
|
+
* @type {?Role}
|
|
344
|
+
* @readonly
|
|
345
|
+
*/
|
|
346
|
+
get premiumSubscriberRole() {
|
|
347
|
+
return this.cache.find(role => role.tags?.premiumSubscriberRole) ?? null;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* The role with the highest position in the cache
|
|
352
|
+
* @type {Role}
|
|
353
|
+
* @readonly
|
|
354
|
+
*/
|
|
355
|
+
get highest() {
|
|
356
|
+
return this.cache.reduce((prev, role) => (role.comparePositionTo(prev) > 0 ? role : prev), this.cache.first());
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
module.exports = RoleManager;
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { Routes } = require('discord-api-types/v10');
|
|
4
|
+
const CachedManager = require('./CachedManager');
|
|
5
|
+
const { DiscordjsTypeError, DiscordjsError, ErrorCodes } = require('../errors');
|
|
6
|
+
const { StageInstance } = require('../structures/StageInstance');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Manages API methods for {@link StageInstance} objects and holds their cache.
|
|
10
|
+
* @extends {CachedManager}
|
|
11
|
+
*/
|
|
12
|
+
class StageInstanceManager extends CachedManager {
|
|
13
|
+
constructor(guild, iterable) {
|
|
14
|
+
super(guild.client, StageInstance, iterable);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* The guild this manager belongs to
|
|
18
|
+
* @type {Guild}
|
|
19
|
+
*/
|
|
20
|
+
this.guild = guild;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* The cache of this Manager
|
|
25
|
+
* @type {Collection<Snowflake, StageInstance>}
|
|
26
|
+
* @name StageInstanceManager#cache
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Options used to create a stage instance.
|
|
31
|
+
* @typedef {Object} StageInstanceCreateOptions
|
|
32
|
+
* @property {string} topic The topic of the stage instance
|
|
33
|
+
* @property {StageInstancePrivacyLevel} [privacyLevel] The privacy level of the stage instance
|
|
34
|
+
* @property {boolean} [sendStartNotification] Whether to notify `@everyone` that the stage instance has started
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Data that can be resolved to a Stage Channel object. This can be:
|
|
39
|
+
* * A StageChannel
|
|
40
|
+
* * A Snowflake
|
|
41
|
+
* @typedef {StageChannel|Snowflake} StageChannelResolvable
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Creates a new stage instance.
|
|
46
|
+
* @param {StageChannelResolvable} channel The stage channel to associate the created stage instance to
|
|
47
|
+
* @param {StageInstanceCreateOptions} options The options to create the stage instance
|
|
48
|
+
* @returns {Promise<StageInstance>}
|
|
49
|
+
* @example
|
|
50
|
+
* // Create a stage instance
|
|
51
|
+
* guild.stageInstances.create('1234567890123456789', {
|
|
52
|
+
* topic: 'A very creative topic',
|
|
53
|
+
* privacyLevel: GuildPrivacyLevel.GuildOnly
|
|
54
|
+
* })
|
|
55
|
+
* .then(stageInstance => console.log(stageInstance))
|
|
56
|
+
* .catch(console.error);
|
|
57
|
+
*/
|
|
58
|
+
async create(channel, options) {
|
|
59
|
+
const channelId = this.guild.channels.resolveId(channel);
|
|
60
|
+
if (!channelId) throw new DiscordjsError(ErrorCodes.StageChannelResolve);
|
|
61
|
+
if (typeof options !== 'object') throw new DiscordjsTypeError(ErrorCodes.InvalidType, 'options', 'object', true);
|
|
62
|
+
let { topic, privacyLevel, sendStartNotification } = options;
|
|
63
|
+
|
|
64
|
+
const data = await this.client.rest.post(Routes.stageInstances(), {
|
|
65
|
+
body: {
|
|
66
|
+
channel_id: channelId,
|
|
67
|
+
topic,
|
|
68
|
+
privacy_level: privacyLevel,
|
|
69
|
+
send_start_notification: sendStartNotification,
|
|
70
|
+
},
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
return this._add(data);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Fetches the stage instance associated with a stage channel, if it exists.
|
|
78
|
+
* @param {StageChannelResolvable} channel The stage channel whose associated stage instance is to be fetched
|
|
79
|
+
* @param {BaseFetchOptions} [options] Additional options for this fetch
|
|
80
|
+
* @returns {Promise<StageInstance>}
|
|
81
|
+
* @example
|
|
82
|
+
* // Fetch a stage instance
|
|
83
|
+
* guild.stageInstances.fetch('1234567890123456789')
|
|
84
|
+
* .then(stageInstance => console.log(stageInstance))
|
|
85
|
+
* .catch(console.error);
|
|
86
|
+
*/
|
|
87
|
+
async fetch(channel, { cache = true, force = false } = {}) {
|
|
88
|
+
const channelId = this.guild.channels.resolveId(channel);
|
|
89
|
+
if (!channelId) throw new DiscordjsError(ErrorCodes.StageChannelResolve);
|
|
90
|
+
|
|
91
|
+
if (!force) {
|
|
92
|
+
const existing = this.cache.find(stageInstance => stageInstance.channelId === channelId);
|
|
93
|
+
if (existing) return existing;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const data = await this.client.rest.get(Routes.stageInstance(channelId));
|
|
97
|
+
return this._add(data, cache);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Options used to edit an existing stage instance.
|
|
102
|
+
* @typedef {Object} StageInstanceEditOptions
|
|
103
|
+
* @property {string} [topic] The new topic of the stage instance
|
|
104
|
+
* @property {StageInstancePrivacyLevel} [privacyLevel] The new privacy level of the stage instance
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Edits an existing stage instance.
|
|
109
|
+
* @param {StageChannelResolvable} channel The stage channel whose associated stage instance is to be edited
|
|
110
|
+
* @param {StageInstanceEditOptions} options The options to edit the stage instance
|
|
111
|
+
* @returns {Promise<StageInstance>}
|
|
112
|
+
* @example
|
|
113
|
+
* // Edit a stage instance
|
|
114
|
+
* guild.stageInstances.edit('1234567890123456789', { topic: 'new topic' })
|
|
115
|
+
* .then(stageInstance => console.log(stageInstance))
|
|
116
|
+
* .catch(console.error);
|
|
117
|
+
*/
|
|
118
|
+
async edit(channel, options) {
|
|
119
|
+
if (typeof options !== 'object') throw new DiscordjsTypeError(ErrorCodes.InvalidType, 'options', 'object', true);
|
|
120
|
+
const channelId = this.guild.channels.resolveId(channel);
|
|
121
|
+
if (!channelId) throw new DiscordjsError(ErrorCodes.StageChannelResolve);
|
|
122
|
+
|
|
123
|
+
let { topic, privacyLevel } = options;
|
|
124
|
+
|
|
125
|
+
const data = await this.client.rest.patch(Routes.stageInstance(channelId), {
|
|
126
|
+
body: {
|
|
127
|
+
topic,
|
|
128
|
+
privacy_level: privacyLevel,
|
|
129
|
+
},
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
if (this.cache.has(data.id)) {
|
|
133
|
+
const clone = this.cache.get(data.id)._clone();
|
|
134
|
+
clone._patch(data);
|
|
135
|
+
return clone;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return this._add(data);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Deletes an existing stage instance.
|
|
143
|
+
* @param {StageChannelResolvable} channel The stage channel whose associated stage instance is to be deleted
|
|
144
|
+
* @returns {Promise<void>}
|
|
145
|
+
*/
|
|
146
|
+
async delete(channel) {
|
|
147
|
+
const channelId = this.guild.channels.resolveId(channel);
|
|
148
|
+
if (!channelId) throw new DiscordjsError(ErrorCodes.StageChannelResolve);
|
|
149
|
+
|
|
150
|
+
await this.client.rest.delete(Routes.stageInstance(channelId));
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
module.exports = StageInstanceManager;
|