djs-selfbot-v13 3.2.2 → 3.7.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 (363) hide show
  1. package/README.md +37 -36
  2. package/package.json +89 -85
  3. package/src/WebSocket.js +39 -39
  4. package/src/client/BaseClient.js +86 -86
  5. package/src/client/Client.js +934 -836
  6. package/src/client/WebhookClient.js +61 -61
  7. package/src/client/actions/Action.js +116 -120
  8. package/src/client/actions/ActionsManager.js +80 -78
  9. package/src/client/actions/ApplicationCommandPermissionsUpdate.js +34 -34
  10. package/src/client/actions/AutoModerationActionExecution.js +27 -27
  11. package/src/client/actions/AutoModerationRuleCreate.js +28 -28
  12. package/src/client/actions/AutoModerationRuleDelete.js +32 -32
  13. package/src/client/actions/AutoModerationRuleUpdate.js +30 -30
  14. package/src/client/actions/ChannelCreate.js +23 -23
  15. package/src/client/actions/ChannelDelete.js +39 -39
  16. package/src/client/actions/ChannelUpdate.js +43 -43
  17. package/src/client/actions/GuildAuditLogEntryCreate.js +29 -29
  18. package/src/client/actions/GuildBanAdd.js +20 -20
  19. package/src/client/actions/GuildBanRemove.js +25 -25
  20. package/src/client/actions/GuildChannelsPositionUpdate.js +21 -21
  21. package/src/client/actions/GuildDelete.js +65 -65
  22. package/src/client/actions/GuildEmojiCreate.js +20 -20
  23. package/src/client/actions/GuildEmojiDelete.js +21 -21
  24. package/src/client/actions/GuildEmojiUpdate.js +20 -20
  25. package/src/client/actions/GuildEmojisUpdate.js +34 -34
  26. package/src/client/actions/GuildIntegrationsUpdate.js +19 -19
  27. package/src/client/actions/GuildMemberRemove.js +33 -32
  28. package/src/client/actions/GuildMemberUpdate.js +44 -43
  29. package/src/client/actions/GuildRoleCreate.js +25 -25
  30. package/src/client/actions/GuildRoleDelete.js +31 -31
  31. package/src/client/actions/GuildRoleUpdate.js +39 -39
  32. package/src/client/actions/GuildRolesPositionUpdate.js +21 -21
  33. package/src/client/actions/GuildScheduledEventCreate.js +27 -27
  34. package/src/client/actions/GuildScheduledEventDelete.js +31 -31
  35. package/src/client/actions/GuildScheduledEventUpdate.js +30 -30
  36. package/src/client/actions/GuildScheduledEventUserAdd.js +32 -32
  37. package/src/client/actions/GuildScheduledEventUserRemove.js +32 -32
  38. package/src/client/actions/GuildStickerCreate.js +20 -20
  39. package/src/client/actions/GuildStickerDelete.js +21 -21
  40. package/src/client/actions/GuildStickerUpdate.js +20 -20
  41. package/src/client/actions/GuildStickersUpdate.js +34 -34
  42. package/src/client/actions/GuildUpdate.js +33 -33
  43. package/src/client/actions/InviteCreate.js +28 -28
  44. package/src/client/actions/InviteDelete.js +30 -30
  45. package/src/client/actions/MessageCreate.js +50 -46
  46. package/src/client/actions/MessageDelete.js +32 -32
  47. package/src/client/actions/MessageDeleteBulk.js +46 -46
  48. package/src/client/actions/MessagePollVoteAdd.js +33 -0
  49. package/src/client/actions/MessagePollVoteRemove.js +33 -0
  50. package/src/client/actions/MessageReactionAdd.js +68 -56
  51. package/src/client/actions/MessageReactionRemove.js +50 -45
  52. package/src/client/actions/MessageReactionRemoveAll.js +33 -33
  53. package/src/client/actions/MessageReactionRemoveEmoji.js +28 -28
  54. package/src/client/actions/MessageUpdate.js +26 -26
  55. package/src/client/actions/PresenceUpdate.js +50 -46
  56. package/src/client/actions/StageInstanceCreate.js +28 -28
  57. package/src/client/actions/StageInstanceDelete.js +33 -33
  58. package/src/client/actions/StageInstanceUpdate.js +30 -30
  59. package/src/client/actions/ThreadCreate.js +24 -24
  60. package/src/client/actions/ThreadDelete.js +32 -32
  61. package/src/client/actions/ThreadListSync.js +59 -59
  62. package/src/client/actions/ThreadMemberUpdate.js +30 -30
  63. package/src/client/actions/ThreadMembersUpdate.js +34 -34
  64. package/src/client/actions/TypingStart.js +29 -29
  65. package/src/client/actions/UserUpdate.js +35 -35
  66. package/src/client/actions/VoiceStateUpdate.js +50 -57
  67. package/src/client/actions/WebhooksUpdate.js +20 -20
  68. package/src/client/voice/ClientVoiceManager.js +151 -51
  69. package/src/client/voice/VoiceConnection.js +1249 -0
  70. package/src/client/voice/dispatcher/AnnexBDispatcher.js +120 -0
  71. package/src/client/voice/dispatcher/AudioDispatcher.js +145 -0
  72. package/src/client/voice/dispatcher/BaseDispatcher.js +459 -0
  73. package/src/client/voice/dispatcher/VPxDispatcher.js +54 -0
  74. package/src/client/voice/dispatcher/VideoDispatcher.js +68 -0
  75. package/src/client/voice/networking/VoiceUDPClient.js +173 -0
  76. package/src/client/voice/networking/VoiceWebSocket.js +286 -0
  77. package/src/client/voice/player/MediaPlayer.js +321 -0
  78. package/src/client/voice/player/processing/AnnexBNalSplitter.js +244 -0
  79. package/src/client/voice/player/processing/IvfSplitter.js +106 -0
  80. package/src/client/voice/player/processing/PCMInsertSilence.js +37 -0
  81. package/src/client/voice/receiver/PacketHandler.js +260 -0
  82. package/src/client/voice/receiver/Receiver.js +96 -0
  83. package/src/client/voice/receiver/Recorder.js +173 -0
  84. package/src/client/voice/util/Function.js +116 -0
  85. package/src/client/voice/util/PlayInterface.js +122 -0
  86. package/src/client/voice/util/Secretbox.js +64 -0
  87. package/src/client/voice/util/Silence.js +16 -0
  88. package/src/client/voice/util/Socket.js +62 -0
  89. package/src/client/voice/util/VolumeInterface.js +104 -0
  90. package/src/client/websocket/WebSocketManager.js +392 -392
  91. package/src/client/websocket/WebSocketShard.js +907 -906
  92. package/src/client/websocket/handlers/APPLICATION_COMMAND_CREATE.js +18 -18
  93. package/src/client/websocket/handlers/APPLICATION_COMMAND_DELETE.js +20 -20
  94. package/src/client/websocket/handlers/APPLICATION_COMMAND_PERMISSIONS_UPDATE.js +5 -5
  95. package/src/client/websocket/handlers/APPLICATION_COMMAND_UPDATE.js +20 -20
  96. package/src/client/websocket/handlers/AUTO_MODERATION_ACTION_EXECUTION.js +5 -5
  97. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_CREATE.js +5 -5
  98. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_DELETE.js +5 -5
  99. package/src/client/websocket/handlers/AUTO_MODERATION_RULE_UPDATE.js +5 -5
  100. package/src/client/websocket/handlers/CALL_CREATE.js +14 -14
  101. package/src/client/websocket/handlers/CALL_DELETE.js +11 -11
  102. package/src/client/websocket/handlers/CALL_UPDATE.js +11 -11
  103. package/src/client/websocket/handlers/CHANNEL_CREATE.js +5 -5
  104. package/src/client/websocket/handlers/CHANNEL_DELETE.js +5 -5
  105. package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +22 -22
  106. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_ADD.js +19 -19
  107. package/src/client/websocket/handlers/CHANNEL_RECIPIENT_REMOVE.js +16 -16
  108. package/src/client/websocket/handlers/CHANNEL_UPDATE.js +16 -16
  109. package/src/client/websocket/handlers/GUILD_AUDIT_LOG_ENTRY_CREATE.js +5 -5
  110. package/src/client/websocket/handlers/GUILD_BAN_ADD.js +5 -5
  111. package/src/client/websocket/handlers/GUILD_BAN_REMOVE.js +5 -5
  112. package/src/client/websocket/handlers/GUILD_CREATE.js +52 -52
  113. package/src/client/websocket/handlers/GUILD_DELETE.js +5 -5
  114. package/src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js +5 -5
  115. package/src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js +5 -5
  116. package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +39 -39
  117. package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +20 -19
  118. package/src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js +5 -5
  119. package/src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js +5 -5
  120. package/src/client/websocket/handlers/GUILD_ROLE_CREATE.js +5 -5
  121. package/src/client/websocket/handlers/GUILD_ROLE_DELETE.js +5 -5
  122. package/src/client/websocket/handlers/GUILD_ROLE_UPDATE.js +5 -5
  123. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_CREATE.js +5 -5
  124. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_DELETE.js +5 -5
  125. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_UPDATE.js +5 -5
  126. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_ADD.js +5 -5
  127. package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_REMOVE.js +5 -5
  128. package/src/client/websocket/handlers/GUILD_STICKERS_UPDATE.js +5 -5
  129. package/src/client/websocket/handlers/GUILD_UPDATE.js +5 -5
  130. package/src/client/websocket/handlers/INTERACTION_MODAL_CREATE.js +12 -12
  131. package/src/client/websocket/handlers/INVITE_CREATE.js +5 -5
  132. package/src/client/websocket/handlers/INVITE_DELETE.js +5 -5
  133. package/src/client/websocket/handlers/MESSAGE_CREATE.js +5 -5
  134. package/src/client/websocket/handlers/MESSAGE_DELETE.js +5 -5
  135. package/src/client/websocket/handlers/MESSAGE_DELETE_BULK.js +5 -5
  136. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_ADD.js +5 -22
  137. package/src/client/websocket/handlers/MESSAGE_POLL_VOTE_REMOVE.js +5 -12
  138. package/src/client/websocket/handlers/MESSAGE_REACTION_ADD.js +5 -5
  139. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js +5 -5
  140. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js +5 -5
  141. package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js +5 -5
  142. package/src/client/websocket/handlers/MESSAGE_UPDATE.js +16 -16
  143. package/src/client/websocket/handlers/PRESENCE_UPDATE.js +5 -5
  144. package/src/client/websocket/handlers/READY.js +121 -120
  145. package/src/client/websocket/handlers/RELATIONSHIP_ADD.js +19 -19
  146. package/src/client/websocket/handlers/RELATIONSHIP_REMOVE.js +17 -17
  147. package/src/client/websocket/handlers/RELATIONSHIP_UPDATE.js +41 -41
  148. package/src/client/websocket/handlers/RESUMED.js +14 -14
  149. package/src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js +5 -5
  150. package/src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js +5 -5
  151. package/src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js +5 -5
  152. package/src/client/websocket/handlers/THREAD_CREATE.js +5 -5
  153. package/src/client/websocket/handlers/THREAD_DELETE.js +5 -5
  154. package/src/client/websocket/handlers/THREAD_LIST_SYNC.js +5 -5
  155. package/src/client/websocket/handlers/THREAD_MEMBERS_UPDATE.js +5 -5
  156. package/src/client/websocket/handlers/THREAD_MEMBER_UPDATE.js +5 -5
  157. package/src/client/websocket/handlers/THREAD_UPDATE.js +16 -16
  158. package/src/client/websocket/handlers/TYPING_START.js +5 -5
  159. package/src/client/websocket/handlers/USER_GUILD_SETTINGS_UPDATE.js +6 -6
  160. package/src/client/websocket/handlers/USER_NOTE_UPDATE.js +5 -5
  161. package/src/client/websocket/handlers/USER_REQUIRED_ACTION_UPDATE.js +78 -78
  162. package/src/client/websocket/handlers/USER_SETTINGS_UPDATE.js +5 -5
  163. package/src/client/websocket/handlers/USER_UPDATE.js +5 -5
  164. package/src/client/websocket/handlers/VOICE_CHANNEL_EFFECT_SEND.js +16 -0
  165. package/src/client/websocket/handlers/VOICE_CHANNEL_STATUS_UPDATE.js +12 -12
  166. package/src/client/websocket/handlers/VOICE_SERVER_UPDATE.js +6 -6
  167. package/src/client/websocket/handlers/VOICE_STATE_UPDATE.js +5 -5
  168. package/src/client/websocket/handlers/WEBHOOKS_UPDATE.js +5 -5
  169. package/src/client/websocket/handlers/index.js +84 -83
  170. package/src/errors/DJSError.js +61 -61
  171. package/src/errors/Messages.js +217 -183
  172. package/src/errors/index.js +4 -4
  173. package/src/index.js +172 -159
  174. package/src/managers/ApplicationCommandManager.js +264 -264
  175. package/src/managers/ApplicationCommandPermissionsManager.js +417 -417
  176. package/src/managers/AutoModerationRuleManager.js +296 -296
  177. package/src/managers/BaseGuildEmojiManager.js +80 -80
  178. package/src/managers/BaseManager.js +19 -19
  179. package/src/managers/BillingManager.js +66 -66
  180. package/src/managers/CachedManager.js +71 -71
  181. package/src/managers/ChannelManager.js +148 -138
  182. package/src/managers/ClientUserSettingManager.js +372 -372
  183. package/src/managers/DataManager.js +61 -61
  184. package/src/managers/GuildBanManager.js +250 -250
  185. package/src/managers/GuildChannelManager.js +488 -488
  186. package/src/managers/GuildEmojiManager.js +171 -171
  187. package/src/managers/GuildEmojiRoleManager.js +118 -118
  188. package/src/managers/GuildForumThreadManager.js +108 -108
  189. package/src/managers/GuildInviteManager.js +213 -213
  190. package/src/managers/GuildManager.js +338 -304
  191. package/src/managers/GuildMemberManager.js +599 -597
  192. package/src/managers/GuildMemberRoleManager.js +195 -191
  193. package/src/managers/GuildScheduledEventManager.js +314 -296
  194. package/src/managers/GuildSettingManager.js +155 -155
  195. package/src/managers/GuildStickerManager.js +179 -179
  196. package/src/managers/GuildTextThreadManager.js +98 -98
  197. package/src/managers/InteractionManager.js +39 -39
  198. package/src/managers/MessageManager.js +423 -391
  199. package/src/managers/PermissionOverwriteManager.js +164 -166
  200. package/src/managers/PresenceManager.js +71 -58
  201. package/src/managers/ReactionManager.js +67 -67
  202. package/src/managers/ReactionUserManager.js +73 -71
  203. package/src/managers/RelationshipManager.js +278 -265
  204. package/src/managers/RoleManager.js +448 -352
  205. package/src/managers/SessionManager.js +66 -0
  206. package/src/managers/StageInstanceManager.js +162 -162
  207. package/src/managers/ThreadManager.js +175 -174
  208. package/src/managers/ThreadMemberManager.js +186 -186
  209. package/src/managers/UserManager.js +136 -146
  210. package/src/managers/UserNoteManager.js +53 -53
  211. package/src/managers/VoiceStateManager.js +59 -37
  212. package/src/rest/APIRequest.js +154 -160
  213. package/src/rest/APIRouter.js +53 -53
  214. package/src/rest/DiscordAPIError.js +119 -104
  215. package/src/rest/HTTPError.js +62 -62
  216. package/src/rest/RESTManager.js +67 -62
  217. package/src/rest/RateLimitError.js +55 -55
  218. package/src/rest/RequestHandler.js +466 -444
  219. package/src/sharding/Shard.js +444 -443
  220. package/src/sharding/ShardClientUtil.js +279 -275
  221. package/src/sharding/ShardingManager.js +319 -318
  222. package/src/structures/AnonymousGuild.js +98 -98
  223. package/src/structures/ApplicationCommand.js +593 -593
  224. package/src/structures/ApplicationRoleConnectionMetadata.js +48 -48
  225. package/src/structures/AutoModerationActionExecution.js +89 -89
  226. package/src/structures/AutoModerationRule.js +294 -294
  227. package/src/structures/AutocompleteInteraction.js +107 -107
  228. package/src/structures/Base.js +43 -43
  229. package/src/structures/BaseCommandInteraction.js +211 -211
  230. package/src/structures/BaseGuild.js +116 -116
  231. package/src/structures/BaseGuildEmoji.js +56 -56
  232. package/src/structures/BaseGuildTextChannel.js +191 -191
  233. package/src/structures/BaseGuildVoiceChannel.js +241 -241
  234. package/src/structures/BaseMessageComponent.js +181 -114
  235. package/src/structures/ButtonInteraction.js +11 -11
  236. package/src/structures/CallState.js +63 -63
  237. package/src/structures/CategoryChannel.js +85 -85
  238. package/src/structures/Channel.js +284 -270
  239. package/src/structures/ClientPresence.js +77 -85
  240. package/src/structures/ClientUser.js +479 -448
  241. package/src/structures/CommandInteraction.js +41 -41
  242. package/src/structures/CommandInteractionOptionResolver.js +276 -276
  243. package/src/structures/ContainerComponent.js +68 -0
  244. package/src/structures/ContextMenuInteraction.js +65 -65
  245. package/src/structures/DMChannel.js +219 -217
  246. package/src/structures/DirectoryChannel.js +20 -20
  247. package/src/structures/Emoji.js +148 -148
  248. package/src/structures/FileComponent.js +49 -0
  249. package/src/structures/ForumChannel.js +31 -261
  250. package/src/structures/GroupDMChannel.js +394 -387
  251. package/src/structures/Guild.js +1643 -1608
  252. package/src/structures/GuildAuditLogs.js +746 -729
  253. package/src/structures/GuildBan.js +59 -59
  254. package/src/structures/GuildBoost.js +108 -108
  255. package/src/structures/GuildChannel.js +470 -468
  256. package/src/structures/GuildEmoji.js +161 -161
  257. package/src/structures/GuildMember.js +636 -568
  258. package/src/structures/GuildPreview.js +191 -191
  259. package/src/structures/GuildPreviewEmoji.js +27 -27
  260. package/src/structures/GuildScheduledEvent.js +536 -441
  261. package/src/structures/GuildTemplate.js +236 -236
  262. package/src/structures/Integration.js +188 -188
  263. package/src/structures/IntegrationApplication.js +96 -96
  264. package/src/structures/Interaction.js +290 -290
  265. package/src/structures/InteractionCollector.js +248 -248
  266. package/src/structures/InteractionWebhook.js +43 -43
  267. package/src/structures/Invite.js +358 -358
  268. package/src/structures/InviteGuild.js +23 -23
  269. package/src/structures/InviteStageInstance.js +86 -86
  270. package/src/structures/MediaChannel.js +11 -0
  271. package/src/structures/MediaGalleryComponent.js +41 -0
  272. package/src/structures/MediaGalleryItem.js +47 -0
  273. package/src/structures/Message.js +1252 -1227
  274. package/src/structures/MessageActionRow.js +105 -103
  275. package/src/structures/MessageAttachment.js +216 -204
  276. package/src/structures/MessageButton.js +166 -165
  277. package/src/structures/MessageCollector.js +146 -146
  278. package/src/structures/MessageComponentInteraction.js +120 -120
  279. package/src/structures/MessageContextMenuInteraction.js +20 -20
  280. package/src/structures/MessageEmbed.js +596 -586
  281. package/src/structures/MessageMentions.js +273 -273
  282. package/src/structures/MessagePayload.js +354 -318
  283. package/src/structures/MessageReaction.js +181 -171
  284. package/src/structures/MessageSelectMenu.js +141 -140
  285. package/src/structures/Modal.js +161 -161
  286. package/src/structures/ModalSubmitFieldsResolver.js +53 -53
  287. package/src/structures/ModalSubmitInteraction.js +119 -119
  288. package/src/structures/NewsChannel.js +32 -32
  289. package/src/structures/OAuth2Guild.js +28 -28
  290. package/src/structures/PermissionOverwrites.js +198 -196
  291. package/src/structures/Poll.js +108 -0
  292. package/src/structures/PollAnswer.js +88 -0
  293. package/src/structures/Presence.js +1105 -1101
  294. package/src/structures/ReactionCollector.js +229 -229
  295. package/src/structures/ReactionEmoji.js +31 -31
  296. package/src/structures/Role.js +590 -531
  297. package/src/structures/SectionComponent.js +48 -0
  298. package/src/structures/SelectMenuInteraction.js +21 -21
  299. package/src/structures/SeparatorComponent.js +48 -0
  300. package/src/structures/Session.js +81 -0
  301. package/src/structures/StageChannel.js +104 -104
  302. package/src/structures/StageInstance.js +208 -208
  303. package/src/structures/Sticker.js +310 -310
  304. package/src/structures/StickerPack.js +95 -95
  305. package/src/structures/StoreChannel.js +56 -56
  306. package/src/structures/Team.js +118 -118
  307. package/src/structures/TeamMember.js +80 -71
  308. package/src/structures/TextChannel.js +33 -33
  309. package/src/structures/TextDisplayComponent.js +40 -0
  310. package/src/structures/TextInputComponent.js +132 -131
  311. package/src/structures/ThreadChannel.js +605 -607
  312. package/src/structures/ThreadMember.js +105 -105
  313. package/src/structures/ThreadOnlyChannel.js +249 -0
  314. package/src/structures/ThumbnailComponent.js +57 -0
  315. package/src/structures/Typing.js +74 -74
  316. package/src/structures/UnfurledMediaItem.js +29 -0
  317. package/src/structures/User.js +640 -543
  318. package/src/structures/UserContextMenuInteraction.js +29 -29
  319. package/src/structures/VoiceChannel.js +110 -110
  320. package/src/structures/VoiceChannelEffect.js +69 -0
  321. package/src/structures/VoiceRegion.js +53 -53
  322. package/src/structures/VoiceState.js +354 -341
  323. package/src/structures/WebEmbed.js +373 -373
  324. package/src/structures/Webhook.js +478 -467
  325. package/src/structures/WelcomeChannel.js +60 -60
  326. package/src/structures/WelcomeScreen.js +48 -48
  327. package/src/structures/Widget.js +87 -87
  328. package/src/structures/WidgetMember.js +99 -99
  329. package/src/structures/interfaces/Application.js +825 -313
  330. package/src/structures/interfaces/Collector.js +300 -300
  331. package/src/structures/interfaces/InteractionResponses.js +313 -313
  332. package/src/structures/interfaces/TextBasedChannel.js +759 -719
  333. package/src/util/APITypes.js +59 -0
  334. package/src/util/ActivityFlags.js +44 -44
  335. package/src/util/ApplicationFlags.js +76 -76
  336. package/src/util/AttachmentFlags.js +38 -38
  337. package/src/util/BitField.js +170 -170
  338. package/src/util/ChannelFlags.js +45 -45
  339. package/src/util/Constants.js +1914 -1773
  340. package/src/util/DataResolver.js +146 -145
  341. package/src/util/Formatters.js +228 -228
  342. package/src/util/GuildMemberFlags.js +43 -43
  343. package/src/util/Intents.js +74 -74
  344. package/src/util/InviteFlags.js +34 -29
  345. package/src/util/LimitedCollection.js +131 -131
  346. package/src/util/MessageFlags.js +63 -54
  347. package/src/util/Options.js +358 -336
  348. package/src/util/Permissions.js +202 -202
  349. package/src/util/PremiumUsageFlags.js +31 -31
  350. package/src/util/PurchasedFlags.js +33 -33
  351. package/src/util/RemoteAuth.js +382 -379
  352. package/src/util/RoleFlags.js +37 -37
  353. package/src/util/SnowflakeUtil.js +92 -92
  354. package/src/util/Speaking.js +33 -0
  355. package/src/util/Sweepers.js +466 -466
  356. package/src/util/SystemChannelFlags.js +55 -55
  357. package/src/util/ThreadMemberFlags.js +30 -30
  358. package/src/util/UserFlags.js +104 -104
  359. package/src/util/Util.js +1048 -889
  360. package/typings/enums.d.ts +439 -297
  361. package/typings/index.d.ts +8247 -7432
  362. package/typings/rawDataTypes.d.ts +403 -342
  363. package/src/structures/MessagePoll.js +0 -238
@@ -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;