discord.js-selfbot-v13-new 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.
Files changed (364) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +124 -0
  3. package/package.json +89 -0
  4. package/src/WebSocket.js +39 -0
  5. package/src/client/BaseClient.js +86 -0
  6. package/src/client/Client.js +934 -0
  7. package/src/client/WebhookClient.js +61 -0
  8. package/src/client/actions/Action.js +116 -0
  9. package/src/client/actions/ActionsManager.js +80 -0
  10. package/src/client/actions/ApplicationCommandPermissionsUpdate.js +34 -0
  11. package/src/client/actions/AutoModerationActionExecution.js +27 -0
  12. package/src/client/actions/AutoModerationRuleCreate.js +28 -0
  13. package/src/client/actions/AutoModerationRuleDelete.js +32 -0
  14. package/src/client/actions/AutoModerationRuleUpdate.js +30 -0
  15. package/src/client/actions/ChannelCreate.js +23 -0
  16. package/src/client/actions/ChannelDelete.js +39 -0
  17. package/src/client/actions/ChannelUpdate.js +43 -0
  18. package/src/client/actions/GuildAuditLogEntryCreate.js +29 -0
  19. package/src/client/actions/GuildBanAdd.js +20 -0
  20. package/src/client/actions/GuildBanRemove.js +25 -0
  21. package/src/client/actions/GuildChannelsPositionUpdate.js +21 -0
  22. package/src/client/actions/GuildDelete.js +65 -0
  23. package/src/client/actions/GuildEmojiCreate.js +20 -0
  24. package/src/client/actions/GuildEmojiDelete.js +21 -0
  25. package/src/client/actions/GuildEmojiUpdate.js +20 -0
  26. package/src/client/actions/GuildEmojisUpdate.js +34 -0
  27. package/src/client/actions/GuildIntegrationsUpdate.js +19 -0
  28. package/src/client/actions/GuildMemberRemove.js +33 -0
  29. package/src/client/actions/GuildMemberUpdate.js +44 -0
  30. package/src/client/actions/GuildRoleCreate.js +25 -0
  31. package/src/client/actions/GuildRoleDelete.js +31 -0
  32. package/src/client/actions/GuildRoleUpdate.js +39 -0
  33. package/src/client/actions/GuildRolesPositionUpdate.js +21 -0
  34. package/src/client/actions/GuildScheduledEventCreate.js +27 -0
  35. package/src/client/actions/GuildScheduledEventDelete.js +31 -0
  36. package/src/client/actions/GuildScheduledEventUpdate.js +30 -0
  37. package/src/client/actions/GuildScheduledEventUserAdd.js +32 -0
  38. package/src/client/actions/GuildScheduledEventUserRemove.js +32 -0
  39. package/src/client/actions/GuildStickerCreate.js +20 -0
  40. package/src/client/actions/GuildStickerDelete.js +21 -0
  41. package/src/client/actions/GuildStickerUpdate.js +20 -0
  42. package/src/client/actions/GuildStickersUpdate.js +34 -0
  43. package/src/client/actions/GuildUpdate.js +33 -0
  44. package/src/client/actions/InviteCreate.js +28 -0
  45. package/src/client/actions/InviteDelete.js +30 -0
  46. package/src/client/actions/MessageCreate.js +50 -0
  47. package/src/client/actions/MessageDelete.js +32 -0
  48. package/src/client/actions/MessageDeleteBulk.js +46 -0
  49. package/src/client/actions/MessagePollVoteAdd.js +33 -0
  50. package/src/client/actions/MessagePollVoteRemove.js +33 -0
  51. package/src/client/actions/MessageReactionAdd.js +68 -0
  52. package/src/client/actions/MessageReactionRemove.js +50 -0
  53. package/src/client/actions/MessageReactionRemoveAll.js +33 -0
  54. package/src/client/actions/MessageReactionRemoveEmoji.js +28 -0
  55. package/src/client/actions/MessageUpdate.js +26 -0
  56. package/src/client/actions/PresenceUpdate.js +50 -0
  57. package/src/client/actions/StageInstanceCreate.js +28 -0
  58. package/src/client/actions/StageInstanceDelete.js +33 -0
  59. package/src/client/actions/StageInstanceUpdate.js +30 -0
  60. package/src/client/actions/ThreadCreate.js +24 -0
  61. package/src/client/actions/ThreadDelete.js +32 -0
  62. package/src/client/actions/ThreadListSync.js +59 -0
  63. package/src/client/actions/ThreadMemberUpdate.js +30 -0
  64. package/src/client/actions/ThreadMembersUpdate.js +34 -0
  65. package/src/client/actions/TypingStart.js +29 -0
  66. package/src/client/actions/UserUpdate.js +35 -0
  67. package/src/client/actions/VoiceStateUpdate.js +50 -0
  68. package/src/client/actions/WebhooksUpdate.js +20 -0
  69. package/src/client/voice/ClientVoiceManager.js +151 -0
  70. package/src/client/voice/VoiceConnection.js +1249 -0
  71. package/src/client/voice/dispatcher/AnnexBDispatcher.js +120 -0
  72. package/src/client/voice/dispatcher/AudioDispatcher.js +145 -0
  73. package/src/client/voice/dispatcher/BaseDispatcher.js +459 -0
  74. package/src/client/voice/dispatcher/VPxDispatcher.js +54 -0
  75. package/src/client/voice/dispatcher/VideoDispatcher.js +68 -0
  76. package/src/client/voice/networking/VoiceUDPClient.js +173 -0
  77. package/src/client/voice/networking/VoiceWebSocket.js +286 -0
  78. package/src/client/voice/player/MediaPlayer.js +321 -0
  79. package/src/client/voice/player/processing/AnnexBNalSplitter.js +244 -0
  80. package/src/client/voice/player/processing/IvfSplitter.js +106 -0
  81. package/src/client/voice/player/processing/PCMInsertSilence.js +37 -0
  82. package/src/client/voice/receiver/PacketHandler.js +260 -0
  83. package/src/client/voice/receiver/Receiver.js +96 -0
  84. package/src/client/voice/receiver/Recorder.js +173 -0
  85. package/src/client/voice/util/Function.js +116 -0
  86. package/src/client/voice/util/PlayInterface.js +122 -0
  87. package/src/client/voice/util/Secretbox.js +64 -0
  88. package/src/client/voice/util/Silence.js +16 -0
  89. package/src/client/voice/util/Socket.js +62 -0
  90. package/src/client/voice/util/VolumeInterface.js +104 -0
  91. package/src/client/websocket/WebSocketManager.js +392 -0
  92. package/src/client/websocket/WebSocketShard.js +907 -0
  93. package/src/client/websocket/handlers/APPLICATION_COMMAND_CREATE.js +18 -0
  94. package/src/client/websocket/handlers/APPLICATION_COMMAND_DELETE.js +20 -0
  95. package/src/client/websocket/handlers/APPLICATION_COMMAND_PERMISSIONS_UPDATE.js +5 -0
  96. package/src/client/websocket/handlers/APPLICATION_COMMAND_UPDATE.js +20 -0
  97. package/src/client/websocket/handlers/AUTO_MODERATION_ACTION_EXECUTION.js +5 -0
  98. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_CREATE.js +5 -0
  99. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_DELETE.js +5 -0
  100. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_UPDATE.js +5 -0
  101. package/src/client/websocket/handlers/CALL_CREATE.js +14 -0
  102. package/src/client/websocket/handlers/CALL_DELETE.js +11 -0
  103. package/src/client/websocket/handlers/CALL_UPDATE.js +11 -0
  104. package/src/client/websocket/handlers/CHANNEL_CREATE.js +5 -0
  105. package/src/client/websocket/handlers/CHANNEL_DELETE.js +5 -0
  106. package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +22 -0
  107. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_ADD.js +19 -0
  108. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_REMOVE.js +16 -0
  109. package/src/client/websocket/handlers/CHANNEL_UPDATE.js +16 -0
  110. package/src/client/websocket/handlers/GUILD_AUDIT_LOG_ENTRY_CREATE.js +5 -0
  111. package/src/client/websocket/handlers/GUILD_BAN_ADD.js +5 -0
  112. package/src/client/websocket/handlers/GUILD_BAN_REMOVE.js +5 -0
  113. package/src/client/websocket/handlers/GUILD_CREATE.js +52 -0
  114. package/src/client/websocket/handlers/GUILD_DELETE.js +5 -0
  115. package/src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js +5 -0
  116. package/src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js +5 -0
  117. package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +39 -0
  118. package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +20 -0
  119. package/src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js +5 -0
  120. package/src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js +5 -0
  121. package/src/client/websocket/handlers/GUILD_ROLE_CREATE.js +5 -0
  122. package/src/client/websocket/handlers/GUILD_ROLE_DELETE.js +5 -0
  123. package/src/client/websocket/handlers/GUILD_ROLE_UPDATE.js +5 -0
  124. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_CREATE.js +5 -0
  125. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_DELETE.js +5 -0
  126. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_UPDATE.js +5 -0
  127. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_ADD.js +5 -0
  128. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_REMOVE.js +5 -0
  129. package/src/client/websocket/handlers/GUILD_STICKERS_UPDATE.js +5 -0
  130. package/src/client/websocket/handlers/GUILD_UPDATE.js +5 -0
  131. package/src/client/websocket/handlers/INTERACTION_MODAL_CREATE.js +12 -0
  132. package/src/client/websocket/handlers/INVITE_CREATE.js +5 -0
  133. package/src/client/websocket/handlers/INVITE_DELETE.js +5 -0
  134. package/src/client/websocket/handlers/MESSAGE_CREATE.js +5 -0
  135. package/src/client/websocket/handlers/MESSAGE_DELETE.js +5 -0
  136. package/src/client/websocket/handlers/MESSAGE_DELETE_BULK.js +5 -0
  137. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_ADD.js +5 -0
  138. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_REMOVE.js +5 -0
  139. package/src/client/websocket/handlers/MESSAGE_REACTION_ADD.js +5 -0
  140. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js +5 -0
  141. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js +5 -0
  142. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js +5 -0
  143. package/src/client/websocket/handlers/MESSAGE_UPDATE.js +16 -0
  144. package/src/client/websocket/handlers/PRESENCE_UPDATE.js +5 -0
  145. package/src/client/websocket/handlers/READY.js +121 -0
  146. package/src/client/websocket/handlers/RELATIONSHIP_ADD.js +19 -0
  147. package/src/client/websocket/handlers/RELATIONSHIP_REMOVE.js +17 -0
  148. package/src/client/websocket/handlers/RELATIONSHIP_UPDATE.js +41 -0
  149. package/src/client/websocket/handlers/RESUMED.js +14 -0
  150. package/src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js +5 -0
  151. package/src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js +5 -0
  152. package/src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js +5 -0
  153. package/src/client/websocket/handlers/THREAD_CREATE.js +5 -0
  154. package/src/client/websocket/handlers/THREAD_DELETE.js +5 -0
  155. package/src/client/websocket/handlers/THREAD_LIST_SYNC.js +5 -0
  156. package/src/client/websocket/handlers/THREAD_MEMBERS_UPDATE.js +5 -0
  157. package/src/client/websocket/handlers/THREAD_MEMBER_UPDATE.js +5 -0
  158. package/src/client/websocket/handlers/THREAD_UPDATE.js +16 -0
  159. package/src/client/websocket/handlers/TYPING_START.js +5 -0
  160. package/src/client/websocket/handlers/USER_GUILD_SETTINGS_UPDATE.js +6 -0
  161. package/src/client/websocket/handlers/USER_NOTE_UPDATE.js +5 -0
  162. package/src/client/websocket/handlers/USER_REQUIRED_ACTION_UPDATE.js +78 -0
  163. package/src/client/websocket/handlers/USER_SETTINGS_UPDATE.js +5 -0
  164. package/src/client/websocket/handlers/USER_UPDATE.js +5 -0
  165. package/src/client/websocket/handlers/VOICE_CHANNEL_EFFECT_SEND.js +16 -0
  166. package/src/client/websocket/handlers/VOICE_CHANNEL_STATUS_UPDATE.js +12 -0
  167. package/src/client/websocket/handlers/VOICE_SERVER_UPDATE.js +6 -0
  168. package/src/client/websocket/handlers/VOICE_STATE_UPDATE.js +5 -0
  169. package/src/client/websocket/handlers/WEBHOOKS_UPDATE.js +5 -0
  170. package/src/client/websocket/handlers/index.js +84 -0
  171. package/src/errors/DJSError.js +61 -0
  172. package/src/errors/Messages.js +217 -0
  173. package/src/errors/index.js +4 -0
  174. package/src/index.js +172 -0
  175. package/src/managers/ApplicationCommandManager.js +264 -0
  176. package/src/managers/ApplicationCommandPermissionsManager.js +417 -0
  177. package/src/managers/AutoModerationRuleManager.js +296 -0
  178. package/src/managers/BaseGuildEmojiManager.js +80 -0
  179. package/src/managers/BaseManager.js +19 -0
  180. package/src/managers/BillingManager.js +66 -0
  181. package/src/managers/CachedManager.js +71 -0
  182. package/src/managers/ChannelManager.js +148 -0
  183. package/src/managers/ClientUserSettingManager.js +372 -0
  184. package/src/managers/DataManager.js +61 -0
  185. package/src/managers/GuildBanManager.js +250 -0
  186. package/src/managers/GuildChannelManager.js +488 -0
  187. package/src/managers/GuildEmojiManager.js +171 -0
  188. package/src/managers/GuildEmojiRoleManager.js +118 -0
  189. package/src/managers/GuildForumThreadManager.js +108 -0
  190. package/src/managers/GuildInviteManager.js +213 -0
  191. package/src/managers/GuildManager.js +338 -0
  192. package/src/managers/GuildMemberManager.js +599 -0
  193. package/src/managers/GuildMemberRoleManager.js +195 -0
  194. package/src/managers/GuildScheduledEventManager.js +314 -0
  195. package/src/managers/GuildSettingManager.js +155 -0
  196. package/src/managers/GuildStickerManager.js +179 -0
  197. package/src/managers/GuildTextThreadManager.js +98 -0
  198. package/src/managers/InteractionManager.js +39 -0
  199. package/src/managers/MessageManager.js +423 -0
  200. package/src/managers/PermissionOverwriteManager.js +164 -0
  201. package/src/managers/PresenceManager.js +71 -0
  202. package/src/managers/ReactionManager.js +67 -0
  203. package/src/managers/ReactionUserManager.js +73 -0
  204. package/src/managers/RelationshipManager.js +278 -0
  205. package/src/managers/RoleManager.js +448 -0
  206. package/src/managers/SessionManager.js +66 -0
  207. package/src/managers/StageInstanceManager.js +162 -0
  208. package/src/managers/ThreadManager.js +175 -0
  209. package/src/managers/ThreadMemberManager.js +186 -0
  210. package/src/managers/UserManager.js +136 -0
  211. package/src/managers/UserNoteManager.js +53 -0
  212. package/src/managers/VoiceStateManager.js +59 -0
  213. package/src/rest/APIRequest.js +154 -0
  214. package/src/rest/APIRouter.js +53 -0
  215. package/src/rest/DiscordAPIError.js +119 -0
  216. package/src/rest/HTTPError.js +62 -0
  217. package/src/rest/RESTManager.js +67 -0
  218. package/src/rest/RateLimitError.js +55 -0
  219. package/src/rest/RequestHandler.js +466 -0
  220. package/src/sharding/Shard.js +444 -0
  221. package/src/sharding/ShardClientUtil.js +279 -0
  222. package/src/sharding/ShardingManager.js +319 -0
  223. package/src/structures/AnonymousGuild.js +98 -0
  224. package/src/structures/ApplicationCommand.js +593 -0
  225. package/src/structures/ApplicationRoleConnectionMetadata.js +48 -0
  226. package/src/structures/AutoModerationActionExecution.js +89 -0
  227. package/src/structures/AutoModerationRule.js +294 -0
  228. package/src/structures/AutocompleteInteraction.js +107 -0
  229. package/src/structures/Base.js +43 -0
  230. package/src/structures/BaseCommandInteraction.js +211 -0
  231. package/src/structures/BaseGuild.js +116 -0
  232. package/src/structures/BaseGuildEmoji.js +56 -0
  233. package/src/structures/BaseGuildTextChannel.js +191 -0
  234. package/src/structures/BaseGuildVoiceChannel.js +241 -0
  235. package/src/structures/BaseMessageComponent.js +181 -0
  236. package/src/structures/ButtonInteraction.js +11 -0
  237. package/src/structures/CallState.js +63 -0
  238. package/src/structures/CategoryChannel.js +85 -0
  239. package/src/structures/Channel.js +284 -0
  240. package/src/structures/ClientPresence.js +77 -0
  241. package/src/structures/ClientUser.js +449 -0
  242. package/src/structures/CommandInteraction.js +41 -0
  243. package/src/structures/CommandInteractionOptionResolver.js +276 -0
  244. package/src/structures/ContainerComponent.js +68 -0
  245. package/src/structures/ContextMenuInteraction.js +65 -0
  246. package/src/structures/DMChannel.js +219 -0
  247. package/src/structures/DirectoryChannel.js +20 -0
  248. package/src/structures/Emoji.js +148 -0
  249. package/src/structures/FileComponent.js +49 -0
  250. package/src/structures/ForumChannel.js +31 -0
  251. package/src/structures/GroupDMChannel.js +394 -0
  252. package/src/structures/Guild.js +1638 -0
  253. package/src/structures/GuildAuditLogs.js +746 -0
  254. package/src/structures/GuildBan.js +59 -0
  255. package/src/structures/GuildBoost.js +108 -0
  256. package/src/structures/GuildChannel.js +470 -0
  257. package/src/structures/GuildEmoji.js +161 -0
  258. package/src/structures/GuildMember.js +636 -0
  259. package/src/structures/GuildPreview.js +191 -0
  260. package/src/structures/GuildPreviewEmoji.js +27 -0
  261. package/src/structures/GuildScheduledEvent.js +536 -0
  262. package/src/structures/GuildTemplate.js +236 -0
  263. package/src/structures/Integration.js +188 -0
  264. package/src/structures/IntegrationApplication.js +96 -0
  265. package/src/structures/Interaction.js +290 -0
  266. package/src/structures/InteractionCollector.js +248 -0
  267. package/src/structures/InteractionWebhook.js +43 -0
  268. package/src/structures/Invite.js +358 -0
  269. package/src/structures/InviteGuild.js +23 -0
  270. package/src/structures/InviteStageInstance.js +86 -0
  271. package/src/structures/MediaChannel.js +11 -0
  272. package/src/structures/MediaGalleryComponent.js +41 -0
  273. package/src/structures/MediaGalleryItem.js +47 -0
  274. package/src/structures/Message.js +1252 -0
  275. package/src/structures/MessageActionRow.js +105 -0
  276. package/src/structures/MessageAttachment.js +216 -0
  277. package/src/structures/MessageButton.js +166 -0
  278. package/src/structures/MessageCollector.js +146 -0
  279. package/src/structures/MessageComponentInteraction.js +120 -0
  280. package/src/structures/MessageContextMenuInteraction.js +20 -0
  281. package/src/structures/MessageEmbed.js +596 -0
  282. package/src/structures/MessageMentions.js +273 -0
  283. package/src/structures/MessagePayload.js +354 -0
  284. package/src/structures/MessageReaction.js +181 -0
  285. package/src/structures/MessageSelectMenu.js +141 -0
  286. package/src/structures/Modal.js +161 -0
  287. package/src/structures/ModalSubmitFieldsResolver.js +53 -0
  288. package/src/structures/ModalSubmitInteraction.js +119 -0
  289. package/src/structures/NewsChannel.js +32 -0
  290. package/src/structures/OAuth2Guild.js +28 -0
  291. package/src/structures/PermissionOverwrites.js +198 -0
  292. package/src/structures/Poll.js +108 -0
  293. package/src/structures/PollAnswer.js +88 -0
  294. package/src/structures/Presence.js +1105 -0
  295. package/src/structures/ReactionCollector.js +229 -0
  296. package/src/structures/ReactionEmoji.js +31 -0
  297. package/src/structures/Role.js +590 -0
  298. package/src/structures/SectionComponent.js +48 -0
  299. package/src/structures/SelectMenuInteraction.js +21 -0
  300. package/src/structures/SeparatorComponent.js +48 -0
  301. package/src/structures/Session.js +81 -0
  302. package/src/structures/StageChannel.js +104 -0
  303. package/src/structures/StageInstance.js +208 -0
  304. package/src/structures/Sticker.js +310 -0
  305. package/src/structures/StickerPack.js +95 -0
  306. package/src/structures/StoreChannel.js +56 -0
  307. package/src/structures/Team.js +118 -0
  308. package/src/structures/TeamMember.js +80 -0
  309. package/src/structures/TextChannel.js +33 -0
  310. package/src/structures/TextDisplayComponent.js +40 -0
  311. package/src/structures/TextInputComponent.js +132 -0
  312. package/src/structures/ThreadChannel.js +605 -0
  313. package/src/structures/ThreadMember.js +105 -0
  314. package/src/structures/ThreadOnlyChannel.js +249 -0
  315. package/src/structures/ThumbnailComponent.js +57 -0
  316. package/src/structures/Typing.js +74 -0
  317. package/src/structures/UnfurledMediaItem.js +29 -0
  318. package/src/structures/User.js +622 -0
  319. package/src/structures/UserContextMenuInteraction.js +29 -0
  320. package/src/structures/VoiceChannel.js +110 -0
  321. package/src/structures/VoiceChannelEffect.js +69 -0
  322. package/src/structures/VoiceRegion.js +53 -0
  323. package/src/structures/VoiceState.js +354 -0
  324. package/src/structures/WebEmbed.js +373 -0
  325. package/src/structures/Webhook.js +478 -0
  326. package/src/structures/WelcomeChannel.js +60 -0
  327. package/src/structures/WelcomeScreen.js +48 -0
  328. package/src/structures/Widget.js +87 -0
  329. package/src/structures/WidgetMember.js +99 -0
  330. package/src/structures/interfaces/Application.js +825 -0
  331. package/src/structures/interfaces/Collector.js +300 -0
  332. package/src/structures/interfaces/InteractionResponses.js +313 -0
  333. package/src/structures/interfaces/TextBasedChannel.js +759 -0
  334. package/src/util/APITypes.js +59 -0
  335. package/src/util/ActivityFlags.js +44 -0
  336. package/src/util/ApplicationFlags.js +76 -0
  337. package/src/util/AttachmentFlags.js +38 -0
  338. package/src/util/BitField.js +170 -0
  339. package/src/util/ChannelFlags.js +45 -0
  340. package/src/util/Constants.js +1914 -0
  341. package/src/util/DataResolver.js +146 -0
  342. package/src/util/Formatters.js +228 -0
  343. package/src/util/GuildMemberFlags.js +43 -0
  344. package/src/util/Intents.js +74 -0
  345. package/src/util/InviteFlags.js +34 -0
  346. package/src/util/LimitedCollection.js +131 -0
  347. package/src/util/MessageFlags.js +63 -0
  348. package/src/util/Options.js +358 -0
  349. package/src/util/Permissions.js +202 -0
  350. package/src/util/PremiumUsageFlags.js +31 -0
  351. package/src/util/PurchasedFlags.js +33 -0
  352. package/src/util/RemoteAuth.js +382 -0
  353. package/src/util/RoleFlags.js +37 -0
  354. package/src/util/SnowflakeUtil.js +92 -0
  355. package/src/util/Speaking.js +33 -0
  356. package/src/util/Sweepers.js +466 -0
  357. package/src/util/SystemChannelFlags.js +55 -0
  358. package/src/util/ThreadMemberFlags.js +30 -0
  359. package/src/util/UserFlags.js +104 -0
  360. package/src/util/Util.js +1048 -0
  361. package/typings/enums.d.ts +439 -0
  362. package/typings/index.d.ts +8247 -0
  363. package/typings/index.test-d.ts +0 -0
  364. package/typings/rawDataTypes.d.ts +403 -0
