safeness-sb-new 0.0.1

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.
Files changed (343) hide show
  1. package/README.md +115 -0
  2. package/package.json +96 -0
  3. package/src/WebSocket.js +39 -0
  4. package/src/client/BaseClient.js +86 -0
  5. package/src/client/Client.js +836 -0
  6. package/src/client/WebhookClient.js +61 -0
  7. package/src/client/actions/Action.js +120 -0
  8. package/src/client/actions/ActionsManager.js +78 -0
  9. package/src/client/actions/ApplicationCommandPermissionsUpdate.js +34 -0
  10. package/src/client/actions/AutoModerationActionExecution.js +27 -0
  11. package/src/client/actions/AutoModerationRuleCreate.js +28 -0
  12. package/src/client/actions/AutoModerationRuleDelete.js +32 -0
  13. package/src/client/actions/AutoModerationRuleUpdate.js +30 -0
  14. package/src/client/actions/ChannelCreate.js +23 -0
  15. package/src/client/actions/ChannelDelete.js +39 -0
  16. package/src/client/actions/ChannelUpdate.js +43 -0
  17. package/src/client/actions/GuildAuditLogEntryCreate.js +29 -0
  18. package/src/client/actions/GuildBanAdd.js +20 -0
  19. package/src/client/actions/GuildBanRemove.js +25 -0
  20. package/src/client/actions/GuildChannelsPositionUpdate.js +21 -0
  21. package/src/client/actions/GuildDelete.js +65 -0
  22. package/src/client/actions/GuildEmojiCreate.js +20 -0
  23. package/src/client/actions/GuildEmojiDelete.js +21 -0
  24. package/src/client/actions/GuildEmojiUpdate.js +20 -0
  25. package/src/client/actions/GuildEmojisUpdate.js +34 -0
  26. package/src/client/actions/GuildIntegrationsUpdate.js +19 -0
  27. package/src/client/actions/GuildMemberRemove.js +33 -0
  28. package/src/client/actions/GuildMemberUpdate.js +44 -0
  29. package/src/client/actions/GuildRoleCreate.js +25 -0
  30. package/src/client/actions/GuildRoleDelete.js +31 -0
  31. package/src/client/actions/GuildRoleUpdate.js +39 -0
  32. package/src/client/actions/GuildRolesPositionUpdate.js +21 -0
  33. package/src/client/actions/GuildScheduledEventCreate.js +27 -0
  34. package/src/client/actions/GuildScheduledEventDelete.js +31 -0
  35. package/src/client/actions/GuildScheduledEventUpdate.js +30 -0
  36. package/src/client/actions/GuildScheduledEventUserAdd.js +32 -0
  37. package/src/client/actions/GuildScheduledEventUserRemove.js +32 -0
  38. package/src/client/actions/GuildStickerCreate.js +20 -0
  39. package/src/client/actions/GuildStickerDelete.js +21 -0
  40. package/src/client/actions/GuildStickerUpdate.js +20 -0
  41. package/src/client/actions/GuildStickersUpdate.js +34 -0
  42. package/src/client/actions/GuildUpdate.js +33 -0
  43. package/src/client/actions/InviteCreate.js +28 -0
  44. package/src/client/actions/InviteDelete.js +30 -0
  45. package/src/client/actions/MessageCreate.js +46 -0
  46. package/src/client/actions/MessageDelete.js +32 -0
  47. package/src/client/actions/MessageDeleteBulk.js +46 -0
  48. package/src/client/actions/MessageReactionAdd.js +56 -0
  49. package/src/client/actions/MessageReactionRemove.js +45 -0
  50. package/src/client/actions/MessageReactionRemoveAll.js +33 -0
  51. package/src/client/actions/MessageReactionRemoveEmoji.js +28 -0
  52. package/src/client/actions/MessageUpdate.js +26 -0
  53. package/src/client/actions/PresenceUpdate.js +46 -0
  54. package/src/client/actions/StageInstanceCreate.js +28 -0
  55. package/src/client/actions/StageInstanceDelete.js +33 -0
  56. package/src/client/actions/StageInstanceUpdate.js +30 -0
  57. package/src/client/actions/ThreadCreate.js +24 -0
  58. package/src/client/actions/ThreadDelete.js +32 -0
  59. package/src/client/actions/ThreadListSync.js +59 -0
  60. package/src/client/actions/ThreadMemberUpdate.js +30 -0
  61. package/src/client/actions/ThreadMembersUpdate.js +34 -0
  62. package/src/client/actions/TypingStart.js +29 -0
  63. package/src/client/actions/UserUpdate.js +35 -0
  64. package/src/client/actions/VoiceStateUpdate.js +57 -0
  65. package/src/client/actions/WebhooksUpdate.js +20 -0
  66. package/src/client/voice/ClientVoiceManager.js +150 -0
  67. package/src/client/voice/VoiceConnection.js +849 -0
  68. package/src/client/voice/dispatcher/AnnexBDispatcher.js +120 -0
  69. package/src/client/voice/dispatcher/AudioDispatcher.js +115 -0
  70. package/src/client/voice/dispatcher/BaseDispatcher.js +405 -0
  71. package/src/client/voice/dispatcher/VPxDispatcher.js +52 -0
  72. package/src/client/voice/dispatcher/VideoDispatcher.js +31 -0
  73. package/src/client/voice/networking/VoiceUDPClient.js +188 -0
  74. package/src/client/voice/networking/VoiceWebSocket.js +280 -0
  75. package/src/client/voice/player/MediaPlayer.js +294 -0
  76. package/src/client/voice/player/processing/AnnexBNalSplitter.js +244 -0
  77. package/src/client/voice/player/processing/IvfSplitter.js +106 -0
  78. package/src/client/voice/receiver/PacketHandler.js +170 -0
  79. package/src/client/voice/receiver/Receiver.js +82 -0
  80. package/src/client/voice/receiver/video/IvfJoinner.js +106 -0
  81. package/src/client/voice/util/Function.js +14 -0
  82. package/src/client/voice/util/PlayInterface.js +122 -0
  83. package/src/client/voice/util/Secretbox.js +42 -0
  84. package/src/client/voice/util/Silence.js +16 -0
  85. package/src/client/voice/util/Socket.js +62 -0
  86. package/src/client/voice/util/VolumeInterface.js +104 -0
  87. package/src/client/websocket/WebSocketManager.js +392 -0
  88. package/src/client/websocket/WebSocketShard.js +906 -0
  89. package/src/client/websocket/handlers/APPLICATION_COMMAND_CREATE.js +18 -0
  90. package/src/client/websocket/handlers/APPLICATION_COMMAND_DELETE.js +20 -0
  91. package/src/client/websocket/handlers/APPLICATION_COMMAND_PERMISSIONS_UPDATE.js +5 -0
  92. package/src/client/websocket/handlers/APPLICATION_COMMAND_UPDATE.js +20 -0
  93. package/src/client/websocket/handlers/AUTO_MODERATION_ACTION_EXECUTION.js +5 -0
  94. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_CREATE.js +5 -0
  95. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_DELETE.js +5 -0
  96. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_UPDATE.js +5 -0
  97. package/src/client/websocket/handlers/CALL_CREATE.js +14 -0
  98. package/src/client/websocket/handlers/CALL_DELETE.js +11 -0
  99. package/src/client/websocket/handlers/CALL_UPDATE.js +11 -0
  100. package/src/client/websocket/handlers/CHANNEL_CREATE.js +5 -0
  101. package/src/client/websocket/handlers/CHANNEL_DELETE.js +5 -0
  102. package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +22 -0
  103. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_ADD.js +19 -0
  104. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_REMOVE.js +16 -0
  105. package/src/client/websocket/handlers/CHANNEL_UPDATE.js +16 -0
  106. package/src/client/websocket/handlers/GUILD_AUDIT_LOG_ENTRY_CREATE.js +5 -0
  107. package/src/client/websocket/handlers/GUILD_BAN_ADD.js +5 -0
  108. package/src/client/websocket/handlers/GUILD_BAN_REMOVE.js +5 -0
  109. package/src/client/websocket/handlers/GUILD_CREATE.js +52 -0
  110. package/src/client/websocket/handlers/GUILD_DELETE.js +5 -0
  111. package/src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js +5 -0
  112. package/src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js +5 -0
  113. package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +39 -0
  114. package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +20 -0
  115. package/src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js +5 -0
  116. package/src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js +5 -0
  117. package/src/client/websocket/handlers/GUILD_ROLE_CREATE.js +5 -0
  118. package/src/client/websocket/handlers/GUILD_ROLE_DELETE.js +5 -0
  119. package/src/client/websocket/handlers/GUILD_ROLE_UPDATE.js +5 -0
  120. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_CREATE.js +5 -0
  121. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_DELETE.js +5 -0
  122. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_UPDATE.js +5 -0
  123. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_ADD.js +5 -0
  124. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_REMOVE.js +5 -0
  125. package/src/client/websocket/handlers/GUILD_STICKERS_UPDATE.js +5 -0
  126. package/src/client/websocket/handlers/GUILD_UPDATE.js +5 -0
  127. package/src/client/websocket/handlers/INTERACTION_MODAL_CREATE.js +12 -0
  128. package/src/client/websocket/handlers/INVITE_CREATE.js +5 -0
  129. package/src/client/websocket/handlers/INVITE_DELETE.js +5 -0
  130. package/src/client/websocket/handlers/MESSAGE_CREATE.js +5 -0
  131. package/src/client/websocket/handlers/MESSAGE_DELETE.js +5 -0
  132. package/src/client/websocket/handlers/MESSAGE_DELETE_BULK.js +5 -0
  133. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_ADD.js +22 -0
  134. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_REMOVE.js +12 -0
  135. package/src/client/websocket/handlers/MESSAGE_REACTION_ADD.js +5 -0
  136. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js +5 -0
  137. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js +5 -0
  138. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js +5 -0
  139. package/src/client/websocket/handlers/MESSAGE_UPDATE.js +16 -0
  140. package/src/client/websocket/handlers/PRESENCE_UPDATE.js +5 -0
  141. package/src/client/websocket/handlers/READY.js +120 -0
  142. package/src/client/websocket/handlers/RELATIONSHIP_ADD.js +19 -0
  143. package/src/client/websocket/handlers/RELATIONSHIP_REMOVE.js +17 -0
  144. package/src/client/websocket/handlers/RELATIONSHIP_UPDATE.js +41 -0
  145. package/src/client/websocket/handlers/RESUMED.js +14 -0
  146. package/src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js +5 -0
  147. package/src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js +5 -0
  148. package/src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js +5 -0
  149. package/src/client/websocket/handlers/THREAD_CREATE.js +5 -0
  150. package/src/client/websocket/handlers/THREAD_DELETE.js +5 -0
  151. package/src/client/websocket/handlers/THREAD_LIST_SYNC.js +5 -0
  152. package/src/client/websocket/handlers/THREAD_MEMBERS_UPDATE.js +5 -0
  153. package/src/client/websocket/handlers/THREAD_MEMBER_UPDATE.js +5 -0
  154. package/src/client/websocket/handlers/THREAD_UPDATE.js +16 -0
  155. package/src/client/websocket/handlers/TYPING_START.js +5 -0
  156. package/src/client/websocket/handlers/USER_GUILD_SETTINGS_UPDATE.js +6 -0
  157. package/src/client/websocket/handlers/USER_NOTE_UPDATE.js +5 -0
  158. package/src/client/websocket/handlers/USER_REQUIRED_ACTION_UPDATE.js +78 -0
  159. package/src/client/websocket/handlers/USER_SETTINGS_UPDATE.js +5 -0
  160. package/src/client/websocket/handlers/USER_UPDATE.js +5 -0
  161. package/src/client/websocket/handlers/VOICE_CHANNEL_STATUS_UPDATE.js +12 -0
  162. package/src/client/websocket/handlers/VOICE_SERVER_UPDATE.js +6 -0
  163. package/src/client/websocket/handlers/VOICE_STATE_UPDATE.js +5 -0
  164. package/src/client/websocket/handlers/WEBHOOKS_UPDATE.js +5 -0
  165. package/src/client/websocket/handlers/index.js +83 -0
  166. package/src/errors/DJSError.js +61 -0
  167. package/src/errors/Messages.js +208 -0
  168. package/src/errors/index.js +4 -0
  169. package/src/index.js +159 -0
  170. package/src/managers/ApplicationCommandManager.js +264 -0
  171. package/src/managers/ApplicationCommandPermissionsManager.js +417 -0
  172. package/src/managers/AutoModerationRuleManager.js +296 -0
  173. package/src/managers/BaseGuildEmojiManager.js +80 -0
  174. package/src/managers/BaseManager.js +19 -0
  175. package/src/managers/BillingManager.js +66 -0
  176. package/src/managers/CachedManager.js +71 -0
  177. package/src/managers/ChannelManager.js +138 -0
  178. package/src/managers/ClientUserSettingManager.js +372 -0
  179. package/src/managers/DataManager.js +61 -0
  180. package/src/managers/GuildBanManager.js +204 -0
  181. package/src/managers/GuildChannelManager.js +488 -0
  182. package/src/managers/GuildEmojiManager.js +171 -0
  183. package/src/managers/GuildEmojiRoleManager.js +118 -0
  184. package/src/managers/GuildForumThreadManager.js +108 -0
  185. package/src/managers/GuildInviteManager.js +213 -0
  186. package/src/managers/GuildManager.js +304 -0
  187. package/src/managers/GuildMemberManager.js +597 -0
  188. package/src/managers/GuildMemberRoleManager.js +191 -0
  189. package/src/managers/GuildScheduledEventManager.js +296 -0
  190. package/src/managers/GuildSettingManager.js +155 -0
  191. package/src/managers/GuildStickerManager.js +179 -0
  192. package/src/managers/GuildTextThreadManager.js +98 -0
  193. package/src/managers/InteractionManager.js +39 -0
  194. package/src/managers/MessageManager.js +391 -0
  195. package/src/managers/PermissionOverwriteManager.js +166 -0
  196. package/src/managers/PresenceManager.js +58 -0
  197. package/src/managers/ReactionManager.js +67 -0
  198. package/src/managers/ReactionUserManager.js +71 -0
  199. package/src/managers/RelationshipManager.js +265 -0
  200. package/src/managers/RoleManager.js +352 -0
  201. package/src/managers/StageInstanceManager.js +162 -0
  202. package/src/managers/ThreadManager.js +174 -0
  203. package/src/managers/ThreadMemberManager.js +186 -0
  204. package/src/managers/UserManager.js +146 -0
  205. package/src/managers/UserNoteManager.js +53 -0
  206. package/src/managers/VoiceStateManager.js +37 -0
  207. package/src/rest/APIRequest.js +159 -0
  208. package/src/rest/APIRouter.js +53 -0
  209. package/src/rest/DiscordAPIError.js +104 -0
  210. package/src/rest/HTTPError.js +62 -0
  211. package/src/rest/RESTManager.js +62 -0
  212. package/src/rest/RateLimitError.js +55 -0
  213. package/src/rest/RequestHandler.js +444 -0
  214. package/src/sharding/Shard.js +443 -0
  215. package/src/sharding/ShardClientUtil.js +275 -0
  216. package/src/sharding/ShardingManager.js +318 -0
  217. package/src/structures/AnonymousGuild.js +98 -0
  218. package/src/structures/ApplicationCommand.js +593 -0
  219. package/src/structures/ApplicationRoleConnectionMetadata.js +48 -0
  220. package/src/structures/AutoModerationActionExecution.js +89 -0
  221. package/src/structures/AutoModerationRule.js +294 -0
  222. package/src/structures/AutocompleteInteraction.js +107 -0
  223. package/src/structures/Base.js +43 -0
  224. package/src/structures/BaseCommandInteraction.js +211 -0
  225. package/src/structures/BaseGuild.js +116 -0
  226. package/src/structures/BaseGuildEmoji.js +56 -0
  227. package/src/structures/BaseGuildTextChannel.js +191 -0
  228. package/src/structures/BaseGuildVoiceChannel.js +241 -0
  229. package/src/structures/BaseMessageComponent.js +114 -0
  230. package/src/structures/ButtonInteraction.js +11 -0
  231. package/src/structures/CallState.js +63 -0
  232. package/src/structures/CategoryChannel.js +85 -0
  233. package/src/structures/Channel.js +270 -0
  234. package/src/structures/ClientPresence.js +77 -0
  235. package/src/structures/ClientUser.js +450 -0
  236. package/src/structures/CommandInteraction.js +41 -0
  237. package/src/structures/CommandInteractionOptionResolver.js +276 -0
  238. package/src/structures/ContextMenuInteraction.js +65 -0
  239. package/src/structures/DMChannel.js +217 -0
  240. package/src/structures/DirectoryChannel.js +20 -0
  241. package/src/structures/Emoji.js +148 -0
  242. package/src/structures/ForumChannel.js +261 -0
  243. package/src/structures/GroupDMChannel.js +387 -0
  244. package/src/structures/Guild.js +1608 -0
  245. package/src/structures/GuildAuditLogs.js +729 -0
  246. package/src/structures/GuildBan.js +59 -0
  247. package/src/structures/GuildBoost.js +108 -0
  248. package/src/structures/GuildChannel.js +468 -0
  249. package/src/structures/GuildEmoji.js +161 -0
  250. package/src/structures/GuildMember.js +568 -0
  251. package/src/structures/GuildPreview.js +191 -0
  252. package/src/structures/GuildPreviewEmoji.js +27 -0
  253. package/src/structures/GuildScheduledEvent.js +441 -0
  254. package/src/structures/GuildTemplate.js +236 -0
  255. package/src/structures/Integration.js +188 -0
  256. package/src/structures/IntegrationApplication.js +96 -0
  257. package/src/structures/Interaction.js +290 -0
  258. package/src/structures/InteractionCollector.js +248 -0
  259. package/src/structures/InteractionWebhook.js +43 -0
  260. package/src/structures/Invite.js +358 -0
  261. package/src/structures/InviteGuild.js +23 -0
  262. package/src/structures/InviteStageInstance.js +86 -0
  263. package/src/structures/Message.js +1227 -0
  264. package/src/structures/MessageActionRow.js +103 -0
  265. package/src/structures/MessageAttachment.js +204 -0
  266. package/src/structures/MessageButton.js +165 -0
  267. package/src/structures/MessageCollector.js +146 -0
  268. package/src/structures/MessageComponentInteraction.js +120 -0
  269. package/src/structures/MessageContextMenuInteraction.js +20 -0
  270. package/src/structures/MessageEmbed.js +586 -0
  271. package/src/structures/MessageMentions.js +273 -0
  272. package/src/structures/MessagePayload.js +318 -0
  273. package/src/structures/MessagePoll.js +238 -0
  274. package/src/structures/MessageReaction.js +171 -0
  275. package/src/structures/MessageSelectMenu.js +140 -0
  276. package/src/structures/Modal.js +161 -0
  277. package/src/structures/ModalSubmitFieldsResolver.js +53 -0
  278. package/src/structures/ModalSubmitInteraction.js +119 -0
  279. package/src/structures/NewsChannel.js +32 -0
  280. package/src/structures/OAuth2Guild.js +28 -0
  281. package/src/structures/PermissionOverwrites.js +196 -0
  282. package/src/structures/Presence.js +1131 -0
  283. package/src/structures/ReactionCollector.js +229 -0
  284. package/src/structures/ReactionEmoji.js +31 -0
  285. package/src/structures/Role.js +531 -0
  286. package/src/structures/SelectMenuInteraction.js +21 -0
  287. package/src/structures/StageChannel.js +104 -0
  288. package/src/structures/StageInstance.js +208 -0
  289. package/src/structures/Sticker.js +310 -0
  290. package/src/structures/StickerPack.js +95 -0
  291. package/src/structures/StoreChannel.js +56 -0
  292. package/src/structures/Team.js +118 -0
  293. package/src/structures/TeamMember.js +71 -0
  294. package/src/structures/TextChannel.js +33 -0
  295. package/src/structures/TextInputComponent.js +131 -0
  296. package/src/structures/ThreadChannel.js +607 -0
  297. package/src/structures/ThreadMember.js +105 -0
  298. package/src/structures/Typing.js +74 -0
  299. package/src/structures/User.js +543 -0
  300. package/src/structures/UserContextMenuInteraction.js +29 -0
  301. package/src/structures/VoiceChannel.js +110 -0
  302. package/src/structures/VoiceRegion.js +53 -0
  303. package/src/structures/VoiceState.js +345 -0
  304. package/src/structures/WebEmbed.js +373 -0
  305. package/src/structures/Webhook.js +467 -0
  306. package/src/structures/WelcomeChannel.js +60 -0
  307. package/src/structures/WelcomeScreen.js +48 -0
  308. package/src/structures/Widget.js +87 -0
  309. package/src/structures/WidgetMember.js +99 -0
  310. package/src/structures/interfaces/Application.js +313 -0
  311. package/src/structures/interfaces/Collector.js +300 -0
  312. package/src/structures/interfaces/InteractionResponses.js +313 -0
  313. package/src/structures/interfaces/TextBasedChannel.js +719 -0
  314. package/src/util/ActivityFlags.js +44 -0
  315. package/src/util/ApplicationFlags.js +76 -0
  316. package/src/util/AttachmentFlags.js +38 -0
  317. package/src/util/BitField.js +170 -0
  318. package/src/util/ChannelFlags.js +45 -0
  319. package/src/util/Constants.js +1815 -0
  320. package/src/util/DataResolver.js +145 -0
  321. package/src/util/Formatters.js +228 -0
  322. package/src/util/GuildMemberFlags.js +43 -0
  323. package/src/util/Intents.js +74 -0
  324. package/src/util/InviteFlags.js +29 -0
  325. package/src/util/LimitedCollection.js +131 -0
  326. package/src/util/MessageFlags.js +54 -0
  327. package/src/util/Options.js +336 -0
  328. package/src/util/Permissions.js +202 -0
  329. package/src/util/PremiumUsageFlags.js +31 -0
  330. package/src/util/PurchasedFlags.js +33 -0
  331. package/src/util/RemoteAuth.js +382 -0
  332. package/src/util/RoleFlags.js +37 -0
  333. package/src/util/SnowflakeUtil.js +92 -0
  334. package/src/util/Speaking.js +33 -0
  335. package/src/util/Sweepers.js +466 -0
  336. package/src/util/SystemChannelFlags.js +55 -0
  337. package/src/util/ThreadMemberFlags.js +30 -0
  338. package/src/util/UserFlags.js +104 -0
  339. package/src/util/Util.js +889 -0
  340. package/typings/enums.d.ts +297 -0
  341. package/typings/index.d.ts +7670 -0
  342. package/typings/index.test-d.ts +0 -0
  343. package/typings/rawDataTypes.d.ts +342 -0
