endpoints.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. // Discordgo - Discord bindings for Go
  2. // Available at https://github.com/bwmarrin/discordgo
  3. // Copyright 2015-2016 Bruce Marriner <bruce@sqls.net>. All rights reserved.
  4. // Use of this source code is governed by a BSD-style
  5. // license that can be found in the LICENSE file.
  6. // This file contains variables for all known Discord end points. All functions
  7. // throughout the Discordgo package use these variables for all connections
  8. // to Discord. These are all exported and you may modify them if needed.
  9. package discordgo
  10. import "strconv"
  11. // APIVersion is the Discord API version used for the REST and Websocket API.
  12. var APIVersion = "8"
  13. // Known Discord API Endpoints.
  14. var (
  15. EndpointStatus = "https://status.discord.com/api/v2/"
  16. EndpointSm = EndpointStatus + "scheduled-maintenances/"
  17. EndpointSmActive = EndpointSm + "active.json"
  18. EndpointSmUpcoming = EndpointSm + "upcoming.json"
  19. EndpointDiscord = "https://discord.com/"
  20. EndpointAPI = EndpointDiscord + "api/v" + APIVersion + "/"
  21. EndpointGuilds = EndpointAPI + "guilds/"
  22. EndpointChannels = EndpointAPI + "channels/"
  23. EndpointUsers = EndpointAPI + "users/"
  24. EndpointGateway = EndpointAPI + "gateway"
  25. EndpointGatewayBot = EndpointGateway + "/bot"
  26. EndpointWebhooks = EndpointAPI + "webhooks/"
  27. EndpointStickers = EndpointAPI + "stickers/"
  28. EndpointCDN = "https://cdn.discordapp.com/"
  29. EndpointCDNAttachments = EndpointCDN + "attachments/"
  30. EndpointCDNAvatars = EndpointCDN + "avatars/"
  31. EndpointCDNIcons = EndpointCDN + "icons/"
  32. EndpointCDNSplashes = EndpointCDN + "splashes/"
  33. EndpointCDNChannelIcons = EndpointCDN + "channel-icons/"
  34. EndpointCDNBanners = EndpointCDN + "banners/"
  35. EndpointAuth = EndpointAPI + "auth/"
  36. EndpointLogin = EndpointAuth + "login"
  37. EndpointLogout = EndpointAuth + "logout"
  38. EndpointVerify = EndpointAuth + "verify"
  39. EndpointVerifyResend = EndpointAuth + "verify/resend"
  40. EndpointForgotPassword = EndpointAuth + "forgot"
  41. EndpointResetPassword = EndpointAuth + "reset"
  42. EndpointRegister = EndpointAuth + "register"
  43. EndpointVoice = EndpointAPI + "/voice/"
  44. EndpointVoiceRegions = EndpointVoice + "regions"
  45. EndpointVoiceIce = EndpointVoice + "ice"
  46. EndpointTutorial = EndpointAPI + "tutorial/"
  47. EndpointTutorialIndicators = EndpointTutorial + "indicators"
  48. EndpointTrack = EndpointAPI + "track"
  49. EndpointSso = EndpointAPI + "sso"
  50. EndpointReport = EndpointAPI + "report"
  51. EndpointIntegrations = EndpointAPI + "integrations"
  52. EndpointUser = func(uID string) string { return EndpointUsers + uID }
  53. EndpointUserAvatar = func(uID, aID string) string { return EndpointCDNAvatars + uID + "/" + aID + ".png" }
  54. EndpointUserAvatarAnimated = func(uID, aID string) string { return EndpointCDNAvatars + uID + "/" + aID + ".gif" }
  55. EndpointDefaultUserAvatar = func(uDiscriminator string) string {
  56. uDiscriminatorInt, _ := strconv.Atoi(uDiscriminator)
  57. return EndpointCDN + "embed/avatars/" + strconv.Itoa(uDiscriminatorInt%5) + ".png"
  58. }
  59. EndpointUserSettings = func(uID string) string { return EndpointUsers + uID + "/settings" }
  60. EndpointUserGuilds = func(uID string) string { return EndpointUsers + uID + "/guilds" }
  61. EndpointUserGuild = func(uID, gID string) string { return EndpointUsers + uID + "/guilds/" + gID }
  62. EndpointUserGuildSettings = func(uID, gID string) string { return EndpointUsers + uID + "/guilds/" + gID + "/settings" }
  63. EndpointUserChannels = func(uID string) string { return EndpointUsers + uID + "/channels" }
  64. EndpointUserDevices = func(uID string) string { return EndpointUsers + uID + "/devices" }
  65. EndpointUserConnections = func(uID string) string { return EndpointUsers + uID + "/connections" }
  66. EndpointUserNotes = func(uID string) string { return EndpointUsers + "@me/notes/" + uID }
  67. EndpointGuild = func(gID string) string { return EndpointGuilds + gID }
  68. EndpointGuildPreview = func(gID string) string { return EndpointGuilds + gID + "/preview" }
  69. EndpointGuildChannels = func(gID string) string { return EndpointGuilds + gID + "/channels" }
  70. EndpointGuildMembers = func(gID string) string { return EndpointGuilds + gID + "/members" }
  71. EndpointGuildMember = func(gID, uID string) string { return EndpointGuilds + gID + "/members/" + uID }
  72. EndpointGuildMemberRole = func(gID, uID, rID string) string { return EndpointGuilds + gID + "/members/" + uID + "/roles/" + rID }
  73. EndpointGuildBans = func(gID string) string { return EndpointGuilds + gID + "/bans" }
  74. EndpointGuildBan = func(gID, uID string) string { return EndpointGuilds + gID + "/bans/" + uID }
  75. EndpointGuildIntegrations = func(gID string) string { return EndpointGuilds + gID + "/integrations" }
  76. EndpointGuildIntegration = func(gID, iID string) string { return EndpointGuilds + gID + "/integrations/" + iID }
  77. EndpointGuildIntegrationSync = func(gID, iID string) string { return EndpointGuilds + gID + "/integrations/" + iID + "/sync" }
  78. EndpointGuildRoles = func(gID string) string { return EndpointGuilds + gID + "/roles" }
  79. EndpointGuildRole = func(gID, rID string) string { return EndpointGuilds + gID + "/roles/" + rID }
  80. EndpointGuildInvites = func(gID string) string { return EndpointGuilds + gID + "/invites" }
  81. EndpointGuildWidget = func(gID string) string { return EndpointGuilds + gID + "/widget" }
  82. EndpointGuildEmbed = EndpointGuildWidget
  83. EndpointGuildPrune = func(gID string) string { return EndpointGuilds + gID + "/prune" }
  84. EndpointGuildIcon = func(gID, hash string) string { return EndpointCDNIcons + gID + "/" + hash + ".png" }
  85. EndpointGuildIconAnimated = func(gID, hash string) string { return EndpointCDNIcons + gID + "/" + hash + ".gif" }
  86. EndpointGuildSplash = func(gID, hash string) string { return EndpointCDNSplashes + gID + "/" + hash + ".png" }
  87. EndpointGuildWebhooks = func(gID string) string { return EndpointGuilds + gID + "/webhooks" }
  88. EndpointGuildAuditLogs = func(gID string) string { return EndpointGuilds + gID + "/audit-logs" }
  89. EndpointGuildEmojis = func(gID string) string { return EndpointGuilds + gID + "/emojis" }
  90. EndpointGuildEmoji = func(gID, eID string) string { return EndpointGuilds + gID + "/emojis/" + eID }
  91. EndpointGuildBanner = func(gID, hash string) string { return EndpointCDNBanners + gID + "/" + hash + ".png" }
  92. EndpointGuildStickers = func(gID string) string { return EndpointGuilds + gID + "/stickers" }
  93. EndpointGuildSticker = func(gID, sID string) string { return EndpointGuilds + gID + "/stickers/" + sID }
  94. EndpointChannel = func(cID string) string { return EndpointChannels + cID }
  95. EndpointChannelPermissions = func(cID string) string { return EndpointChannels + cID + "/permissions" }
  96. EndpointChannelPermission = func(cID, tID string) string { return EndpointChannels + cID + "/permissions/" + tID }
  97. EndpointChannelInvites = func(cID string) string { return EndpointChannels + cID + "/invites" }
  98. EndpointChannelTyping = func(cID string) string { return EndpointChannels + cID + "/typing" }
  99. EndpointChannelMessages = func(cID string) string { return EndpointChannels + cID + "/messages" }
  100. EndpointChannelMessage = func(cID, mID string) string { return EndpointChannels + cID + "/messages/" + mID }
  101. EndpointChannelMessageAck = func(cID, mID string) string { return EndpointChannels + cID + "/messages/" + mID + "/ack" }
  102. EndpointChannelMessagesBulkDelete = func(cID string) string { return EndpointChannel(cID) + "/messages/bulk-delete" }
  103. EndpointChannelMessagesPins = func(cID string) string { return EndpointChannel(cID) + "/pins" }
  104. EndpointChannelMessagePin = func(cID, mID string) string { return EndpointChannel(cID) + "/pins/" + mID }
  105. EndpointChannelMessageCrosspost = func(cID, mID string) string { return EndpointChannel(cID) + "/messages/" + mID + "/crosspost" }
  106. EndpointChannelFollow = func(cID string) string { return EndpointChannel(cID) + "/followers" }
  107. EndpointGroupIcon = func(cID, hash string) string { return EndpointCDNChannelIcons + cID + "/" + hash + ".png" }
  108. EndpointSticker = func(sID string) string { return EndpointStickers + sID }
  109. EndpointNitroStickersPacks = EndpointAPI + "/sticker-packs"
  110. EndpointChannelWebhooks = func(cID string) string { return EndpointChannel(cID) + "/webhooks" }
  111. EndpointWebhook = func(wID string) string { return EndpointWebhooks + wID }
  112. EndpointWebhookToken = func(wID, token string) string { return EndpointWebhooks + wID + "/" + token }
  113. EndpointWebhookMessage = func(wID, token, messageID string) string {
  114. return EndpointWebhookToken(wID, token) + "/messages/" + messageID
  115. }
  116. EndpointMessageReactionsAll = func(cID, mID string) string {
  117. return EndpointChannelMessage(cID, mID) + "/reactions"
  118. }
  119. EndpointMessageReactions = func(cID, mID, eID string) string {
  120. return EndpointChannelMessage(cID, mID) + "/reactions/" + eID
  121. }
  122. EndpointMessageReaction = func(cID, mID, eID, uID string) string {
  123. return EndpointMessageReactions(cID, mID, eID) + "/" + uID
  124. }
  125. EndpointApplicationGlobalCommands = func(aID string) string {
  126. return EndpointApplication(aID) + "/commands"
  127. }
  128. EndpointApplicationGlobalCommand = func(aID, cID string) string {
  129. return EndpointApplicationGlobalCommands(aID) + "/" + cID
  130. }
  131. EndpointApplicationGuildCommands = func(aID, gID string) string {
  132. return EndpointApplication(aID) + "/guilds/" + gID + "/commands"
  133. }
  134. EndpointApplicationGuildCommand = func(aID, gID, cID string) string {
  135. return EndpointApplicationGuildCommands(aID, gID) + "/" + cID
  136. }
  137. EndpointInteraction = func(aID, iToken string) string {
  138. return EndpointAPI + "interactions/" + aID + "/" + iToken
  139. }
  140. EndpointInteractionResponse = func(iID, iToken string) string {
  141. return EndpointInteraction(iID, iToken) + "/callback"
  142. }
  143. EndpointInteractionResponseActions = func(aID, iToken string) string {
  144. return EndpointWebhookMessage(aID, iToken, "@original")
  145. }
  146. EndpointFollowupMessage = func(aID, iToken string) string {
  147. return EndpointWebhookToken(aID, iToken)
  148. }
  149. EndpointFollowupMessageActions = func(aID, iToken, mID string) string {
  150. return EndpointWebhookMessage(aID, iToken, mID)
  151. }
  152. EndpointRelationships = func() string { return EndpointUsers + "@me" + "/relationships" }
  153. EndpointRelationship = func(uID string) string { return EndpointRelationships() + "/" + uID }
  154. EndpointRelationshipsMutual = func(uID string) string { return EndpointUsers + uID + "/relationships" }
  155. EndpointGuildCreate = EndpointAPI + "guilds"
  156. EndpointInvite = func(iID string) string { return EndpointAPI + "invites/" + iID }
  157. EndpointIntegrationsJoin = func(iID string) string { return EndpointAPI + "integrations/" + iID + "/join" }
  158. EndpointEmoji = func(eID string) string { return EndpointCDN + "emojis/" + eID + ".png" }
  159. EndpointEmojiAnimated = func(eID string) string { return EndpointCDN + "emojis/" + eID + ".gif" }
  160. EndpointApplications = EndpointAPI + "applications"
  161. EndpointApplication = func(aID string) string { return EndpointApplications + "/" + aID }
  162. EndpointOAuth2 = EndpointAPI + "oauth2/"
  163. EndpointOAuth2Applications = EndpointOAuth2 + "applications"
  164. EndpointOAuth2Application = func(aID string) string { return EndpointOAuth2Applications + "/" + aID }
  165. EndpointOAuth2ApplicationsBot = func(aID string) string { return EndpointOAuth2Applications + "/" + aID + "/bot" }
  166. EndpointOAuth2ApplicationAssets = func(aID string) string { return EndpointOAuth2Applications + "/" + aID + "/assets" }
  167. // TODO: Deprecated, remove in the next release
  168. EndpointOauth2 = EndpointOAuth2
  169. EndpointOauth2Applications = EndpointOAuth2Applications
  170. EndpointOauth2Application = EndpointOAuth2Application
  171. EndpointOauth2ApplicationsBot = EndpointOAuth2ApplicationsBot
  172. EndpointOauth2ApplicationAssets = EndpointOAuth2ApplicationAssets
  173. )