@@ -0,0 +1,459 @@
1
+ 'use strict';
2
+
3
+ const { Buffer } = require('node:buffer');
4
+ const crypto = require('node:crypto');
5
+ const { Writable } = require('node:stream');
6
+ const { setTimeout } = require('node:timers');
7
+ const secretbox = require('../util/Secretbox');
8
+
9
+ const MAX_UINT_16 = 2 ** 16 - 1;
10
+ const MAX_UINT_32 = 2 ** 32 - 1;
11
+
12
+ const extensions = [{ id: 5, length: 2, value: 0 }];
13
+
14
+ /**
15
+ * @external WritableStream
16
+ * @see {@link https://nodejs.org/api/stream.html#stream_class_stream_writable}
17
+ */
18
+
19
+ /**
20
+ * @extends {Writable}
21
+ */
22
+ class BaseDispatcher extends Writable {
23
+ constructor(player, highWaterMark = 12, payloadType, extensionEnabled, streams = {}) {
24
+ super({
25
+ highWaterMark,
26
+ });
27
+ this.streams = streams;
28
+ /**
29
+ * The Player that controls this dispatcher
30
+ * @type {MediaPlayer}
31
+ */
32
+ this.player = player;
33
+ this.payloadType = payloadType;
34
+ this.extensionEnabled = extensionEnabled;
35
+
36
+ this._nonce = 0;
37
+ this._nonceBuffer = null;
38
+
39
+ /**
40
+ * The time that the stream was paused at (null if not paused)
41
+ * @type {?number}
42
+ */
43
+ this.pausedSince = null;
44
+ this._writeCallback = null;
45
+
46
+ this._pausedTime = 0;
47
+ this._silentPausedTime = 0;
48
+
49
+ this.count = 0;
50
+ this.sequence = 0;
51
+ this.timestamp = 0;
52
+
53
+ const streamError = (type, err) => {
54
+ /**
55
+ * Emitted when the dispatcher encounters an error.
56
+ * @event BaseDispatcher#error
57
+ */
58
+ if (type && err) {
59
+ err.message = `${type} stream: ${err.message}`;
60
+ this.emit(this.player.dispatcher === this ? 'error' : 'debug', err);
61
+ }
62
+ this.destroy();
63
+ };
64
+
65
+ this.on('error', () => streamError());
66
+ if (this.streams.input) this.streams.input.on('error', err => streamError('input', err));
67
+ if (this.streams.ffmpeg) this.streams.ffmpeg.on('error', err => streamError('ffmpeg', err));
68
+ if (this.streams.opus) this.streams.opus.on('error', err => streamError('opus', err));
69
+ if (this.streams.volume) this.streams.volume.on('error', err => streamError('volume', err));
70
+
71
+ this.on('finish', () => {
72
+ this._cleanup();
73
+ this._setSpeaking(0);
74
+ this._setVideoStatus(false);
75
+ this._setStreamStatus(true);
76
+ });
77
+ }
78
+
79
+ getTypeDispatcher() {
80
+ return 'base';
81
+ }
82
+
83
+ resetNonceBuffer() {
84
+ this._nonceBuffer =
85
+ this.player.voiceConnection.authentication.mode === 'aead_aes256_gcm_rtpsize'
86
+ ? Buffer.alloc(12)
87
+ : Buffer.alloc(24);
88
+ }
89
+
90
+ getNewSequence() {
91
+ const currentSeq = this.sequence;
92
+ this.sequence++;
93
+ if (this.sequence > MAX_UINT_16) this.sequence = 0;
94
+ return currentSeq;
95
+ }
96
+
97
+ _write(chunk, enc, done) {
98
+ if (!this.startTime) {
99
+ /**
100
+ * Emitted once the stream has started to play.
101
+ * @event BaseDispatcher#start
102
+ */
103
+ this.emit('start');
104
+ this.startTime = performance.now();
105
+ }
106
+ if (this._syncDispatcher && !this._syncDispatcher.startTime) {
107
+ this.pause();
108
+ const cb = () => {
109
+ this.resume();
110
+ clearTimeout(timeout);
111
+ };
112
+ this._syncDispatcher.once('start', cb);
113
+ let timeout = setTimeout(() => {
114
+ this.removeListener('start', cb);
115
+ this.resume();
116
+ }, 10_000).unref();
117
+ }
118
+ if (this.getTypeDispatcher() === 'video') {
119
+ this._codecCallback(chunk);
120
+ } else {
121
+ this._playChunk(chunk);
122
+ }
123
+ this._step(done);
124
+ }
125
+
126
+ _destroy(err, cb) {
127
+ this._cleanup();
128
+ super._destroy(err, cb);
129
+ }
130
+
131
+ _cleanup() {
132
+ if (this.player.dispatcher === this) {
133
+ this.player.dispatcher.destroy();
134
+ this.player.dispatcher = null;
135
+ }
136
+ if (this.player.videoDispatcher === this) {
137
+ this.player.videoDispatcher.destroy();
138
+ this.player.videoDispatcher = null;
139
+ }
140
+ const { streams } = this;
141
+ if (streams.opus) streams.opus.destroy();
142
+ streams.ffmpeg?.destroy();
143
+ }
144
+
145
+ /**
146
+ * Pauses playback
147
+ * @param {boolean} [silence=false] Whether to play silence while paused to prevent audio glitches
148
+ */
149
+ pause(silence = false) {
150
+ if (this.paused) return;
151
+ if (this.streams.opus) this.streams.opus.unpipe(this); // Audio
152
+ if (this.streams.video) {
153
+ this.streams.ffmpeg.pause();
154
+ this.streams.video.unpipe(this);
155
+ }
156
+ if (this.getTypeDispatcher() === 'audio') {
157
+ if (silence) {
158
+ this.streams.silence.pipe(this);
159
+ this._silence = true;
160
+ } else {
161
+ this._setSpeaking(0);
162
+ }
163
+ }
164
+ this.pausedSince = performance.now();
165
+ }
166
+
167
+ /**
168
+ * Whether or not playback is paused
169
+ * @type {boolean}
170
+ * @readonly
171
+ */
172
+ get paused() {
173
+ return Boolean(this.pausedSince);
174
+ }
175
+
176
+ /**
177
+ * Total time that this dispatcher has been paused in milliseconds
178
+ * @type {number}
179
+ * @readonly
180
+ */
181
+ get pausedTime() {
182
+ return this._silentPausedTime + this._pausedTime + (this.paused ? performance.now() - this.pausedSince : 0);
183
+ }
184
+
185
+ /**
186
+ * Resumes playback
187
+ */
188
+ resume() {
189
+ if (!this.pausedSince) return;
190
+ if (this.getTypeDispatcher() === 'audio') this.streams.silence.unpipe(this);
191
+ if (this.streams.opus) this.streams.opus.pipe(this);
192
+ if (this.streams.video) {
193
+ this.streams.ffmpeg.resume();
194
+ this.streams.video.pipe(this);
195
+ }
196
+ if (this._silence) {
197
+ this._silentPausedTime += performance.now() - this.pausedSince;
198
+ this._silence = false;
199
+ } else {
200
+ this._pausedTime += performance.now() - this.pausedSince;
201
+ }
202
+ this.pausedSince = null;
203
+ if (typeof this._writeCallback === 'function') this._writeCallback();
204
+ }
205
+
206
+ /**
207
+ * The time (in milliseconds) that the dispatcher has been playing audio for, taking into account skips and pauses
208
+ * @type {number}
209
+ * @readonly
210
+ */
211
+ get totalStreamTime() {
212
+ return performance.now() - this.startTime;
213
+ }
214
+
215
+ _step(done) {
216
+ this._writeCallback = () => {
217
+ this._writeCallback = null;
218
+ done();
219
+ };
220
+ const next = (this.count + 1) * this.FRAME_LENGTH - (performance.now() - this.startTime - this._pausedTime);
221
+ setTimeout(() => {
222
+ if ((!this.pausedSince || this._silence) && this._writeCallback) this._writeCallback();
223
+ }, next).unref();
224
+ this.timestamp += this.TIMESTAMP_INC;
225
+ if (this.timestamp > MAX_UINT_32) this.timestamp = 0;
226
+ this.count++;
227
+ if (this.count > MAX_UINT_16) this.count = 0;
228
+ }
229
+
230
+ _final(callback) {
231
+ this._writeCallback = null;
232
+ callback();
233
+ }
234
+
235
+ _playChunk(chunk, isLastPacket = false) {
236
+ if (
237
+ (this.player.dispatcher !== this && this.player.videoDispatcher !== this) ||
238
+ !this.player.voiceConnection.authentication.secret_key
239
+ ) {
240
+ return;
241
+ }
242
+ const packet = this._createPacket(chunk, isLastPacket);
243
+ if (packet) this._sendPacket(packet);
244
+ }
245
+
246
+ /**
247
+ * Creates a one-byte extension header
248
+ * https://www.rfc-editor.org/rfc/rfc5285#section-4.2
249
+ * @returns {Buffer} <Buffer be de 00 01>
250
+ */
251
+ createHeaderExtension() {
252
+ /**
253
+ * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
254
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
255
+ | defined by profile | length |
256
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
257
+ */
258
+ const profile = Buffer.alloc(4);
259
+ profile[0] = 0xbe;
260
+ profile[1] = 0xde;
261
+ profile.writeInt16BE(extensions.length, 2); // Extension count
262
+
263
+ return profile;
264
+ }
265
+
266
+ /**
267
+ * Creates a one-byte extension header & a single extension of type playout-delay
268
+ * @see https://docs.discord.food/topics/voice-connections#sending-and-receiving-voice
269
+ * Discord expects a playout delay RTP extension header on every video packet.
270
+ * @see https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/playout-delay
271
+ * @returns {Buffer} playout-delay extension <Buffer 51 00 00 00>
272
+ */
273
+ createPayloadExtension() {
274
+ const extensionsData = [];
275
+ for (let ext of extensions) {
276
+ /**
277
+ * EXTENSION DATA - each extension payload is 32 bits
278
+ */
279
+ const data = Buffer.alloc(4);
280
+
281
+ // https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/playout-delay
282
+ if (ext.id === 5) {
283
+ /**
284
+ * 0 1 2 3 4 5 6 7
285
+ +-+-+-+-+-+-+-+-+
286
+ | ID | len |
287
+ +-+-+-+-+-+-+-+-+
288
+
289
+ where len = actual length - 1
290
+ /
291
+ data[0] = (ext.id & 0b00001111) << 4;
292
+ data[0] |= (ext.len - 1) & 0b00001111;
293
+
294
+ /** Specific to type playout-delay
295
+ * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4
296
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
297
+ | MIN delay | MAX delay |
298
+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
299
+ */
300
+ data.writeUIntBE(ext.value, 1, 2); // Not quite but its 0 anyway
301
+ }
302
+ extensionsData.push(data);
303
+ }
304
+ return Buffer.concat(extensionsData);
305
+ }
306
+
307
+ _encrypt(buffer, additionalData) {
308
+ const { secret_key, mode } = this.player.voiceConnection.authentication;
309
+ // Both supported encryption methods want the nonce to be an incremental integer
310
+ this._nonce++;
311
+ if (this._nonce > MAX_UINT_32) this._nonce = 0;
312
+ if (!this._nonceBuffer) {
313
+ this.resetNonceBuffer();
314
+ }
315
+ this._nonceBuffer.writeUInt32BE(this._nonce, 0);
316
+
317
+ // 4 extra bytes of padding on the end of the encrypted packet
318
+ const noncePadding = this._nonceBuffer.slice(0, 4);
319
+
320
+ let encrypted;
321
+
322
+ switch (mode) {
323
+ case 'aead_aes256_gcm_rtpsize': {
324
+ const cipher = crypto.createCipheriv('aes-256-gcm', secret_key, this._nonceBuffer);
325
+ cipher.setAAD(additionalData);
326
+
327
+ encrypted = Buffer.concat([cipher.update(buffer), cipher.final(), cipher.getAuthTag()]);
328
+
329
+ return [encrypted, noncePadding];
330
+ }
331
+ case 'aead_xchacha20_poly1305_rtpsize': {
332
+ encrypted = secretbox.methods.crypto_aead_xchacha20poly1305_ietf_encrypt(
333
+ buffer,
334
+ additionalData,
335
+ this._nonceBuffer,
336
+ secret_key,
337
+ );
338
+
339
+ return [encrypted, noncePadding];
340
+ }
341
+ default: {
342
+ // This should never happen. Our encryption mode is chosen from a list given to us by the gateway and checked with the ones we support.
343
+ throw new RangeError(`Unsupported encryption method: ${mode}`);
344
+ }
345
+ }
346
+ }
347
+
348
+ _createPacket(buffer, isLastPacket) {
349
+ /*
350
+ // Packet is raw rtp from ffmpeg
351
+ const rtp = webrtc.RtpPacket.deSerialize(buffer);
352
+ if (!rtp.payload) {
353
+ console.log('no payload', rtp);
354
+ return null;
355
+ }
356
+ // Header
357
+ // https://docs.discord.food/topics/voice-connections#rtp-packet-structure
358
+ let rtpHeader = buffer.slice(0, 12); // RTP_HEADER_SIZE
359
+ rtpHeader[0] = 0x80; // Version + Flags (1 byte)
360
+ rtpHeader[1] = this.payloadType; // Payload Type (1 byte)
361
+ if (this.extensionEnabled) {
362
+ rtpHeader = Buffer.concat([rtpHeader, this.createHeaderExtension()]);
363
+ rtpHeader[0] |= 1 << 4; // 0x90
364
+ }
365
+ rtpHeader.writeUIntBE(this.getNewSequence(), 2, 2);
366
+ rtpHeader.writeUIntBE(this.timestamp, 4, 4);
367
+ rtpHeader.writeUIntBE(
368
+ this.player.voiceConnection.authentication.ssrc + Number(this.getTypeDispatcher() === 'video'),
369
+ 8,
370
+ 4,
371
+ );
372
+ */
373
+ // Header
374
+ let rtpHeader = Buffer.alloc(12); // RTP_HEADER_SIZE
375
+ rtpHeader[0] = 0x80; // Version + Flags (1 byte)
376
+ rtpHeader[1] = this.payloadType; // Payload Type (1 byte)
377
+ if (this.extensionEnabled) {
378
+ rtpHeader = Buffer.concat([rtpHeader, this.createHeaderExtension()]);
379
+ rtpHeader[0] |= 1 << 4; // 0x90
380
+ }
381
+ if (this.getTypeDispatcher() === 'video' && isLastPacket) {
382
+ rtpHeader[1] |= 1 << 7; // Marker bit
383
+ }
384
+
385
+ rtpHeader.writeUIntBE(this.getNewSequence(), 2, 2);
386
+ rtpHeader.writeUIntBE(this.timestamp, 4, 4);
387
+ rtpHeader.writeUIntBE(
388
+ this.player.voiceConnection.authentication.ssrc + Number(this.getTypeDispatcher() === 'video'),
389
+ 8,
390
+ 4,
391
+ );
392
+ return Buffer.concat([rtpHeader, ...this._encrypt(buffer, rtpHeader)]);
393
+ }
394
+
395
+ _sendPacket(packet) {
396
+ /**
397
+ * Emitted whenever the dispatcher has debug information.
398
+ * @event BaseDispatcher#debug
399
+ * @param {string} info The debug info
400
+ */
401
+ if (this.getTypeDispatcher() === 'audio') {
402
+ this._setSpeaking(this.player.isScreenSharing ? 1 << 1 : 1 << 0); // 1 << 0 = SPEAKING, 1 << 1 = SOUND SHARE
403
+ } else if (this.getTypeDispatcher() === 'video') {
404
+ this._setVideoStatus(true);
405
+ this._setStreamStatus(false);
406
+ }
407
+ if (!this.player.voiceConnection.sockets.udp) {
408
+ this.emit('debug', 'Failed to send a packet - no UDP socket');
409
+ return;
410
+ }
411
+ this.player.voiceConnection.sockets.udp.send(packet).catch(e => {
412
+ if (this.getTypeDispatcher() === 'audio') {
413
+ this._setSpeaking(this._setSpeaking(0));
414
+ } else if (this.getTypeDispatcher() === 'video') {
415
+ this._setVideoStatus(false);
416
+ this._setStreamStatus(true);
417
+ }
418
+ this.emit('debug', `Failed to send a packet - ${e}`);
419
+ });
420
+ }
421
+
422
+ _setSpeaking(value) {
423
+ if (typeof this.player.voiceConnection !== 'undefined') {
424
+ this.player.voiceConnection.setSpeaking(value);
425
+ }
426
+ /**
427
+ * Emitted when the dispatcher starts/stops speaking.
428
+ * @event AudioDispatcher#speaking
429
+ * @param {boolean} value Whether or not the dispatcher is speaking
430
+ */
431
+ this.emit('speaking', value);
432
+ }
433
+
434
+ _setVideoStatus(value) {
435
+ if (typeof this.player.voiceConnection !== 'undefined') {
436
+ this.player.voiceConnection.setVideoStatus(value);
437
+ }
438
+ /**
439
+ * Emitted when the dispatcher starts/stops video.
440
+ * @event VideoDispatcher#videoStatus
441
+ * @param {boolean} value Whether or not the dispatcher is enable video
442
+ */
443
+ this.emit('videoStatus', value);
444
+ }
445
+
446
+ _setStreamStatus(value) {
447
+ if (typeof this.player.voiceConnection?.sendScreenshareState !== 'undefined') {
448
+ this.player.voiceConnection.sendScreenshareState(value);
449
+ }
450
+ /**
451
+ * Emitted when the dispatcher starts/stops video.
452
+ * @event VideoDispatcher#streamStatus
453
+ * @param {boolean} isPaused Whether or not the dispatcher is pause video
454
+ */
455
+ this.emit('streamStatus', value);
456
+ }
457
+ }
458
+
459
+ module.exports = BaseDispatcher;
@@ -0,0 +1,54 @@
1
+ 'use strict';
2
+
3
+ /*
4
+ Credit: https://github.com/dank074/Discord-video-stream
5
+ The use of video streaming in this library is an incomplete implementation with many bugs, primarily aimed at lazy users.
6
+ The video streaming features in this library are sourced from https://github.com/dank074/Discord-video-stream.
7
+
8
+ Please use the @dank074/discord-video-stream library to access all advanced and professional features,
9
+ along with comprehensive support. I will not actively fix bugs related to streaming and encourage everyone to
10
+ use https://github.com/dank074/Discord-video-stream for stable and smooth streaming.
11
+
12
+ To reiterate: This is an incomplete implementation of the library https://github.com/dank074/Discord-video-stream.
13
+
14
+ Thanks to dank074 and longnguyen2004 for implementing new codecs (H264, H265).
15
+ Thanks to mrjvs for discovering how Discord transmits data and the VP8 codec.
16
+
17
+ Please use the @dank074/discord-video-stream library for the best support.
18
+ */
19
+
20
+ const { Buffer } = require('node:buffer');
21
+ const VideoDispatcher = require('./VideoDispatcher');
22
+ const Util = require('../../../util/Util');
23
+
24
+ class VP8Dispatcher extends VideoDispatcher {
25
+ constructor(player, highWaterMark = 12, streams, fps) {
26
+ super(player, highWaterMark, streams, fps, Util.getPayloadType('VP8'));
27
+ }
28
+
29
+ makeChunk(buffer, isFirstPacket) {
30
+ // Vp8 payload descriptor
31
+ const payloadDescriptorBuf = Buffer.alloc(2);
32
+ payloadDescriptorBuf[0] = 0x80;
33
+ payloadDescriptorBuf[1] = 0x80;
34
+ if (isFirstPacket) {
35
+ payloadDescriptorBuf[0] |= 1 << 4; // Mark S bit, indicates start of frame
36
+ }
37
+ // Vp8 pictureid payload extension
38
+ const pictureIdBuf = Buffer.alloc(2);
39
+ pictureIdBuf.writeUintBE(this.count, 0, 2);
40
+ pictureIdBuf[0] |= 0x80;
41
+ return Buffer.concat([this.createPayloadExtension(), payloadDescriptorBuf, pictureIdBuf, buffer]);
42
+ }
43
+
44
+ _codecCallback(chunk) {
45
+ const chunkSplit = this.partitionMtu(chunk).map((c, i) => this.makeChunk(c, i === 0));
46
+ for (let i = 0; i < chunkSplit.length; i++) {
47
+ this._playChunk(chunkSplit[i], i + 1 === chunkSplit.length);
48
+ }
49
+ }
50
+ }
51
+
52
+ module.exports = {
53
+ VP8Dispatcher,
54
+ };
@@ -0,0 +1,68 @@
1
+ 'use strict';
2
+
3
+ const BaseDispatcher = require('./BaseDispatcher');
4
+
5
+ /**
6
+ * The class that sends video packet data to the voice connection.
7
+ * ```js
8
+ * // Obtained using:
9
+ * client.voice.joinChannel(channel).then(connection => {
10
+ * // You can play a file or a stream here:
11
+ * const dispatcher = connection.playVideo('/home/hydrabolt/video.mp4', { fps: 60, preset: 'ultrafast' });
12
+ * });
13
+ * ```
14
+ * @extends {BaseDispatcher}
15
+ */
16
+ class VideoDispatcher extends BaseDispatcher {
17
+ constructor(player, highWaterMark = 12, streams, fps, payloadType) {
18
+ super(player, highWaterMark, payloadType, true, streams);
19
+ /**
20
+ * Video FPS
21
+ * @type {number}
22
+ */
23
+ this.fps = fps;
24
+
25
+ this.mtu = 1200;
26
+ }
27
+
28
+ get TIMESTAMP_INC() {
29
+ return 90000 / this.fps;
30
+ }
31
+
32
+ get FRAME_LENGTH() {
33
+ return 1000 / this.fps;
34
+ }
35
+
36
+ /**
37
+ * Get the type of the dispatcher
38
+ * @returns {'video'}
39
+ */
40
+ getTypeDispatcher() {
41
+ return 'video';
42
+ }
43
+
44
+ partitionMtu(data) {
45
+ const out = [];
46
+ const dataLength = data.length;
47
+
48
+ for (let i = 0; i < dataLength; i += this.mtu) {
49
+ out.push(data.slice(i, i + this.mtu));
50
+ }
51
+
52
+ return out;
53
+ }
54
+
55
+ /**
56
+ * Set FPS
57
+ * @param {number} value fps
58
+ */
59
+ setFPSSource(value) {
60
+ this.fps = value;
61
+ }
62
+
63
+ _codecCallback() {
64
+ throw new Error('The _codecCallback method must be implemented');
65
+ }
66
+ }
67
+
68
+ module.exports = VideoDispatcher;