@@ -0,0 +1,889 @@
1
+ 'use strict';
2
+
3
+ const { Agent } = require('node:http');
4
+ const { parse } = require('node:path');
5
+ const process = require('node:process');
6
+ const { setTimeout } = require('node:timers');
7
+ const { Collection } = require('@discordjs/collection');
8
+ const fetch = require('node-fetch');
9
+ const { Colors, Events } = require('./Constants');
10
+ const { Error: DiscordError, RangeError, TypeError } = require('../errors');
11
+ const has = (o, k) => Object.prototype.hasOwnProperty.call(o, k);
12
+ const isObject = d => typeof d === 'object' && d !== null;
13
+
14
+ let deprecationEmittedForSplitMessage = false;
15
+ let deprecationEmittedForRemoveMentions = false;
16
+ let deprecationEmittedForResolveAutoArchiveMaxLimit = false;
17
+
18
+ const TextSortableGroupTypes = ['GUILD_TEXT', 'GUILD_ANNOUCMENT', 'GUILD_FORUM'];
19
+ const VoiceSortableGroupTypes = ['GUILD_VOICE', 'GUILD_STAGE_VOICE'];
20
+ const CategorySortableGroupTypes = ['GUILD_CATEGORY'];
21
+
22
+ /**
23
+ * Contains various general-purpose utility methods.
24
+ */
25
+ class Util extends null {
26
+ /**
27
+ * Flatten an object. Any properties that are collections will get converted to an array of keys.
28
+ * @param {Object} obj The object to flatten.
29
+ * @param {...Object<string, boolean|string>} [props] Specific properties to include/exclude.
30
+ * @returns {Object}
31
+ */
32
+ static flatten(obj, ...props) {
33
+ if (!isObject(obj)) return obj;
34
+
35
+ const objProps = Object.keys(obj)
36
+ .filter(k => !k.startsWith('_'))
37
+ .map(k => ({ [k]: true }));
38
+
39
+ props = objProps.length ? Object.assign(...objProps, ...props) : Object.assign({}, ...props);
40
+
41
+ const out = {};
42
+
43
+ for (let [prop, newProp] of Object.entries(props)) {
44
+ if (!newProp) continue;
45
+ newProp = newProp === true ? prop : newProp;
46
+
47
+ const element = obj[prop];
48
+ const elemIsObj = isObject(element);
49
+ const valueOf = elemIsObj && typeof element.valueOf === 'function' ? element.valueOf() : null;
50
+ const hasToJSON = elemIsObj && typeof element.toJSON === 'function';
51
+
52
+ // If it's a Collection, make the array of keys
53
+ if (element instanceof Collection) out[newProp] = Array.from(element.keys());
54
+ // If the valueOf is a Collection, use its array of keys
55
+ else if (valueOf instanceof Collection) out[newProp] = Array.from(valueOf.keys());
56
+ // If it's an array, call toJSON function on each element if present, otherwise flatten each element
57
+ else if (Array.isArray(element)) out[newProp] = element.map(e => e.toJSON?.() ?? Util.flatten(e));
58
+ // If it's an object with a primitive `valueOf`, use that value
59
+ else if (typeof valueOf !== 'object') out[newProp] = valueOf;
60
+ // If it's an object with a toJSON function, use the return value of it
61
+ else if (hasToJSON) out[newProp] = element.toJSON();
62
+ // If element is an object, use the flattened version of it
63
+ else if (typeof element === 'object') out[newProp] = Util.flatten(element);
64
+ // If it's a primitive
65
+ else if (!elemIsObj) out[newProp] = element;
66
+ }
67
+
68
+ return out;
69
+ }
70
+
71
+ /**
72
+ * Options for splitting a message.
73
+ * @typedef {Object} SplitOptions
74
+ * @property {number} [maxLength=2000] Maximum character length per message piece
75
+ * @property {string|string[]|RegExp|RegExp[]} [char='\n'] Character(s) or Regex(es) to split the message with,
76
+ * an array can be used to split multiple times
77
+ * @property {string} [prepend=''] Text to prepend to every piece except the first
78
+ * @property {string} [append=''] Text to append to every piece except the last
79
+ */
80
+
81
+ /**
82
+ * Splits a string into multiple chunks at a designated character that do not exceed a specific length.
83
+ * @param {string} text Content to split
84
+ * @param {SplitOptions} [options] Options controlling the behavior of the split
85
+ * @deprecated This will be removed in the next major version.
86
+ * @returns {string[]}
87
+ */
88
+ static splitMessage(text, { maxLength = 2_000, char = '\n', prepend = '', append = '' } = {}) {
89
+ if (!deprecationEmittedForSplitMessage) {
90
+ process.emitWarning(
91
+ 'The Util.splitMessage method is deprecated and will be removed in the next major version.',
92
+ 'DeprecationWarning',
93
+ );
94
+
95
+ deprecationEmittedForSplitMessage = true;
96
+ }
97
+
98
+ text = Util.verifyString(text);
99
+ if (text.length <= maxLength) return [text];
100
+ let splitText = [text];
101
+ if (Array.isArray(char)) {
102
+ while (char.length > 0 && splitText.some(elem => elem.length > maxLength)) {
103
+ const currentChar = char.shift();
104
+ if (currentChar instanceof RegExp) {
105
+ splitText = splitText.flatMap(chunk => chunk.match(currentChar));
106
+ } else {
107
+ splitText = splitText.flatMap(chunk => chunk.split(currentChar));
108
+ }
109
+ }
110
+ } else {
111
+ splitText = text.split(char);
112
+ }
113
+ if (splitText.some(elem => elem.length > maxLength)) throw new RangeError('SPLIT_MAX_LEN');
114
+ const messages = [];
115
+ let msg = '';
116
+ for (const chunk of splitText) {
117
+ if (msg && (msg + char + chunk + append).length > maxLength) {
118
+ messages.push(msg + append);
119
+ msg = prepend;
120
+ }
121
+ msg += (msg && msg !== prepend ? char : '') + chunk;
122
+ }
123
+ return messages.concat(msg).filter(m => m);
124
+ }
125
+
126
+ /**
127
+ * Options used to escape markdown.
128
+ * @typedef {Object} EscapeMarkdownOptions
129
+ * @property {boolean} [codeBlock=true] Whether to escape code blocks
130
+ * @property {boolean} [inlineCode=true] Whether to escape inline code
131
+ * @property {boolean} [bold=true] Whether to escape bolds
132
+ * @property {boolean} [italic=true] Whether to escape italics
133
+ * @property {boolean} [underline=true] Whether to escape underlines
134
+ * @property {boolean} [strikethrough=true] Whether to escape strikethroughs
135
+ * @property {boolean} [spoiler=true] Whether to escape spoilers
136
+ * @property {boolean} [codeBlockContent=true] Whether to escape text inside code blocks
137
+ * @property {boolean} [inlineCodeContent=true] Whether to escape text inside inline code
138
+ * @property {boolean} [escape=true] Whether to escape escape characters
139
+ * @property {boolean} [heading=false] Whether to escape headings
140
+ * @property {boolean} [bulletedList=false] Whether to escape bulleted lists
141
+ * @property {boolean} [numberedList=false] Whether to escape numbered lists
142
+ * @property {boolean} [maskedLink=false] Whether to escape masked links
143
+ */
144
+
145
+ /**
146
+ * Escapes any Discord-flavour markdown in a string.
147
+ * @param {string} text Content to escape
148
+ * @param {EscapeMarkdownOptions} [options={}] Options for escaping the markdown
149
+ * @returns {string}
150
+ */
151
+ static escapeMarkdown(
152
+ text,
153
+ {
154
+ codeBlock = true,
155
+ inlineCode = true,
156
+ bold = true,
157
+ italic = true,
158
+ underline = true,
159
+ strikethrough = true,
160
+ spoiler = true,
161
+ codeBlockContent = true,
162
+ inlineCodeContent = true,
163
+ escape = true,
164
+ heading = false,
165
+ bulletedList = false,
166
+ numberedList = false,
167
+ maskedLink = false,
168
+ } = {},
169
+ ) {
170
+ if (!codeBlockContent) {
171
+ return text
172
+ .split('```')
173
+ .map((subString, index, array) => {
174
+ if (index % 2 && index !== array.length - 1) return subString;
175
+ return Util.escapeMarkdown(subString, {
176
+ inlineCode,
177
+ bold,
178
+ italic,
179
+ underline,
180
+ strikethrough,
181
+ spoiler,
182
+ inlineCodeContent,
183
+ escape,
184
+ heading,
185
+ bulletedList,
186
+ numberedList,
187
+ maskedLink,
188
+ });
189
+ })
190
+ .join(codeBlock ? '\\`\\`\\`' : '```');
191
+ }
192
+ if (!inlineCodeContent) {
193
+ return text
194
+ .split(/(?<=^|[^`])`(?=[^`]|$)/g)
195
+ .map((subString, index, array) => {
196
+ if (index % 2 && index !== array.length - 1) return subString;
197
+ return Util.escapeMarkdown(subString, {
198
+ codeBlock,
199
+ bold,
200
+ italic,
201
+ underline,
202
+ strikethrough,
203
+ spoiler,
204
+ escape,
205
+ heading,
206
+ bulletedList,
207
+ numberedList,
208
+ maskedLink,
209
+ });
210
+ })
211
+ .join(inlineCode ? '\\`' : '`');
212
+ }
213
+ if (escape) text = Util.escapeEscape(text);
214
+ if (inlineCode) text = Util.escapeInlineCode(text);
215
+ if (codeBlock) text = Util.escapeCodeBlock(text);
216
+ if (italic) text = Util.escapeItalic(text);
217
+ if (bold) text = Util.escapeBold(text);
218
+ if (underline) text = Util.escapeUnderline(text);
219
+ if (strikethrough) text = Util.escapeStrikethrough(text);
220
+ if (spoiler) text = Util.escapeSpoiler(text);
221
+ if (heading) text = Util.escapeHeading(text);
222
+ if (bulletedList) text = Util.escapeBulletedList(text);
223
+ if (numberedList) text = Util.escapeNumberedList(text);
224
+ if (maskedLink) text = Util.escapeMaskedLink(text);
225
+ return text;
226
+ }
227
+
228
+ /**
229
+ * Escapes code block markdown in a string.
230
+ * @param {string} text Content to escape
231
+ * @returns {string}
232
+ */
233
+ static escapeCodeBlock(text) {
234
+ return text.replaceAll('```', '\\`\\`\\`');
235
+ }
236
+
237
+ /**
238
+ * Escapes inline code markdown in a string.
239
+ * @param {string} text Content to escape
240
+ * @returns {string}
241
+ */
242
+ static escapeInlineCode(text) {
243
+ return text.replace(/(?<=^|[^`])``?(?=[^`]|$)/g, match => (match.length === 2 ? '\\`\\`' : '\\`'));
244
+ }
245
+
246
+ /**
247
+ * Escapes italic markdown in a string.
248
+ * @param {string} text Content to escape
249
+ * @returns {string}
250
+ */
251
+ static escapeItalic(text) {
252
+ let i = 0;
253
+ text = text.replace(/(?<=^|[^*])\*([^*]|\*\*|$)/g, (_, match) => {
254
+ if (match === '**') return ++i % 2 ? `\\*${match}` : `${match}\\*`;
255
+ return `\\*${match}`;
256
+ });
257
+ i = 0;
258
+ return text.replace(/(?<=^|[^_])_([^_]|__|$)/g, (_, match) => {
259
+ if (match === '__') return ++i % 2 ? `\\_${match}` : `${match}\\_`;
260
+ return `\\_${match}`;
261
+ });
262
+ }
263
+
264
+ /**
265
+ * Escapes bold markdown in a string.
266
+ * @param {string} text Content to escape
267
+ * @returns {string}
268
+ */
269
+ static escapeBold(text) {
270
+ let i = 0;
271
+ return text.replace(/\*\*(\*)?/g, (_, match) => {
272
+ if (match) return ++i % 2 ? `${match}\\*\\*` : `\\*\\*${match}`;
273
+ return '\\*\\*';
274
+ });
275
+ }
276
+
277
+ /**
278
+ * Escapes underline markdown in a string.
279
+ * @param {string} text Content to escape
280
+ * @returns {string}
281
+ */
282
+ static escapeUnderline(text) {
283
+ let i = 0;
284
+ return text.replace(/__(_)?/g, (_, match) => {
285
+ if (match) return ++i % 2 ? `${match}\\_\\_` : `\\_\\_${match}`;
286
+ return '\\_\\_';
287
+ });
288
+ }
289
+
290
+ /**
291
+ * Escapes strikethrough markdown in a string.
292
+ * @param {string} text Content to escape
293
+ * @returns {string}
294
+ */
295
+ static escapeStrikethrough(text) {
296
+ return text.replaceAll('~~', '\\~\\~');
297
+ }
298
+
299
+ /**
300
+ * Escapes spoiler markdown in a string.
301
+ * @param {string} text Content to escape
302
+ * @returns {string}
303
+ */
304
+ static escapeSpoiler(text) {
305
+ return text.replaceAll('||', '\\|\\|');
306
+ }
307
+
308
+ /**
309
+ * Escapes escape characters in a string.
310
+ * @param {string} text Content to escape
311
+ * @returns {string}
312
+ */
313
+ static escapeEscape(text) {
314
+ return text.replaceAll('\\', '\\\\');
315
+ }
316
+
317
+ /**
318
+ * Escapes heading characters in a string.
319
+ * @param {string} text Content to escape
320
+ * @returns {string}
321
+ */
322
+ static escapeHeading(text) {
323
+ return text.replaceAll(/^( {0,2}[*-] +)?(#{1,3} )/gm, '$1\\$2');
324
+ }
325
+
326
+ /**
327
+ * Escapes bulleted list characters in a string.
328
+ * @param {string} text Content to escape
329
+ * @returns {string}
330
+ */
331
+ static escapeBulletedList(text) {
332
+ return text.replaceAll(/^( *)[*-]( +)/gm, '$1\\-$2');
333
+ }
334
+
335
+ /**
336
+ * Escapes numbered list characters in a string.
337
+ * @param {string} text Content to escape
338
+ * @returns {string}
339
+ */
340
+ static escapeNumberedList(text) {
341
+ return text.replaceAll(/^( *\d+)\./gm, '$1\\.');
342
+ }
343
+
344
+ /**
345
+ * Escapes masked link characters in a string.
346
+ * @param {string} text Content to escape
347
+ * @returns {string}
348
+ */
349
+ static escapeMaskedLink(text) {
350
+ return text.replaceAll(/\[.+\]\(.+\)/gm, '\\$&');
351
+ }
352
+
353
+ /**
354
+ * @typedef {Object} FetchRecommendedShardsOptions
355
+ * @property {number} [guildsPerShard=1000] Number of guilds assigned per shard
356
+ * @property {number} [multipleOf=1] The multiple the shard count should round up to. (16 for large bot sharding)
357
+ */
358
+
359
+ static fetchRecommendedShards() {
360
+ throw new DiscordError('INVALID_USER_API');
361
+ }
362
+
363
+ /**
364
+ * Parses emoji info out of a string. The string must be one of:
365
+ * * A UTF-8 emoji (no id)
366
+ * * A URL-encoded UTF-8 emoji (no id)
367
+ * * A Discord custom emoji (`<:name:id>` or `<a:name:id>`)
368
+ * @param {string} text Emoji string to parse
369
+ * @returns {APIEmoji} Object with `animated`, `name`, and `id` properties
370
+ * @private
371
+ */
372
+ static parseEmoji(text) {
373
+ if (text.includes('%')) text = decodeURIComponent(text);
374
+ if (!text.includes(':')) return { animated: false, name: text, id: null };
375
+ const match = text.match(/<?(?:(a):)?(\w{2,32}):(\d{17,19})?>?/);
376
+ return match && { animated: Boolean(match[1]), name: match[2], id: match[3] ?? null };
377
+ }
378
+
379
+ /**
380
+ * Resolves a partial emoji object from an {@link EmojiIdentifierResolvable}, without checking a Client.
381
+ * @param {EmojiIdentifierResolvable} emoji Emoji identifier to resolve
382
+ * @returns {?RawEmoji}
383
+ * @private
384
+ */
385
+ static resolvePartialEmoji(emoji) {
386
+ if (!emoji) return null;
387
+ if (typeof emoji === 'string') return /^\d{17,19}$/.test(emoji) ? { id: emoji } : Util.parseEmoji(emoji);
388
+ const { id, name, animated } = emoji;
389
+ if (!id && !name) return null;
390
+ return { id, name, animated: Boolean(animated) };
391
+ }
392
+
393
+ /**
394
+ * Shallow-copies an object with its class/prototype intact.
395
+ * @param {Object} obj Object to clone
396
+ * @returns {Object}
397
+ * @private
398
+ */
399
+ static cloneObject(obj) {
400
+ return Object.assign(Object.create(obj), obj);
401
+ }
402
+
403
+ /**
404
+ * Sets default properties on an object that aren't already specified.
405
+ * @param {Object} def Default properties
406
+ * @param {Object} given Object to assign defaults to
407
+ * @returns {Object}
408
+ * @private
409
+ */
410
+ static mergeDefault(def, given) {
411
+ if (!given) return def;
412
+ for (const key in def) {
413
+ if (!has(given, key) || given[key] === undefined) {
414
+ given[key] = def[key];
415
+ } else if (given[key] === Object(given[key])) {
416
+ given[key] = Util.mergeDefault(def[key], given[key]);
417
+ }
418
+ }
419
+
420
+ return given;
421
+ }
422
+
423
+ /**
424
+ * Options used to make an error object.
425
+ * @typedef {Object} MakeErrorOptions
426
+ * @property {string} name Error type
427
+ * @property {string} message Message for the error
428
+ * @property {string} stack Stack for the error
429
+ */
430
+
431
+ /**
432
+ * Makes an Error from a plain info object.
433
+ * @param {MakeErrorOptions} obj Error info
434
+ * @returns {Error}
435
+ * @private
436
+ */
437
+ static makeError(obj) {
438
+ const err = new Error(obj.message);
439
+ err.name = obj.name;
440
+ err.stack = obj.stack;
441
+ return err;
442
+ }
443
+
444
+ /**
445
+ * Makes a plain error info object from an Error.
446
+ * @param {Error} err Error to get info from
447
+ * @returns {MakeErrorOptions}
448
+ * @private
449
+ */
450
+ static makePlainError(err) {
451
+ return {
452
+ name: err.name,
453
+ message: err.message,
454
+ stack: err.stack,
455
+ };
456
+ }
457
+
458
+ /**
459
+ * Moves an element in an array *in place*.
460
+ * @param {Array<*>} array Array to modify
461
+ * @param {*} element Element to move
462
+ * @param {number} newIndex Index or offset to move the element to
463
+ * @param {boolean} [offset=false] Move the element by an offset amount rather than to a set index
464
+ * @returns {number}
465
+ * @private
466
+ */
467
+ static moveElementInArray(array, element, newIndex, offset = false) {
468
+ const index = array.indexOf(element);
469
+ newIndex = (offset ? index : 0) + newIndex;
470
+ if (newIndex > -1 && newIndex < array.length) {
471
+ const removedElement = array.splice(index, 1)[0];
472
+ array.splice(newIndex, 0, removedElement);
473
+ }
474
+ return array.indexOf(element);
475
+ }
476
+
477
+ /**
478
+ * Verifies the provided data is a string, otherwise throws provided error.
479
+ * @param {string} data The string resolvable to resolve
480
+ * @param {Function} [error] The Error constructor to instantiate. Defaults to Error
481
+ * @param {string} [errorMessage] The error message to throw with. Defaults to "Expected string, got <data> instead."
482
+ * @param {boolean} [allowEmpty=true] Whether an empty string should be allowed
483
+ * @returns {string}
484
+ */
485
+ static verifyString(
486
+ data,
487
+ error = Error,
488
+ errorMessage = `Expected a string, got ${data} instead.`,
489
+ allowEmpty = true,
490
+ ) {
491
+ if (typeof data !== 'string') throw new error(errorMessage);
492
+ if (!allowEmpty && data.length === 0) throw new error(errorMessage);
493
+ return data;
494
+ }
495
+
496
+ /**
497
+ * Can be a number, hex string, a {@link Color}, or an RGB array like:
498
+ * ```js
499
+ * [255, 0, 255] // purple
500
+ * ```
501
+ * @typedef {string|Color|number|number[]} ColorResolvable
502
+ */
503
+
504
+ /**
505
+ * Resolves a ColorResolvable into a color number.
506
+ * @param {ColorResolvable} color Color to resolve
507
+ * @returns {number} A color
508
+ */
509
+ static resolveColor(color) {
510
+ if (typeof color === 'string') {
511
+ if (color === 'RANDOM') return Math.floor(Math.random() * (0xffffff + 1));
512
+ if (color === 'DEFAULT') return 0;
513
+ color = Colors[color] ?? parseInt(color.replace('#', ''), 16);
514
+ } else if (Array.isArray(color)) {
515
+ color = (color[0] << 16) + (color[1] << 8) + color[2];
516
+ }
517
+
518
+ if (color < 0 || color > 0xffffff) throw new RangeError('COLOR_RANGE');
519
+ else if (Number.isNaN(color)) throw new TypeError('COLOR_CONVERT');
520
+
521
+ return color;
522
+ }
523
+
524
+ /**
525
+ * Sorts by Discord's position and id.
526
+ * @param {Collection} collection Collection of objects to sort
527
+ * @returns {Collection}
528
+ */
529
+ static discordSort(collection) {
530
+ const isGuildChannel = collection.first() instanceof GuildChannel;
531
+ return collection.sorted(
532
+ isGuildChannel
533
+ ? (a, b) => a.rawPosition - b.rawPosition || Number(BigInt(a.id) - BigInt(b.id))
534
+ : (a, b) => a.rawPosition - b.rawPosition || Number(BigInt(b.id) - BigInt(a.id)),
535
+ );
536
+ }
537
+
538
+ /**
539
+ * Sets the position of a Channel or Role.
540
+ * @param {Channel|Role} item Object to set the position of
541
+ * @param {number} position New position for the object
542
+ * @param {boolean} relative Whether `position` is relative to its current position
543
+ * @param {Collection<string, Channel|Role>} sorted A collection of the objects sorted properly
544
+ * @param {APIRouter} route Route to call PATCH on
545
+ * @param {string} [reason] Reason for the change
546
+ * @returns {Promise<Channel[]|Role[]>} Updated item list, with `id` and `position` properties
547
+ * @private
548
+ */
549
+ static async setPosition(item, position, relative, sorted, route, reason) {
550
+ let updatedItems = [...sorted.values()];
551
+ Util.moveElementInArray(updatedItems, item, position, relative);
552
+ updatedItems = updatedItems.map((r, i) => ({ id: r.id, position: i }));
553
+ await route.patch({ data: updatedItems, reason });
554
+ return updatedItems;
555
+ }
556
+
557
+ /**
558
+ * Alternative to Node's `path.basename`, removing query string after the extension if it exists.
559
+ * @param {string} path Path to get the basename of
560
+ * @param {string} [ext] File extension to remove
561
+ * @returns {string} Basename of the path
562
+ * @private
563
+ */
564
+ static basename(path, ext) {
565
+ const res = parse(path);
566
+ return ext && res.ext.startsWith(ext) ? res.name : res.base.split('?')[0];
567
+ }
568
+
569
+ /**
570
+ * Breaks user, role and everyone/here mentions by adding a zero width space after every @ character
571
+ * @param {string} str The string to sanitize
572
+ * @returns {string}
573
+ * @deprecated Use {@link BaseMessageOptions#allowedMentions} instead.
574
+ */
575
+ static removeMentions(str) {
576
+ if (!deprecationEmittedForRemoveMentions) {
577
+ process.emitWarning(
578
+ 'The Util.removeMentions method is deprecated. Use MessageOptions#allowedMentions instead.',
579
+ 'DeprecationWarning',
580
+ );
581
+
582
+ deprecationEmittedForRemoveMentions = true;
583
+ }
584
+
585
+ return Util._removeMentions(str);
586
+ }
587
+
588
+ static _removeMentions(str) {
589
+ return str.replaceAll('@', '@\u200b');
590
+ }
591
+
592
+ /**
593
+ * The content to have all mentions replaced by the equivalent text.
594
+ * <warn>When {@link Util.removeMentions} is removed, this method will no longer sanitize mentions.
595
+ * Use {@link BaseMessageOptions#allowedMentions} instead to prevent mentions when sending a message.</warn>
596
+ * @param {string} str The string to be converted
597
+ * @param {TextBasedChannels} channel The channel the string was sent in
598
+ * @returns {string}
599
+ */
600
+ static cleanContent(str, channel) {
601
+ str = str
602
+ .replace(/<@!?[0-9]+>/g, input => {
603
+ const id = input.replace(/<|!|>|@/g, '');
604
+ if (channel.type === 'DM') {
605
+ const user = channel.client.users.cache.get(id);
606
+ return user ? Util._removeMentions(`@${user.username}`) : input;
607
+ }
608
+
609
+ const member = channel.guild?.members.cache.get(id);
610
+ if (member) {
611
+ return Util._removeMentions(`@${member.displayName}`);
612
+ } else {
613
+ const user = channel.client.users.cache.get(id);
614
+ return user ? Util._removeMentions(`@${user.username}`) : input;
615
+ }
616
+ })
617
+ .replace(/<#[0-9]+>/g, input => {
618
+ const mentionedChannel = channel.client.channels.cache.get(input.replace(/<|#|>/g, ''));
619
+ return mentionedChannel ? `#${mentionedChannel.name}` : input;
620
+ })
621
+ .replace(/<@&[0-9]+>/g, input => {
622
+ if (channel.type === 'DM') return input;
623
+ const role = channel.guild.roles.cache.get(input.replace(/<|@|>|&/g, ''));
624
+ return role ? `@${role.name}` : input;
625
+ });
626
+ return str;
627
+ }
628
+
629
+ /**
630
+ * The content to put in a code block with all code block fences replaced by the equivalent backticks.
631
+ * @param {string} text The string to be converted
632
+ * @returns {string}
633
+ */
634
+ static cleanCodeBlockContent(text) {
635
+ return text.replaceAll('```', '`\u200b``');
636
+ }
637
+
638
+ /**
639
+ * Creates a sweep filter that sweeps archived threads
640
+ * @param {number} [lifetime=14400] How long a thread has to be archived to be valid for sweeping
641
+ * @deprecated When not using with `makeCache` use `Sweepers.archivedThreadSweepFilter` instead
642
+ * @returns {SweepFilter}
643
+ */
644
+ static archivedThreadSweepFilter(lifetime = 14400) {
645
+ const filter = require('./Sweepers').archivedThreadSweepFilter(lifetime);
646
+ filter.isDefault = true;
647
+ return filter;
648
+ }
649
+
650
+ /**
651
+ * Resolves the maximum time a guild's thread channels should automatically archive in case of no recent activity.
652
+ * @param {Guild} guild The guild to resolve this limit from.
653
+ * @deprecated This will be removed in the next major version.
654
+ * @returns {number}
655
+ */
656
+ static resolveAutoArchiveMaxLimit() {
657
+ if (!deprecationEmittedForResolveAutoArchiveMaxLimit) {
658
+ process.emitWarning(
659
+ // eslint-disable-next-line max-len
660
+ "The Util.resolveAutoArchiveMaxLimit method and the 'MAX' option are deprecated and will be removed in the next major version.",
661
+ 'DeprecationWarning',
662
+ );
663
+ deprecationEmittedForResolveAutoArchiveMaxLimit = true;
664
+ }
665
+ return 10080;
666
+ }
667
+
668
+ /**
669
+ * Transforms an API guild forum tag to camel-cased guild forum tag.
670
+ * @param {APIGuildForumTag} tag The tag to transform
671
+ * @returns {GuildForumTag}
672
+ * @ignore
673
+ */
674
+ static transformAPIGuildForumTag(tag) {
675
+ return {
676
+ id: tag.id,
677
+ name: tag.name,
678
+ moderated: tag.moderated,
679
+ emoji:
680
+ tag.emoji_id ?? tag.emoji_name
681
+ ? {
682
+ id: tag.emoji_id,
683
+ name: tag.emoji_name,
684
+ }
685
+ : null,
686
+ };
687
+ }
688
+
689
+ /**
690
+ * Transforms a camel-cased guild forum tag to an API guild forum tag.
691
+ * @param {GuildForumTag} tag The tag to transform
692
+ * @returns {APIGuildForumTag}
693
+ * @ignore
694
+ */
695
+ static transformGuildForumTag(tag) {
696
+ return {
697
+ id: tag.id,
698
+ name: tag.name,
699
+ moderated: tag.moderated,
700
+ emoji_id: tag.emoji?.id ?? null,
701
+ emoji_name: tag.emoji?.name ?? null,
702
+ };
703
+ }
704
+
705
+ /**
706
+ * Transforms an API guild forum default reaction object to a
707
+ * camel-cased guild forum default reaction object.
708
+ * @param {APIGuildForumDefaultReactionEmoji} defaultReaction The default reaction to transform
709
+ * @returns {DefaultReactionEmoji}
710
+ * @ignore
711
+ */
712
+ static transformAPIGuildDefaultReaction(defaultReaction) {
713
+ return {
714
+ id: defaultReaction.emoji_id,
715
+ name: defaultReaction.emoji_name,
716
+ };
717
+ }
718
+
719
+ /**
720
+ * Transforms a camel-cased guild forum default reaction object to an
721
+ * API guild forum default reaction object.
722
+ * @param {DefaultReactionEmoji} defaultReaction The default reaction to transform
723
+ * @returns {APIGuildForumDefaultReactionEmoji}
724
+ * @ignore
725
+ */
726
+ static transformGuildDefaultReaction(defaultReaction) {
727
+ return {
728
+ emoji_id: defaultReaction.id,
729
+ emoji_name: defaultReaction.name,
730
+ };
731
+ }
732
+
733
+ /**
734
+ * Gets an array of the channel types that can be moved in the channel group. For example, a GuildText channel would
735
+ * return an array containing the types that can be ordered within the text channels (always at the top), and a voice
736
+ * channel would return an array containing the types that can be ordered within the voice channels (always at the
737
+ * bottom).
738
+ * @param {ChannelType} type The type of the channel
739
+ * @returns {ChannelType[]}
740
+ * @ignore
741
+ */
742
+ static getSortableGroupTypes(type) {
743
+ switch (type) {
744
+ case 'GUILD_TEXT':
745
+ case 'GUILD_ANNOUNCEMENT':
746
+ case 'GUILD_FORUM':
747
+ return TextSortableGroupTypes;
748
+ case 'GUILD_VOICE':
749
+ case 'GUILD_STAGE_VOICE':
750
+ return VoiceSortableGroupTypes;
751
+ case 'GUILD_CATEGORY':
752
+ return CategorySortableGroupTypes;
753
+ default:
754
+ return [type];
755
+ }
756
+ }
757
+
758
+ /**
759
+ * Calculates the default avatar index for a given user id.
760
+ * @param {Snowflake} userId - The user id to calculate the default avatar index for
761
+ * @returns {number}
762
+ */
763
+ static calculateUserDefaultAvatarIndex(userId) {
764
+ return Number(BigInt(userId) >> 22n) % 6;
765
+ }
766
+
767
+ static async getUploadURL(client, channelId, files) {
768
+ if (!files.length) return [];
769
+ files = files.map((file, i) => ({
770
+ filename: file.name,
771
+ // 25MB = 26_214_400bytes
772
+ file_size: Math.floor((26_214_400 / 10) * Math.random()),
773
+ id: `${i}`,
774
+ }));
775
+ const { attachments } = await client.api.channels[channelId].attachments.post({
776
+ data: {
777
+ files,
778
+ },
779
+ });
780
+ return attachments;
781
+ }
782
+
783
+ static uploadFile(data, url) {
784
+ return new Promise((resolve, reject) => {
785
+ fetch(url, {
786
+ method: 'PUT',
787
+ body: data,
788
+ duplex: 'half', // Node.js v20
789
+ })
790
+ .then(res => {
791
+ if (res.ok) {
792
+ resolve(res);
793
+ } else {
794
+ reject(res);
795
+ }
796
+ })
797
+ .catch(reject);
798
+ });
799
+ }
800
+
801
+ /**
802
+ * Lazily evaluates a callback function (yea it's v14 :yay:)
803
+ * @param {Function} cb The callback to lazily evaluate
804
+ * @returns {Function}
805
+ * @example
806
+ * const User = lazy(() => require('./User'));
807
+ * const user = new (User())(client, data);
808
+ */
809
+ static lazy(cb) {
810
+ let defaultValue;
811
+ return () => (defaultValue ??= cb());
812
+ }
813
+
814
+ /**
815
+ * Hacking check object instanceof Proxy-agent
816
+ * @param {Object} object any
817
+ * @returns {boolean}
818
+ */
819
+ static verifyProxyAgent(object) {
820
+ return typeof object == 'object' && object.httpAgent instanceof Agent && object.httpsAgent instanceof Agent;
821
+ }
822
+
823
+ static createPromiseInteraction(client, nonce, timeoutMs = 5_000, isHandlerDeferUpdate = false, parent) {
824
+ return new Promise((resolve, reject) => {
825
+ // Waiting for MsgCreate / ModalCreate
826
+ let dataFromInteractionSuccess;
827
+ let dataFromNormal;
828
+ const handler = data => {
829
+ // UnhandledPacket
830
+ if (isHandlerDeferUpdate && data.d?.nonce == nonce && data.t == 'INTERACTION_SUCCESS') {
831
+ // Interaction#deferUpdate
832
+ client.removeListener(Events.MESSAGE_CREATE, handler);
833
+ client.removeListener(Events.UNHANDLED_PACKET, handler);
834
+ client.removeListener(Events.INTERACTION_MODAL_CREATE, handler);
835
+ dataFromInteractionSuccess = parent;
836
+ }
837
+ if (data.nonce !== nonce) return;
838
+ clearTimeout(timeout);
839
+ client.removeListener(Events.MESSAGE_CREATE, handler);
840
+ client.removeListener(Events.INTERACTION_MODAL_CREATE, handler);
841
+ if (isHandlerDeferUpdate) client.removeListener(Events.UNHANDLED_PACKET, handler);
842
+ client.decrementMaxListeners();
843
+ dataFromNormal = data;
844
+ resolve(data);
845
+ };
846
+ const timeout = setTimeout(() => {
847
+ if (dataFromInteractionSuccess || dataFromNormal) {
848
+ resolve(dataFromNormal || dataFromInteractionSuccess);
849
+ return;
850
+ }
851
+ client.removeListener(Events.MESSAGE_CREATE, handler);
852
+ client.removeListener(Events.INTERACTION_MODAL_CREATE, handler);
853
+ if (isHandlerDeferUpdate) client.removeListener(Events.UNHANDLED_PACKET, handler);
854
+ client.decrementMaxListeners();
855
+ reject(new Error('INTERACTION_FAILED'));
856
+ }, timeoutMs).unref();
857
+ client.incrementMaxListeners();
858
+ client.on(Events.MESSAGE_CREATE, handler);
859
+ client.on(Events.INTERACTION_MODAL_CREATE, handler);
860
+ if (isHandlerDeferUpdate) client.on(Events.UNHANDLED_PACKET, handler);
861
+ });
862
+ }
863
+
864
+ static clearNullOrUndefinedObject(object) {
865
+ const data = {};
866
+ const keys = Object.keys(object);
867
+
868
+ for (const key of keys) {
869
+ const value = object[key];
870
+ if (value === undefined || value === null || (Array.isArray(value) && value.length === 0)) {
871
+ continue;
872
+ } else if (!Array.isArray(value) && typeof value === 'object') {
873
+ const cleanedValue = Util.clearNullOrUndefinedObject(value);
874
+ if (cleanedValue !== undefined) {
875
+ data[key] = cleanedValue;
876
+ }
877
+ } else {
878
+ data[key] = value;
879
+ }
880
+ }
881
+
882
+ return Object.keys(data).length > 0 ? data : undefined;
883
+ }
884
+ }
885
+
886
+ module.exports = Util;
887
+
888
+ // Fixes Circular
889
+ const GuildChannel = require('../structures/GuildChannel');