structs.go 68 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682
  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 all structures for the discordgo package. These
  7. // may be moved about later into separate files but I find it easier to have
  8. // them all located together.
  9. package discordgo
  10. import (
  11. "encoding/json"
  12. "fmt"
  13. "math"
  14. "net/http"
  15. "regexp"
  16. "strings"
  17. "sync"
  18. "time"
  19. "github.com/gorilla/websocket"
  20. )
  21. // A Session represents a connection to the Discord API.
  22. type Session struct {
  23. sync.RWMutex
  24. // General configurable settings.
  25. // Authentication token for this session
  26. // TODO: Remove Below, Deprecated, Use Identify struct
  27. Token string
  28. MFA bool
  29. // Debug for printing JSON request/responses
  30. Debug bool // Deprecated, will be removed.
  31. LogLevel int
  32. // Should the session reconnect the websocket on errors.
  33. ShouldReconnectOnError bool
  34. // Identify is sent during initial handshake with the discord gateway.
  35. // https://discord.com/developers/docs/topics/gateway#identify
  36. Identify Identify
  37. // TODO: Remove Below, Deprecated, Use Identify struct
  38. // Should the session request compressed websocket data.
  39. Compress bool
  40. // Sharding
  41. ShardID int
  42. ShardCount int
  43. // Should state tracking be enabled.
  44. // State tracking is the best way for getting the the users
  45. // active guilds and the members of the guilds.
  46. StateEnabled bool
  47. // Whether or not to call event handlers synchronously.
  48. // e.g false = launch event handlers in their own goroutines.
  49. SyncEvents bool
  50. // Exposed but should not be modified by User.
  51. // Whether the Data Websocket is ready
  52. DataReady bool // NOTE: Maye be deprecated soon
  53. // Max number of REST API retries
  54. MaxRestRetries int
  55. // Status stores the currect status of the websocket connection
  56. // this is being tested, may stay, may go away.
  57. status int32
  58. // Whether the Voice Websocket is ready
  59. VoiceReady bool // NOTE: Deprecated.
  60. // Whether the UDP Connection is ready
  61. UDPReady bool // NOTE: Deprecated
  62. // Stores a mapping of guild id's to VoiceConnections
  63. VoiceConnections map[string]*VoiceConnection
  64. // Managed state object, updated internally with events when
  65. // StateEnabled is true.
  66. State *State
  67. // The http client used for REST requests
  68. Client *http.Client
  69. // The user agent used for REST APIs
  70. UserAgent string
  71. // Stores the last HeartbeatAck that was received (in UTC)
  72. LastHeartbeatAck time.Time
  73. // Stores the last Heartbeat sent (in UTC)
  74. LastHeartbeatSent time.Time
  75. // used to deal with rate limits
  76. Ratelimiter *RateLimiter
  77. // Event handlers
  78. handlersMu sync.RWMutex
  79. handlers map[string][]*eventHandlerInstance
  80. onceHandlers map[string][]*eventHandlerInstance
  81. // The websocket connection.
  82. wsConn *websocket.Conn
  83. // When nil, the session is not listening.
  84. listening chan interface{}
  85. // sequence tracks the current gateway api websocket sequence number
  86. sequence *int64
  87. // stores sessions current Discord Gateway
  88. gateway string
  89. // stores session ID of current Gateway connection
  90. sessionID string
  91. // used to make sure gateway websocket writes do not happen concurrently
  92. wsMutex sync.Mutex
  93. }
  94. // UserConnection is a Connection returned from the UserConnections endpoint
  95. type UserConnection struct {
  96. ID string `json:"id"`
  97. Name string `json:"name"`
  98. Type string `json:"type"`
  99. Revoked bool `json:"revoked"`
  100. Integrations []*Integration `json:"integrations"`
  101. }
  102. // Integration stores integration information
  103. type Integration struct {
  104. ID string `json:"id"`
  105. Name string `json:"name"`
  106. Type string `json:"type"`
  107. Enabled bool `json:"enabled"`
  108. Syncing bool `json:"syncing"`
  109. RoleID string `json:"role_id"`
  110. EnableEmoticons bool `json:"enable_emoticons"`
  111. ExpireBehavior ExpireBehavior `json:"expire_behavior"`
  112. ExpireGracePeriod int `json:"expire_grace_period"`
  113. User *User `json:"user"`
  114. Account IntegrationAccount `json:"account"`
  115. SyncedAt time.Time `json:"synced_at"`
  116. }
  117. // ExpireBehavior of Integration
  118. // https://discord.com/developers/docs/resources/guild#integration-object-integration-expire-behaviors
  119. type ExpireBehavior int
  120. // Block of valid ExpireBehaviors
  121. const (
  122. ExpireBehaviorRemoveRole ExpireBehavior = 0
  123. ExpireBehaviorKick ExpireBehavior = 1
  124. )
  125. // IntegrationAccount is integration account information
  126. // sent by the UserConnections endpoint
  127. type IntegrationAccount struct {
  128. ID string `json:"id"`
  129. Name string `json:"name"`
  130. }
  131. // A VoiceRegion stores data for a specific voice region server.
  132. type VoiceRegion struct {
  133. ID string `json:"id"`
  134. Name string `json:"name"`
  135. Hostname string `json:"sample_hostname"`
  136. Port int `json:"sample_port"`
  137. }
  138. // A VoiceICE stores data for voice ICE servers.
  139. type VoiceICE struct {
  140. TTL string `json:"ttl"`
  141. Servers []*ICEServer `json:"servers"`
  142. }
  143. // A ICEServer stores data for a specific voice ICE server.
  144. type ICEServer struct {
  145. URL string `json:"url"`
  146. Username string `json:"username"`
  147. Credential string `json:"credential"`
  148. }
  149. // A Invite stores all data related to a specific Discord Guild or Channel invite.
  150. type Invite struct {
  151. Guild *Guild `json:"guild"`
  152. Channel *Channel `json:"channel"`
  153. Inviter *User `json:"inviter"`
  154. Code string `json:"code"`
  155. CreatedAt time.Time `json:"created_at"`
  156. MaxAge int `json:"max_age"`
  157. Uses int `json:"uses"`
  158. MaxUses int `json:"max_uses"`
  159. Revoked bool `json:"revoked"`
  160. Temporary bool `json:"temporary"`
  161. Unique bool `json:"unique"`
  162. TargetUser *User `json:"target_user"`
  163. TargetUserType TargetUserType `json:"target_user_type"`
  164. // will only be filled when using InviteWithCounts
  165. ApproximatePresenceCount int `json:"approximate_presence_count"`
  166. ApproximateMemberCount int `json:"approximate_member_count"`
  167. }
  168. // TargetUserType is the type of the target user
  169. // https://discord.com/developers/docs/resources/invite#invite-object-target-user-types
  170. type TargetUserType int
  171. // Block contains known TargetUserType values
  172. const (
  173. TargetUserTypeStream TargetUserType = 1
  174. )
  175. // ChannelType is the type of a Channel
  176. type ChannelType int
  177. // Block contains known ChannelType values
  178. const (
  179. ChannelTypeGuildText ChannelType = 0
  180. ChannelTypeDM ChannelType = 1
  181. ChannelTypeGuildVoice ChannelType = 2
  182. ChannelTypeGroupDM ChannelType = 3
  183. ChannelTypeGuildCategory ChannelType = 4
  184. ChannelTypeGuildNews ChannelType = 5
  185. ChannelTypeGuildStore ChannelType = 6
  186. )
  187. // A Channel holds all data related to an individual Discord channel.
  188. type Channel struct {
  189. // The ID of the channel.
  190. ID string `json:"id"`
  191. // The ID of the guild to which the channel belongs, if it is in a guild.
  192. // Else, this ID is empty (e.g. DM channels).
  193. GuildID string `json:"guild_id"`
  194. // The name of the channel.
  195. Name string `json:"name"`
  196. // The topic of the channel.
  197. Topic string `json:"topic"`
  198. // The type of the channel.
  199. Type ChannelType `json:"type"`
  200. // The ID of the last message sent in the channel. This is not
  201. // guaranteed to be an ID of a valid message.
  202. LastMessageID string `json:"last_message_id"`
  203. // The timestamp of the last pinned message in the channel.
  204. // nil if the channel has no pinned messages.
  205. LastPinTimestamp *time.Time `json:"last_pin_timestamp"`
  206. // Whether the channel is marked as NSFW.
  207. NSFW bool `json:"nsfw"`
  208. // Icon of the group DM channel.
  209. Icon string `json:"icon"`
  210. // The position of the channel, used for sorting in client.
  211. Position int `json:"position"`
  212. // The bitrate of the channel, if it is a voice channel.
  213. Bitrate int `json:"bitrate"`
  214. // The recipients of the channel. This is only populated in DM channels.
  215. Recipients []*User `json:"recipients"`
  216. // The messages in the channel. This is only present in state-cached channels,
  217. // and State.MaxMessageCount must be non-zero.
  218. Messages []*Message `json:"-"`
  219. // A list of permission overwrites present for the channel.
  220. PermissionOverwrites []*PermissionOverwrite `json:"permission_overwrites"`
  221. // The user limit of the voice channel.
  222. UserLimit int `json:"user_limit"`
  223. // The ID of the parent channel, if the channel is under a category
  224. ParentID string `json:"parent_id"`
  225. // Amount of seconds a user has to wait before sending another message (0-21600)
  226. // bots, as well as users with the permission manage_messages or manage_channel, are unaffected
  227. RateLimitPerUser int `json:"rate_limit_per_user"`
  228. // ID of the DM creator Zeroed if guild channel
  229. OwnerID string `json:"owner_id"`
  230. // ApplicationID of the DM creator Zeroed if guild channel or not a bot user
  231. ApplicationID string `json:"application_id"`
  232. }
  233. // Mention returns a string which mentions the channel
  234. func (c *Channel) Mention() string {
  235. return fmt.Sprintf("<#%s>", c.ID)
  236. }
  237. // A ChannelEdit holds Channel Field data for a channel edit.
  238. type ChannelEdit struct {
  239. Name string `json:"name,omitempty"`
  240. Topic string `json:"topic,omitempty"`
  241. NSFW bool `json:"nsfw,omitempty"`
  242. Position int `json:"position"`
  243. Bitrate int `json:"bitrate,omitempty"`
  244. UserLimit int `json:"user_limit,omitempty"`
  245. PermissionOverwrites []*PermissionOverwrite `json:"permission_overwrites,omitempty"`
  246. ParentID string `json:"parent_id,omitempty"`
  247. RateLimitPerUser int `json:"rate_limit_per_user,omitempty"`
  248. }
  249. // A ChannelFollow holds data returned after following a news channel
  250. type ChannelFollow struct {
  251. ChannelID string `json:"channel_id"`
  252. WebhookID string `json:"webhook_id"`
  253. }
  254. // PermissionOverwriteType represents the type of resource on which
  255. // a permission overwrite acts.
  256. type PermissionOverwriteType int
  257. // The possible permission overwrite types.
  258. const (
  259. PermissionOverwriteTypeRole PermissionOverwriteType = 0
  260. PermissionOverwriteTypeMember PermissionOverwriteType = 1
  261. )
  262. // A PermissionOverwrite holds permission overwrite data for a Channel
  263. type PermissionOverwrite struct {
  264. ID string `json:"id"`
  265. Type PermissionOverwriteType `json:"type"`
  266. Deny int64 `json:"deny,string"`
  267. Allow int64 `json:"allow,string"`
  268. }
  269. // Emoji struct holds data related to Emoji's
  270. type Emoji struct {
  271. ID string `json:"id"`
  272. Name string `json:"name"`
  273. Roles []string `json:"roles"`
  274. User *User `json:"user"`
  275. RequireColons bool `json:"require_colons"`
  276. Managed bool `json:"managed"`
  277. Animated bool `json:"animated"`
  278. Available bool `json:"available"`
  279. }
  280. // EmojiRegex is the regex used to find and identify emojis in messages
  281. var (
  282. EmojiRegex = regexp.MustCompile(`<(a|):[A-z0-9_~]+:[0-9]{18}>`)
  283. )
  284. // MessageFormat returns a correctly formatted Emoji for use in Message content and embeds
  285. func (e *Emoji) MessageFormat() string {
  286. if e.ID != "" && e.Name != "" {
  287. if e.Animated {
  288. return "<a:" + e.APIName() + ">"
  289. }
  290. return "<:" + e.APIName() + ">"
  291. }
  292. return e.APIName()
  293. }
  294. // APIName returns an correctly formatted API name for use in the MessageReactions endpoints.
  295. func (e *Emoji) APIName() string {
  296. if e.ID != "" && e.Name != "" {
  297. return e.Name + ":" + e.ID
  298. }
  299. if e.Name != "" {
  300. return e.Name
  301. }
  302. return e.ID
  303. }
  304. // VerificationLevel type definition
  305. type VerificationLevel int
  306. // Constants for VerificationLevel levels from 0 to 4 inclusive
  307. const (
  308. VerificationLevelNone VerificationLevel = 0
  309. VerificationLevelLow VerificationLevel = 1
  310. VerificationLevelMedium VerificationLevel = 2
  311. VerificationLevelHigh VerificationLevel = 3
  312. VerificationLevelVeryHigh VerificationLevel = 4
  313. )
  314. // ExplicitContentFilterLevel type definition
  315. type ExplicitContentFilterLevel int
  316. // Constants for ExplicitContentFilterLevel levels from 0 to 2 inclusive
  317. const (
  318. ExplicitContentFilterDisabled ExplicitContentFilterLevel = 0
  319. ExplicitContentFilterMembersWithoutRoles ExplicitContentFilterLevel = 1
  320. ExplicitContentFilterAllMembers ExplicitContentFilterLevel = 2
  321. )
  322. // MfaLevel type definition
  323. type MfaLevel int
  324. // Constants for MfaLevel levels from 0 to 1 inclusive
  325. const (
  326. MfaLevelNone MfaLevel = 0
  327. MfaLevelElevated MfaLevel = 1
  328. )
  329. // PremiumTier type definition
  330. type PremiumTier int
  331. // Constants for PremiumTier levels from 0 to 3 inclusive
  332. const (
  333. PremiumTierNone PremiumTier = 0
  334. PremiumTier1 PremiumTier = 1
  335. PremiumTier2 PremiumTier = 2
  336. PremiumTier3 PremiumTier = 3
  337. )
  338. // A Guild holds all data related to a specific Discord Guild. Guilds are also
  339. // sometimes referred to as Servers in the Discord client.
  340. type Guild struct {
  341. // The ID of the guild.
  342. ID string `json:"id"`
  343. // The name of the guild. (2–100 characters)
  344. Name string `json:"name"`
  345. // The hash of the guild's icon. Use Session.GuildIcon
  346. // to retrieve the icon itself.
  347. Icon string `json:"icon"`
  348. // The voice region of the guild.
  349. Region string `json:"region"`
  350. // The ID of the AFK voice channel.
  351. AfkChannelID string `json:"afk_channel_id"`
  352. // The user ID of the owner of the guild.
  353. OwnerID string `json:"owner_id"`
  354. // If we are the owner of the guild
  355. Owner bool `json:"owner"`
  356. // The time at which the current user joined the guild.
  357. // This field is only present in GUILD_CREATE events and websocket
  358. // update events, and thus is only present in state-cached guilds.
  359. JoinedAt time.Time `json:"joined_at"`
  360. // The hash of the guild's discovery splash.
  361. DiscoverySplash string `json:"discovery_splash"`
  362. // The hash of the guild's splash.
  363. Splash string `json:"splash"`
  364. // The timeout, in seconds, before a user is considered AFK in voice.
  365. AfkTimeout int `json:"afk_timeout"`
  366. // The number of members in the guild.
  367. // This field is only present in GUILD_CREATE events and websocket
  368. // update events, and thus is only present in state-cached guilds.
  369. MemberCount int `json:"member_count"`
  370. // The verification level required for the guild.
  371. VerificationLevel VerificationLevel `json:"verification_level"`
  372. // Whether the guild is considered large. This is
  373. // determined by a member threshold in the identify packet,
  374. // and is currently hard-coded at 250 members in the library.
  375. Large bool `json:"large"`
  376. // The default message notification setting for the guild.
  377. DefaultMessageNotifications MessageNotifications `json:"default_message_notifications"`
  378. // A list of roles in the guild.
  379. Roles []*Role `json:"roles"`
  380. // A list of the custom emojis present in the guild.
  381. Emojis []*Emoji `json:"emojis"`
  382. // A list of the members in the guild.
  383. // This field is only present in GUILD_CREATE events and websocket
  384. // update events, and thus is only present in state-cached guilds.
  385. Members []*Member `json:"members"`
  386. // A list of partial presence objects for members in the guild.
  387. // This field is only present in GUILD_CREATE events and websocket
  388. // update events, and thus is only present in state-cached guilds.
  389. Presences []*Presence `json:"presences"`
  390. // The maximum number of presences for the guild (the default value, currently 25000, is in effect when null is returned)
  391. MaxPresences int `json:"max_presences"`
  392. // The maximum number of members for the guild
  393. MaxMembers int `json:"max_members"`
  394. // A list of channels in the guild.
  395. // This field is only present in GUILD_CREATE events and websocket
  396. // update events, and thus is only present in state-cached guilds.
  397. Channels []*Channel `json:"channels"`
  398. // A list of voice states for the guild.
  399. // This field is only present in GUILD_CREATE events and websocket
  400. // update events, and thus is only present in state-cached guilds.
  401. VoiceStates []*VoiceState `json:"voice_states"`
  402. // Whether this guild is currently unavailable (most likely due to outage).
  403. // This field is only present in GUILD_CREATE events and websocket
  404. // update events, and thus is only present in state-cached guilds.
  405. Unavailable bool `json:"unavailable"`
  406. // The explicit content filter level
  407. ExplicitContentFilter ExplicitContentFilterLevel `json:"explicit_content_filter"`
  408. // The list of enabled guild features
  409. Features []string `json:"features"`
  410. // Required MFA level for the guild
  411. MfaLevel MfaLevel `json:"mfa_level"`
  412. // The application id of the guild if bot created.
  413. ApplicationID string `json:"application_id"`
  414. // Whether or not the Server Widget is enabled
  415. WidgetEnabled bool `json:"widget_enabled"`
  416. // The Channel ID for the Server Widget
  417. WidgetChannelID string `json:"widget_channel_id"`
  418. // The Channel ID to which system messages are sent (eg join and leave messages)
  419. SystemChannelID string `json:"system_channel_id"`
  420. // The System channel flags
  421. SystemChannelFlags SystemChannelFlag `json:"system_channel_flags"`
  422. // The ID of the rules channel ID, used for rules.
  423. RulesChannelID string `json:"rules_channel_id"`
  424. // the vanity url code for the guild
  425. VanityURLCode string `json:"vanity_url_code"`
  426. // the description for the guild
  427. Description string `json:"description"`
  428. // The hash of the guild's banner
  429. Banner string `json:"banner"`
  430. // The premium tier of the guild
  431. PremiumTier PremiumTier `json:"premium_tier"`
  432. // The total number of users currently boosting this server
  433. PremiumSubscriptionCount int `json:"premium_subscription_count"`
  434. // The preferred locale of a guild with the "PUBLIC" feature; used in server discovery and notices from Discord; defaults to "en-US"
  435. PreferredLocale string `json:"preferred_locale"`
  436. // The id of the channel where admins and moderators of guilds with the "PUBLIC" feature receive notices from Discord
  437. PublicUpdatesChannelID string `json:"public_updates_channel_id"`
  438. // The maximum amount of users in a video channel
  439. MaxVideoChannelUsers int `json:"max_video_channel_users"`
  440. // Approximate number of members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true
  441. ApproximateMemberCount int `json:"approximate_member_count"`
  442. // Approximate number of non-offline members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true
  443. ApproximatePresenceCount int `json:"approximate_presence_count"`
  444. // Permissions of our user
  445. Permissions int64 `json:"permissions,string"`
  446. }
  447. // A GuildPreview holds data related to a specific public Discord Guild, even if the user is not in the guild.
  448. type GuildPreview struct {
  449. // The ID of the guild.
  450. ID string `json:"id"`
  451. // The name of the guild. (2–100 characters)
  452. Name string `json:"name"`
  453. // The hash of the guild's icon. Use Session.GuildIcon
  454. // to retrieve the icon itself.
  455. Icon string `json:"icon"`
  456. // The hash of the guild's splash.
  457. Splash string `json:"splash"`
  458. // The hash of the guild's discovery splash.
  459. DiscoverySplash string `json:"discovery_splash"`
  460. // A list of the custom emojis present in the guild.
  461. Emojis []*Emoji `json:"emojis"`
  462. // The list of enabled guild features
  463. Features []string `json:"features"`
  464. // Approximate number of members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true
  465. ApproximateMemberCount int `json:"approximate_member_count"`
  466. // Approximate number of non-offline members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true
  467. ApproximatePresenceCount int `json:"approximate_presence_count"`
  468. // the description for the guild
  469. Description string `json:"description"`
  470. }
  471. // MessageNotifications is the notification level for a guild
  472. // https://discord.com/developers/docs/resources/guild#guild-object-default-message-notification-level
  473. type MessageNotifications int
  474. // Block containing known MessageNotifications values
  475. const (
  476. MessageNotificationsAllMessages MessageNotifications = 0
  477. MessageNotificationsOnlyMentions MessageNotifications = 1
  478. )
  479. // SystemChannelFlag is the type of flags in the system channel (see SystemChannelFlag* consts)
  480. // https://discord.com/developers/docs/resources/guild#guild-object-system-channel-flags
  481. type SystemChannelFlag int
  482. // Block containing known SystemChannelFlag values
  483. const (
  484. SystemChannelFlagsSuppressJoin SystemChannelFlag = 1 << 0
  485. SystemChannelFlagsSuppressPremium SystemChannelFlag = 1 << 1
  486. )
  487. // IconURL returns a URL to the guild's icon.
  488. func (g *Guild) IconURL() string {
  489. if g.Icon == "" {
  490. return ""
  491. }
  492. if strings.HasPrefix(g.Icon, "a_") {
  493. return EndpointGuildIconAnimated(g.ID, g.Icon)
  494. }
  495. return EndpointGuildIcon(g.ID, g.Icon)
  496. }
  497. // BannerURL returns a URL to the guild's banner.
  498. func (g *Guild) BannerURL() string {
  499. if g.Banner == "" {
  500. return ""
  501. }
  502. return EndpointGuildBanner(g.ID, g.Banner)
  503. }
  504. // A UserGuild holds a brief version of a Guild
  505. type UserGuild struct {
  506. ID string `json:"id"`
  507. Name string `json:"name"`
  508. Icon string `json:"icon"`
  509. Owner bool `json:"owner"`
  510. Permissions int64 `json:"permissions,string"`
  511. }
  512. // A GuildParams stores all the data needed to update discord guild settings
  513. type GuildParams struct {
  514. Name string `json:"name,omitempty"`
  515. Region string `json:"region,omitempty"`
  516. VerificationLevel *VerificationLevel `json:"verification_level,omitempty"`
  517. DefaultMessageNotifications int `json:"default_message_notifications,omitempty"` // TODO: Separate type?
  518. AfkChannelID string `json:"afk_channel_id,omitempty"`
  519. AfkTimeout int `json:"afk_timeout,omitempty"`
  520. Icon string `json:"icon,omitempty"`
  521. OwnerID string `json:"owner_id,omitempty"`
  522. Splash string `json:"splash,omitempty"`
  523. Banner string `json:"banner,omitempty"`
  524. }
  525. // A Role stores information about Discord guild member roles.
  526. type Role struct {
  527. // The ID of the role.
  528. ID string `json:"id"`
  529. // The name of the role.
  530. Name string `json:"name"`
  531. // Whether this role is managed by an integration, and
  532. // thus cannot be manually added to, or taken from, members.
  533. Managed bool `json:"managed"`
  534. // Whether this role is mentionable.
  535. Mentionable bool `json:"mentionable"`
  536. // Whether this role is hoisted (shows up separately in member list).
  537. Hoist bool `json:"hoist"`
  538. // The hex color of this role.
  539. Color int `json:"color"`
  540. // The position of this role in the guild's role hierarchy.
  541. Position int `json:"position"`
  542. // The permissions of the role on the guild (doesn't include channel overrides).
  543. // This is a combination of bit masks; the presence of a certain permission can
  544. // be checked by performing a bitwise AND between this int and the permission.
  545. Permissions int64 `json:"permissions,string"`
  546. }
  547. // Mention returns a string which mentions the role
  548. func (r *Role) Mention() string {
  549. return fmt.Sprintf("<@&%s>", r.ID)
  550. }
  551. // Roles are a collection of Role
  552. type Roles []*Role
  553. func (r Roles) Len() int {
  554. return len(r)
  555. }
  556. func (r Roles) Less(i, j int) bool {
  557. return r[i].Position > r[j].Position
  558. }
  559. func (r Roles) Swap(i, j int) {
  560. r[i], r[j] = r[j], r[i]
  561. }
  562. // A VoiceState stores the voice states of Guilds
  563. type VoiceState struct {
  564. UserID string `json:"user_id"`
  565. SessionID string `json:"session_id"`
  566. ChannelID string `json:"channel_id"`
  567. GuildID string `json:"guild_id"`
  568. Suppress bool `json:"suppress"`
  569. SelfMute bool `json:"self_mute"`
  570. SelfDeaf bool `json:"self_deaf"`
  571. Mute bool `json:"mute"`
  572. Deaf bool `json:"deaf"`
  573. }
  574. // A Presence stores the online, offline, or idle and game status of Guild members.
  575. type Presence struct {
  576. User *User `json:"user"`
  577. Status Status `json:"status"`
  578. Activities []*Activity `json:"activities"`
  579. Since *int `json:"since"`
  580. }
  581. // A TimeStamps struct contains start and end times used in the rich presence "playing .." Game
  582. type TimeStamps struct {
  583. EndTimestamp int64 `json:"end,omitempty"`
  584. StartTimestamp int64 `json:"start,omitempty"`
  585. }
  586. // UnmarshalJSON unmarshals JSON into TimeStamps struct
  587. func (t *TimeStamps) UnmarshalJSON(b []byte) error {
  588. temp := struct {
  589. End float64 `json:"end,omitempty"`
  590. Start float64 `json:"start,omitempty"`
  591. }{}
  592. err := json.Unmarshal(b, &temp)
  593. if err != nil {
  594. return err
  595. }
  596. t.EndTimestamp = int64(temp.End)
  597. t.StartTimestamp = int64(temp.Start)
  598. return nil
  599. }
  600. // An Assets struct contains assets and labels used in the rich presence "playing .." Game
  601. type Assets struct {
  602. LargeImageID string `json:"large_image,omitempty"`
  603. SmallImageID string `json:"small_image,omitempty"`
  604. LargeText string `json:"large_text,omitempty"`
  605. SmallText string `json:"small_text,omitempty"`
  606. }
  607. // A Member stores user information for Guild members. A guild
  608. // member represents a certain user's presence in a guild.
  609. type Member struct {
  610. // The guild ID on which the member exists.
  611. GuildID string `json:"guild_id"`
  612. // The time at which the member joined the guild.
  613. JoinedAt time.Time `json:"joined_at"`
  614. // The nickname of the member, if they have one.
  615. Nick string `json:"nick"`
  616. // Whether the member is deafened at a guild level.
  617. Deaf bool `json:"deaf"`
  618. // Whether the member is muted at a guild level.
  619. Mute bool `json:"mute"`
  620. // The underlying user on which the member is based.
  621. User *User `json:"user"`
  622. // A list of IDs of the roles which are possessed by the member.
  623. Roles []string `json:"roles"`
  624. // When the user used their Nitro boost on the server
  625. PremiumSince *time.Time `json:"premium_since"`
  626. // Is true while the member hasn't accepted the membership screen.
  627. Pending bool `json:"pending"`
  628. // Total permissions of the member in the channel, including overrides, returned when in the interaction object.
  629. Permissions int64 `json:"permissions,string"`
  630. // The time at which the member's timeout will expire.
  631. // Time in the past or nil if the user is not timed out.
  632. CommunicationDisabledUntil *time.Time `json:"communication_disabled_until"`
  633. }
  634. // Mention creates a member mention
  635. func (m *Member) Mention() string {
  636. return "<@!" + m.User.ID + ">"
  637. }
  638. // A Settings stores data for a specific users Discord client settings.
  639. type Settings struct {
  640. RenderEmbeds bool `json:"render_embeds"`
  641. InlineEmbedMedia bool `json:"inline_embed_media"`
  642. InlineAttachmentMedia bool `json:"inline_attachment_media"`
  643. EnableTTSCommand bool `json:"enable_tts_command"`
  644. MessageDisplayCompact bool `json:"message_display_compact"`
  645. ShowCurrentGame bool `json:"show_current_game"`
  646. ConvertEmoticons bool `json:"convert_emoticons"`
  647. Locale string `json:"locale"`
  648. Theme string `json:"theme"`
  649. GuildPositions []string `json:"guild_positions"`
  650. RestrictedGuilds []string `json:"restricted_guilds"`
  651. FriendSourceFlags *FriendSourceFlags `json:"friend_source_flags"`
  652. Status Status `json:"status"`
  653. DetectPlatformAccounts bool `json:"detect_platform_accounts"`
  654. DeveloperMode bool `json:"developer_mode"`
  655. }
  656. // Status type definition
  657. type Status string
  658. // Constants for Status with the different current available status
  659. const (
  660. StatusOnline Status = "online"
  661. StatusIdle Status = "idle"
  662. StatusDoNotDisturb Status = "dnd"
  663. StatusInvisible Status = "invisible"
  664. StatusOffline Status = "offline"
  665. )
  666. // FriendSourceFlags stores ... TODO :)
  667. type FriendSourceFlags struct {
  668. All bool `json:"all"`
  669. MutualGuilds bool `json:"mutual_guilds"`
  670. MutualFriends bool `json:"mutual_friends"`
  671. }
  672. // A Relationship between the logged in user and Relationship.User
  673. type Relationship struct {
  674. User *User `json:"user"`
  675. Type int `json:"type"` // 1 = friend, 2 = blocked, 3 = incoming friend req, 4 = sent friend req
  676. ID string `json:"id"`
  677. }
  678. // A TooManyRequests struct holds information received from Discord
  679. // when receiving a HTTP 429 response.
  680. type TooManyRequests struct {
  681. Bucket string `json:"bucket"`
  682. Message string `json:"message"`
  683. RetryAfter time.Duration `json:"retry_after"`
  684. }
  685. // UnmarshalJSON helps support translation of a milliseconds-based float
  686. // into a time.Duration on TooManyRequests.
  687. func (t *TooManyRequests) UnmarshalJSON(b []byte) error {
  688. u := struct {
  689. Bucket string `json:"bucket"`
  690. Message string `json:"message"`
  691. RetryAfter float64 `json:"retry_after"`
  692. }{}
  693. err := json.Unmarshal(b, &u)
  694. if err != nil {
  695. return err
  696. }
  697. t.Bucket = u.Bucket
  698. t.Message = u.Message
  699. whole, frac := math.Modf(u.RetryAfter)
  700. t.RetryAfter = time.Duration(whole)*time.Second + time.Duration(frac*1000)*time.Millisecond
  701. return nil
  702. }
  703. // A ReadState stores data on the read state of channels.
  704. type ReadState struct {
  705. MentionCount int `json:"mention_count"`
  706. LastMessageID string `json:"last_message_id"`
  707. ID string `json:"id"`
  708. }
  709. // An Ack is used to ack messages
  710. type Ack struct {
  711. Token string `json:"token"`
  712. }
  713. // A GuildRole stores data for guild roles.
  714. type GuildRole struct {
  715. Role *Role `json:"role"`
  716. GuildID string `json:"guild_id"`
  717. }
  718. // A GuildBan stores data for a guild ban.
  719. type GuildBan struct {
  720. Reason string `json:"reason"`
  721. User *User `json:"user"`
  722. }
  723. // A GuildEmbed stores data for a guild embed.
  724. type GuildEmbed struct {
  725. Enabled bool `json:"enabled"`
  726. ChannelID string `json:"channel_id"`
  727. }
  728. // A GuildAuditLog stores data for a guild audit log.
  729. // https://discord.com/developers/docs/resources/audit-log#audit-log-object-audit-log-structure
  730. type GuildAuditLog struct {
  731. Webhooks []*Webhook `json:"webhooks,omitempty"`
  732. Users []*User `json:"users,omitempty"`
  733. AuditLogEntries []*AuditLogEntry `json:"audit_log_entries"`
  734. Integrations []*Integration `json:"integrations"`
  735. }
  736. // AuditLogEntry for a GuildAuditLog
  737. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-entry-structure
  738. type AuditLogEntry struct {
  739. TargetID string `json:"target_id"`
  740. Changes []*AuditLogChange `json:"changes"`
  741. UserID string `json:"user_id"`
  742. ID string `json:"id"`
  743. ActionType *AuditLogAction `json:"action_type"`
  744. Options *AuditLogOptions `json:"options"`
  745. Reason string `json:"reason"`
  746. }
  747. // AuditLogChange for an AuditLogEntry
  748. type AuditLogChange struct {
  749. NewValue interface{} `json:"new_value"`
  750. OldValue interface{} `json:"old_value"`
  751. Key *AuditLogChangeKey `json:"key"`
  752. }
  753. // AuditLogChangeKey value for AuditLogChange
  754. // https://discord.com/developers/docs/resources/audit-log#audit-log-change-object-audit-log-change-key
  755. type AuditLogChangeKey string
  756. // Block of valid AuditLogChangeKey
  757. const (
  758. // AuditLogChangeKeyAfkChannelID is sent when afk channel changed (snowflake) - guild
  759. AuditLogChangeKeyAfkChannelID AuditLogChangeKey = "afk_channel_id"
  760. // AuditLogChangeKeyAfkTimeout is sent when afk timeout duration changed (int) - guild
  761. AuditLogChangeKeyAfkTimeout AuditLogChangeKey = "afk_timeout"
  762. // AuditLogChangeKeyAllow is sent when a permission on a text or voice channel was allowed for a role (string) - role
  763. AuditLogChangeKeyAllow AuditLogChangeKey = "allow"
  764. // AudirChangeKeyApplicationID is sent when application id of the added or removed webhook or bot (snowflake) - channel
  765. AuditLogChangeKeyApplicationID AuditLogChangeKey = "application_id"
  766. // AuditLogChangeKeyArchived is sent when thread was archived/unarchived (bool) - thread
  767. AuditLogChangeKeyArchived AuditLogChangeKey = "archived"
  768. // AuditLogChangeKeyAsset is sent when asset is changed (string) - sticker
  769. AuditLogChangeKeyAsset AuditLogChangeKey = "asset"
  770. // AuditLogChangeKeyAutoArchiveDuration is sent when auto archive duration changed (int) - thread
  771. AuditLogChangeKeyAutoArchiveDuration AuditLogChangeKey = "auto_archive_duration"
  772. // AuditLogChangeKeyAvailable is sent when availability of sticker changed (bool) - sticker
  773. AuditLogChangeKeyAvailable AuditLogChangeKey = "available"
  774. // AuditLogChangeKeyAvatarHash is sent when user avatar changed (string) - user
  775. AuditLogChangeKeyAvatarHash AuditLogChangeKey = "avatar_hash"
  776. // AuditLogChangeKeyBannerHash is sent when guild banner changed (string) - guild
  777. AuditLogChangeKeyBannerHash AuditLogChangeKey = "banner_hash"
  778. // AuditLogChangeKeyBitrate is sent when voice channel bitrate changed (int) - channel
  779. AuditLogChangeKeyBitrate AuditLogChangeKey = "bitrate"
  780. // AuditLogChangeKeyChannelID is sent when channel for invite code or guild scheduled event changed (snowflake) - invite or guild scheduled event
  781. AuditLogChangeKeyChannelID AuditLogChangeKey = "channel_id"
  782. // AuditLogChangeKeyCode is sent when invite code changed (string) - invite
  783. AuditLogChangeKeyCode AuditLogChangeKey = "code"
  784. // AuditLogChangeKeyColor is sent when role color changed (int) - role
  785. AuditLogChangeKeyColor AuditLogChangeKey = "color"
  786. // AuditLogChangeKeyCommunicationDisabledUntil is sent when member timeout state changed (ISO8601 timestamp) - member
  787. AuditLogChangeKeyCommunicationDisabledUntil AuditLogChangeKey = "communication_disabled_until"
  788. // AuditLogChangeKeyDeaf is sent when user server deafened/undeafened (bool) - member
  789. AuditLogChangeKeyDeaf AuditLogChangeKey = "deaf"
  790. // AuditLogChangeKeyDefaultAutoArchiveDuration is sent when default auto archive duration for newly created threads changed (int) - channel
  791. AuditLogChangeKeyDefaultAutoArchiveDuration AuditLogChangeKey = "default_auto_archive_duration"
  792. // AuditLogChangeKeyDefaultMessageNotification is sent when default message notification level changed (int) - guild
  793. AuditLogChangeKeyDefaultMessageNotification AuditLogChangeKey = "default_message_notifications"
  794. // AuditLogChangeKeyDeny is sent when a permission on a text or voice channel was denied for a role (string) - role
  795. AuditLogChangeKeyDeny AuditLogChangeKey = "deny"
  796. // AuditLogChangeKeyDescription is sent when description changed (string) - guild, sticker, or guild scheduled event
  797. AuditLogChangeKeyDescription AuditLogChangeKey = "description"
  798. // AuditLogChangeKeyDiscoverySplashHash is sent when discovery splash changed (string) - guild
  799. AuditLogChangeKeyDiscoverySplashHash AuditLogChangeKey = "discovery_splash_hash"
  800. // AuditLogChangeKeyEnableEmoticons is sent when integration emoticons enabled/disabled (bool) - integration
  801. AuditLogChangeKeyEnableEmoticons AuditLogChangeKey = "enable_emoticons"
  802. // AuditLogChangeKeyEntityType is sent when entity type of guild scheduled event was changed (int) - guild scheduled event
  803. AuditLogChangeKeyEntityType AuditLogChangeKey = "entity_type"
  804. // AuditLogChangeKeyExpireBehavior is sent when integration expiring subscriber behavior changed (int) - integration
  805. AuditLogChangeKeyExpireBehavior AuditLogChangeKey = "expire_behavior"
  806. // AuditLogChangeKeyExpireGracePeriod is sent when integration expire grace period changed (int) - integration
  807. AuditLogChangeKeyExpireGracePeriod AuditLogChangeKey = "expire_grace_period"
  808. // AuditLogChangeKeyExplicitContentFilter is sent when change in whose messages are scanned and deleted for explicit content in the server is made (int) - guild
  809. AuditLogChangeKeyExplicitContentFilter AuditLogChangeKey = "explicit_content_filter"
  810. // AuditLogChangeKeyFormatType is sent when format type of sticker changed (int - sticker format type) - sticker
  811. AuditLogChangeKeyFormatType AuditLogChangeKey = "format_type"
  812. // AuditLogChangeKeyGuildID is sent when guild sticker is in changed (snowflake) - sticker
  813. AuditLogChangeKeyGuildID AuditLogChangeKey = "guild_id"
  814. // AuditLogChangeKeyHoist is sent when role is now displayed/no longer displayed separate from online users (bool) - role
  815. AuditLogChangeKeyHoist AuditLogChangeKey = "hoist"
  816. // AuditLogChangeKeyIconHash is sent when icon changed (string) - guild or role
  817. AuditLogChangeKeyIconHash AuditLogChangeKey = "icon_hash"
  818. // AuditLogChangeKeyID is sent when the id of the changed entity - sometimes used in conjunction with other keys (snowflake) - any
  819. AuditLogChangeKeyID AuditLogChangeKey = "id"
  820. // AuditLogChangeKeyInvitable is sent when private thread is now invitable/uninvitable (bool) - thread
  821. AuditLogChangeKeyInvitable AuditLogChangeKey = "invitable"
  822. // AuditLogChangeKeyInviterID is sent when person who created invite code changed (snowflake) - invite
  823. AuditLogChangeKeyInviterID AuditLogChangeKey = "inviter_id"
  824. // AuditLogChangeKeyLocation is sent when channel id for guild scheduled event changed (string) - guild scheduled event
  825. AuditLogChangeKeyLocation AuditLogChangeKey = "location"
  826. // AuditLogChangeKeyLocked is sent when thread was locked/unlocked (bool) - thread
  827. AuditLogChangeKeyLocked AuditLogChangeKey = "locked"
  828. // AuditLogChangeKeyMaxAge is sent when invite code expiration time changed (int) - invite
  829. AuditLogChangeKeyMaxAge AuditLogChangeKey = "max_age"
  830. // AuditLogChangeKeyMaxUses is sent when max number of times invite code can be used changed (int) - invite
  831. AuditLogChangeKeyMaxUses AuditLogChangeKey = "max_uses"
  832. // AuditLogChangeKeyMentionable is sent when role is now mentionable/unmentionable (bool) - role
  833. AuditLogChangeKeyMentionable AuditLogChangeKey = "mentionable"
  834. // AuditLogChangeKeyMfaLevel is sent when two-factor auth requirement changed (int - mfa level) - guild
  835. AuditLogChangeKeyMfaLevel AuditLogChangeKey = "mfa_level"
  836. // AuditLogChangeKeyMute is sent when user server muted/unmuted (bool) - member
  837. AuditLogChangeKeyMute AuditLogChangeKey = "mute"
  838. // AuditLogChangeKeyName is sent when name changed (string) - any
  839. AuditLogChangeKeyName AuditLogChangeKey = "name"
  840. // AuditLogChangeKeyNick is sent when user nickname changed (string) - member
  841. AuditLogChangeKeyNick AuditLogChangeKey = "nick"
  842. // AuditLogChangeKeyNSFW is sent when channel nsfw restriction changed (bool) - channel
  843. AuditLogChangeKeyNSFW AuditLogChangeKey = "nsfw"
  844. // AuditLogChangeKeyOwnerID is sent when owner changed (snowflake) - guild
  845. AuditLogChangeKeyOwnerID AuditLogChangeKey = "owner_id"
  846. // AuditLogChangeKeyPermissionOverwrite is sent when permissions on a channel changed (array of channel overwrite objects) - channel
  847. AuditLogChangeKeyPermissionOverwrite AuditLogChangeKey = "permission_overwrites"
  848. // AuditLogChangeKeyPermissions is sent when permissions for a role changed (string) - role
  849. AuditLogChangeKeyPermissions AuditLogChangeKey = "permissions"
  850. // AuditLogChangeKeyPosition is sent when text or voice channel position changed (int) - channel
  851. AuditLogChangeKeyPosition AuditLogChangeKey = "position"
  852. // AuditLogChangeKeyPreferredLocale is sent when preferred locale changed (string) - guild
  853. AuditLogChangeKeyPreferredLocale AuditLogChangeKey = "preferred_locale"
  854. // AuditLogChangeKeyPrivacylevel is sent when privacy level of the stage instance changed (integer - privacy level) - stage instance or guild scheduled event
  855. AuditLogChangeKeyPrivacylevel AuditLogChangeKey = "privacy_level"
  856. // AuditLogChangeKeyPruneDeleteDays is sent when number of days after which inactive and role-unassigned members are kicked changed (int) - guild
  857. AuditLogChangeKeyPruneDeleteDays AuditLogChangeKey = "prune_delete_days"
  858. // AuditLogChangeKeyPulibUpdatesChannelID is sent when id of the public updates channel changed (snowflake) - guild
  859. AuditLogChangeKeyPulibUpdatesChannelID AuditLogChangeKey = "public_updates_channel_id"
  860. // AuditLogChangeKeyRateLimitPerUser is sent when amount of seconds a user has to wait before sending another message changed (int) - channel
  861. AuditLogChangeKeyRateLimitPerUser AuditLogChangeKey = "rate_limit_per_user"
  862. // AuditLogChangeKeyRegion is sent when region changed (string) - guild
  863. AuditLogChangeKeyRegion AuditLogChangeKey = "region"
  864. // AuditLogChangeKeyRulesChannelID is sent when id of the rules channel changed (snowflake) - guild
  865. AuditLogChangeKeyRulesChannelID AuditLogChangeKey = "rules_channel_id"
  866. // AuditLogChangeKeySplashHash is sent when invite splash page artwork changed (string) - guild
  867. AuditLogChangeKeySplashHash AuditLogChangeKey = "splash_hash"
  868. // AuditLogChangeKeyStatus is sent when status of guild scheduled event was changed (int - guild scheduled event status) - guild scheduled event
  869. AuditLogChangeKeyStatus AuditLogChangeKey = "status"
  870. // AuditLogChangeKeySystemChannelID is sent when id of the system channel changed (snowflake) - guild
  871. AuditLogChangeKeySystemChannelID AuditLogChangeKey = "system_channel_id"
  872. // AuditLogChangeKeyTags is sent when related emoji of sticker changed (string) - sticker
  873. AuditLogChangeKeyTags AuditLogChangeKey = "tags"
  874. // AuditLogChangeKeyTemporary is sent when invite code is now temporary or never expires (bool) - invite
  875. AuditLogChangeKeyTemporary AuditLogChangeKey = "temporary"
  876. // TODO: remove when compatibility is not required
  877. AuditLogChangeKeyTempoary = AuditLogChangeKeyTemporary
  878. // AuditLogChangeKeyTopic is sent when text channel topic or stage instance topic changed (string) - channel or stage instance
  879. AuditLogChangeKeyTopic AuditLogChangeKey = "topic"
  880. // AuditLogChangeKeyType is sent when type of entity created (int or string) - any
  881. AuditLogChangeKeyType AuditLogChangeKey = "type"
  882. // AuditLogChangeKeyUnicodeEmoji is sent when role unicode emoji changed (string) - role
  883. AuditLogChangeKeyUnicodeEmoji AuditLogChangeKey = "unicode_emoji"
  884. // AuditLogChangeKeyUserLimit is sent when new user limit in a voice channel set (int) - voice channel
  885. AuditLogChangeKeyUserLimit AuditLogChangeKey = "user_limit"
  886. // AuditLogChangeKeyUses is sent when number of times invite code used changed (int) - invite
  887. AuditLogChangeKeyUses AuditLogChangeKey = "uses"
  888. // AuditLogChangeKeyVanityURLCode is sent when guild invite vanity url changed (string) - guild
  889. AuditLogChangeKeyVanityURLCode AuditLogChangeKey = "vanity_url_code"
  890. // AuditLogChangeKeyVerificationLevel is sent when required verification level changed (int - verification level) - guild
  891. AuditLogChangeKeyVerificationLevel AuditLogChangeKey = "verification_level"
  892. // AuditLogChangeKeyWidgetChannelID is sent when channel id of the server widget changed (snowflake) - guild
  893. AuditLogChangeKeyWidgetChannelID AuditLogChangeKey = "widget_channel_id"
  894. // AuditLogChangeKeyWidgetEnabled is sent when server widget enabled/disabled (bool) - guild
  895. AuditLogChangeKeyWidgetEnabled AuditLogChangeKey = "widget_enabled"
  896. // AuditLogChangeKeyRoleAdd is sent when new role added (array of partial role objects) - guild
  897. AuditLogChangeKeyRoleAdd AuditLogChangeKey = "$add"
  898. // AuditLogChangeKeyRoleRemove is sent when role removed (array of partial role objects) - guild
  899. AuditLogChangeKeyRoleRemove AuditLogChangeKey = "$remove"
  900. )
  901. // AuditLogOptions optional data for the AuditLog
  902. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info
  903. type AuditLogOptions struct {
  904. DeleteMemberDays string `json:"delete_member_days"`
  905. MembersRemoved string `json:"members_removed"`
  906. ChannelID string `json:"channel_id"`
  907. MessageID string `json:"message_id"`
  908. Count string `json:"count"`
  909. ID string `json:"id"`
  910. Type *AuditLogOptionsType `json:"type"`
  911. RoleName string `json:"role_name"`
  912. }
  913. // AuditLogOptionsType of the AuditLogOption
  914. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info
  915. type AuditLogOptionsType string
  916. // Valid Types for AuditLogOptionsType
  917. const (
  918. AuditLogOptionsTypeMember AuditLogOptionsType = "member"
  919. AuditLogOptionsTypeRole AuditLogOptionsType = "role"
  920. )
  921. // AuditLogAction is the Action of the AuditLog (see AuditLogAction* consts)
  922. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-events
  923. type AuditLogAction int
  924. // Block contains Discord Audit Log Action Types
  925. const (
  926. AuditLogActionGuildUpdate AuditLogAction = 1
  927. AuditLogActionChannelCreate AuditLogAction = 10
  928. AuditLogActionChannelUpdate AuditLogAction = 11
  929. AuditLogActionChannelDelete AuditLogAction = 12
  930. AuditLogActionChannelOverwriteCreate AuditLogAction = 13
  931. AuditLogActionChannelOverwriteUpdate AuditLogAction = 14
  932. AuditLogActionChannelOverwriteDelete AuditLogAction = 15
  933. AuditLogActionMemberKick AuditLogAction = 20
  934. AuditLogActionMemberPrune AuditLogAction = 21
  935. AuditLogActionMemberBanAdd AuditLogAction = 22
  936. AuditLogActionMemberBanRemove AuditLogAction = 23
  937. AuditLogActionMemberUpdate AuditLogAction = 24
  938. AuditLogActionMemberRoleUpdate AuditLogAction = 25
  939. AuditLogActionMemberMove AuditLogAction = 26
  940. AuditLogActionMemberDisconnect AuditLogAction = 27
  941. AuditLogActionBotAdd AuditLogAction = 28
  942. AuditLogActionRoleCreate AuditLogAction = 30
  943. AuditLogActionRoleUpdate AuditLogAction = 31
  944. AuditLogActionRoleDelete AuditLogAction = 32
  945. AuditLogActionInviteCreate AuditLogAction = 40
  946. AuditLogActionInviteUpdate AuditLogAction = 41
  947. AuditLogActionInviteDelete AuditLogAction = 42
  948. AuditLogActionWebhookCreate AuditLogAction = 50
  949. AuditLogActionWebhookUpdate AuditLogAction = 51
  950. AuditLogActionWebhookDelete AuditLogAction = 52
  951. AuditLogActionEmojiCreate AuditLogAction = 60
  952. AuditLogActionEmojiUpdate AuditLogAction = 61
  953. AuditLogActionEmojiDelete AuditLogAction = 62
  954. AuditLogActionMessageDelete AuditLogAction = 72
  955. AuditLogActionMessageBulkDelete AuditLogAction = 73
  956. AuditLogActionMessagePin AuditLogAction = 74
  957. AuditLogActionMessageUnpin AuditLogAction = 75
  958. AuditLogActionIntegrationCreate AuditLogAction = 80
  959. AuditLogActionIntegrationUpdate AuditLogAction = 81
  960. AuditLogActionIntegrationDelete AuditLogAction = 82
  961. AuditLogActionStageInstanceCreate AuditLogAction = 83
  962. AuditLogActionStageInstanceUpdate AuditLogAction = 84
  963. AuditLogActionStageInstanceDelete AuditLogAction = 85
  964. AuditLogActionStickerCreate AuditLogAction = 90
  965. AuditLogActionStickerUpdate AuditLogAction = 91
  966. AuditLogActionStickerDelete AuditLogAction = 92
  967. AuditLogGuildScheduledEventCreate AuditLogAction = 100
  968. AuditLogGuildScheduledEventUpdare AuditLogAction = 101
  969. AuditLogGuildScheduledEventDelete AuditLogAction = 102
  970. AuditLogActionThreadCreate AuditLogAction = 110
  971. AuditLogActionThreadUpdate AuditLogAction = 111
  972. AuditLogActionThreadDelete AuditLogAction = 112
  973. )
  974. // A UserGuildSettingsChannelOverride stores data for a channel override for a users guild settings.
  975. type UserGuildSettingsChannelOverride struct {
  976. Muted bool `json:"muted"`
  977. MessageNotifications int `json:"message_notifications"`
  978. ChannelID string `json:"channel_id"`
  979. }
  980. // A UserGuildSettings stores data for a users guild settings.
  981. type UserGuildSettings struct {
  982. SupressEveryone bool `json:"suppress_everyone"`
  983. Muted bool `json:"muted"`
  984. MobilePush bool `json:"mobile_push"`
  985. MessageNotifications int `json:"message_notifications"`
  986. GuildID string `json:"guild_id"`
  987. ChannelOverrides []*UserGuildSettingsChannelOverride `json:"channel_overrides"`
  988. }
  989. // A UserGuildSettingsEdit stores data for editing UserGuildSettings
  990. type UserGuildSettingsEdit struct {
  991. SupressEveryone bool `json:"suppress_everyone"`
  992. Muted bool `json:"muted"`
  993. MobilePush bool `json:"mobile_push"`
  994. MessageNotifications int `json:"message_notifications"`
  995. ChannelOverrides map[string]*UserGuildSettingsChannelOverride `json:"channel_overrides"`
  996. }
  997. // An APIErrorMessage is an api error message returned from discord
  998. type APIErrorMessage struct {
  999. Code int `json:"code"`
  1000. Message string `json:"message"`
  1001. }
  1002. // MessageReaction stores the data for a message reaction.
  1003. type MessageReaction struct {
  1004. UserID string `json:"user_id"`
  1005. MessageID string `json:"message_id"`
  1006. Emoji Emoji `json:"emoji"`
  1007. ChannelID string `json:"channel_id"`
  1008. GuildID string `json:"guild_id,omitempty"`
  1009. }
  1010. // GatewayBotResponse stores the data for the gateway/bot response
  1011. type GatewayBotResponse struct {
  1012. URL string `json:"url"`
  1013. Shards int `json:"shards"`
  1014. SessionStartLimit SessionInformation `json:"session_start_limit"`
  1015. }
  1016. // SessionInformation provides the information for max concurrency sharding
  1017. type SessionInformation struct {
  1018. Total int `json:"total,omitempty"`
  1019. Remaining int `json:"remaining,omitempty"`
  1020. ResetAfter int `json:"reset_after,omitempty"`
  1021. MaxConcurrency int `json:"max_concurrency,omitempty"`
  1022. }
  1023. // GatewayStatusUpdate is sent by the client to indicate a presence or status update
  1024. // https://discord.com/developers/docs/topics/gateway#update-status-gateway-status-update-structure
  1025. type GatewayStatusUpdate struct {
  1026. Since int `json:"since"`
  1027. Game Activity `json:"game"`
  1028. Status string `json:"status"`
  1029. AFK bool `json:"afk"`
  1030. }
  1031. // Activity defines the Activity sent with GatewayStatusUpdate
  1032. // https://discord.com/developers/docs/topics/gateway#activity-object
  1033. type Activity struct {
  1034. Name string `json:"name"`
  1035. Type ActivityType `json:"type"`
  1036. URL string `json:"url,omitempty"`
  1037. CreatedAt time.Time `json:"created_at"`
  1038. ApplicationID string `json:"application_id,omitempty"`
  1039. State string `json:"state,omitempty"`
  1040. Details string `json:"details,omitempty"`
  1041. Timestamps TimeStamps `json:"timestamps,omitempty"`
  1042. Emoji Emoji `json:"emoji,omitempty"`
  1043. Party Party `json:"party,omitempty"`
  1044. Assets Assets `json:"assets,omitempty"`
  1045. Secrets Secrets `json:"secrets,omitempty"`
  1046. Instance bool `json:"instance,omitempty"`
  1047. Flags int `json:"flags,omitempty"`
  1048. }
  1049. // UnmarshalJSON is a custom unmarshaljson to make CreatedAt a time.Time instead of an int
  1050. func (activity *Activity) UnmarshalJSON(b []byte) error {
  1051. temp := struct {
  1052. Name string `json:"name"`
  1053. Type ActivityType `json:"type"`
  1054. URL string `json:"url,omitempty"`
  1055. CreatedAt int64 `json:"created_at"`
  1056. ApplicationID string `json:"application_id,omitempty"`
  1057. State string `json:"state,omitempty"`
  1058. Details string `json:"details,omitempty"`
  1059. Timestamps TimeStamps `json:"timestamps,omitempty"`
  1060. Emoji Emoji `json:"emoji,omitempty"`
  1061. Party Party `json:"party,omitempty"`
  1062. Assets Assets `json:"assets,omitempty"`
  1063. Secrets Secrets `json:"secrets,omitempty"`
  1064. Instance bool `json:"instance,omitempty"`
  1065. Flags int `json:"flags,omitempty"`
  1066. }{}
  1067. err := json.Unmarshal(b, &temp)
  1068. if err != nil {
  1069. return err
  1070. }
  1071. activity.CreatedAt = time.Unix(0, temp.CreatedAt*1000000)
  1072. activity.ApplicationID = temp.ApplicationID
  1073. activity.Assets = temp.Assets
  1074. activity.Details = temp.Details
  1075. activity.Emoji = temp.Emoji
  1076. activity.Flags = temp.Flags
  1077. activity.Instance = temp.Instance
  1078. activity.Name = temp.Name
  1079. activity.Party = temp.Party
  1080. activity.Secrets = temp.Secrets
  1081. activity.State = temp.State
  1082. activity.Timestamps = temp.Timestamps
  1083. activity.Type = temp.Type
  1084. activity.URL = temp.URL
  1085. return nil
  1086. }
  1087. // Party defines the Party field in the Activity struct
  1088. // https://discord.com/developers/docs/topics/gateway#activity-object
  1089. type Party struct {
  1090. ID string `json:"id,omitempty"`
  1091. Size []int `json:"size,omitempty"`
  1092. }
  1093. // Secrets defines the Secrets field for the Activity struct
  1094. // https://discord.com/developers/docs/topics/gateway#activity-object
  1095. type Secrets struct {
  1096. Join string `json:"join,omitempty"`
  1097. Spectate string `json:"spectate,omitempty"`
  1098. Match string `json:"match,omitempty"`
  1099. }
  1100. // ActivityType is the type of Activity (see ActivityType* consts) in the Activity struct
  1101. // https://discord.com/developers/docs/topics/gateway#activity-object-activity-types
  1102. type ActivityType int
  1103. // Valid ActivityType values
  1104. const (
  1105. ActivityTypeGame ActivityType = 0
  1106. ActivityTypeStreaming ActivityType = 1
  1107. ActivityTypeListening ActivityType = 2
  1108. ActivityTypeWatching ActivityType = 3
  1109. ActivityTypeCustom ActivityType = 4
  1110. ActivityTypeCompeting ActivityType = 5
  1111. )
  1112. // Identify is sent during initial handshake with the discord gateway.
  1113. // https://discord.com/developers/docs/topics/gateway#identify
  1114. type Identify struct {
  1115. Token string `json:"token"`
  1116. Properties IdentifyProperties `json:"properties"`
  1117. Compress bool `json:"compress"`
  1118. LargeThreshold int `json:"large_threshold"`
  1119. Shard *[2]int `json:"shard,omitempty"`
  1120. Presence GatewayStatusUpdate `json:"presence,omitempty"`
  1121. GuildSubscriptions bool `json:"guild_subscriptions"`
  1122. Intents Intent `json:"intents"`
  1123. }
  1124. // IdentifyProperties contains the "properties" portion of an Identify packet
  1125. // https://discord.com/developers/docs/topics/gateway#identify-identify-connection-properties
  1126. type IdentifyProperties struct {
  1127. OS string `json:"$os"`
  1128. Browser string `json:"$browser"`
  1129. Device string `json:"$device"`
  1130. Referer string `json:"$referer"`
  1131. ReferringDomain string `json:"$referring_domain"`
  1132. }
  1133. // Constants for the different bit offsets of text channel permissions
  1134. const (
  1135. // Deprecated: PermissionReadMessages has been replaced with PermissionViewChannel for text and voice channels
  1136. PermissionReadMessages = 0x0000000000000400
  1137. PermissionSendMessages = 0x0000000000000800
  1138. PermissionSendTTSMessages = 0x0000000000001000
  1139. PermissionManageMessages = 0x0000000000002000
  1140. PermissionEmbedLinks = 0x0000000000004000
  1141. PermissionAttachFiles = 0x0000000000008000
  1142. PermissionReadMessageHistory = 0x0000000000010000
  1143. PermissionMentionEveryone = 0x0000000000020000
  1144. PermissionUseExternalEmojis = 0x0000000000040000
  1145. PermissionUseSlashCommands = 0x0000000080000000
  1146. )
  1147. // Constants for the different bit offsets of voice permissions
  1148. const (
  1149. PermissionVoicePrioritySpeaker = 0x0000000000000100
  1150. PermissionVoiceStreamVideo = 0x0000000000000200
  1151. PermissionVoiceConnect = 0x0000000000100000
  1152. PermissionVoiceSpeak = 0x0000000000200000
  1153. PermissionVoiceMuteMembers = 0x0000000000400000
  1154. PermissionVoiceDeafenMembers = 0x0000000000800000
  1155. PermissionVoiceMoveMembers = 0x0000000001000000
  1156. PermissionVoiceUseVAD = 0x0000000002000000
  1157. PermissionVoiceRequestToSpeak = 0x0000000100000000
  1158. )
  1159. // Constants for general management.
  1160. const (
  1161. PermissionChangeNickname = 0x0000000004000000
  1162. PermissionManageNicknames = 0x0000000008000000
  1163. PermissionManageRoles = 0x0000000010000000
  1164. PermissionManageWebhooks = 0x0000000020000000
  1165. PermissionManageEmojis = 0x0000000040000000
  1166. )
  1167. // Constants for the different bit offsets of general permissions
  1168. const (
  1169. PermissionCreateInstantInvite = 0x0000000000000001
  1170. PermissionKickMembers = 0x0000000000000002
  1171. PermissionBanMembers = 0x0000000000000004
  1172. PermissionAdministrator = 0x0000000000000008
  1173. PermissionManageChannels = 0x0000000000000010
  1174. PermissionManageServer = 0x0000000000000020
  1175. PermissionAddReactions = 0x0000000000000040
  1176. PermissionViewAuditLogs = 0x0000000000000080
  1177. PermissionViewChannel = 0x0000000000000400
  1178. PermissionViewGuildInsights = 0x0000000000080000
  1179. PermissionModerateMembers = 0x0000010000000000
  1180. PermissionAllText = PermissionViewChannel |
  1181. PermissionSendMessages |
  1182. PermissionSendTTSMessages |
  1183. PermissionManageMessages |
  1184. PermissionEmbedLinks |
  1185. PermissionAttachFiles |
  1186. PermissionReadMessageHistory |
  1187. PermissionMentionEveryone
  1188. PermissionAllVoice = PermissionViewChannel |
  1189. PermissionVoiceConnect |
  1190. PermissionVoiceSpeak |
  1191. PermissionVoiceMuteMembers |
  1192. PermissionVoiceDeafenMembers |
  1193. PermissionVoiceMoveMembers |
  1194. PermissionVoiceUseVAD |
  1195. PermissionVoicePrioritySpeaker
  1196. PermissionAllChannel = PermissionAllText |
  1197. PermissionAllVoice |
  1198. PermissionCreateInstantInvite |
  1199. PermissionManageRoles |
  1200. PermissionManageChannels |
  1201. PermissionAddReactions |
  1202. PermissionViewAuditLogs
  1203. PermissionAll = PermissionAllChannel |
  1204. PermissionKickMembers |
  1205. PermissionBanMembers |
  1206. PermissionManageServer |
  1207. PermissionAdministrator |
  1208. PermissionManageWebhooks |
  1209. PermissionManageEmojis
  1210. )
  1211. // Block contains Discord JSON Error Response codes
  1212. const (
  1213. ErrCodeGeneralError = 0
  1214. ErrCodeUnknownAccount = 10001
  1215. ErrCodeUnknownApplication = 10002
  1216. ErrCodeUnknownChannel = 10003
  1217. ErrCodeUnknownGuild = 10004
  1218. ErrCodeUnknownIntegration = 10005
  1219. ErrCodeUnknownInvite = 10006
  1220. ErrCodeUnknownMember = 10007
  1221. ErrCodeUnknownMessage = 10008
  1222. ErrCodeUnknownOverwrite = 10009
  1223. ErrCodeUnknownProvider = 10010
  1224. ErrCodeUnknownRole = 10011
  1225. ErrCodeUnknownToken = 10012
  1226. ErrCodeUnknownUser = 10013
  1227. ErrCodeUnknownEmoji = 10014
  1228. ErrCodeUnknownWebhook = 10015
  1229. ErrCodeUnknownWebhookService = 10016
  1230. ErrCodeUnknownSession = 10020
  1231. ErrCodeUnknownBan = 10026
  1232. ErrCodeUnknownSKU = 10027
  1233. ErrCodeUnknownStoreListing = 10028
  1234. ErrCodeUnknownEntitlement = 10029
  1235. ErrCodeUnknownBuild = 10030
  1236. ErrCodeUnknownLobby = 10031
  1237. ErrCodeUnknownBranch = 10032
  1238. ErrCodeUnknownStoreDirectoryLayout = 10033
  1239. ErrCodeUnknownRedistributable = 10036
  1240. ErrCodeUnknownGiftCode = 10038
  1241. ErrCodeUnknownStream = 10049
  1242. ErrCodeUnknownPremiumServerSubscribeCooldown = 10050
  1243. ErrCodeUnknownGuildTemplate = 10057
  1244. ErrCodeUnknownDiscoveryCategory = 10059
  1245. ErrCodeUnknownSticker = 10060
  1246. ErrCodeUnknownInteraction = 10062
  1247. ErrCodeUnknownApplicationCommand = 10063
  1248. ErrCodeUnknownApplicationCommandPermissions = 10066
  1249. ErrCodeUnknownStageInstance = 10067
  1250. ErrCodeUnknownGuildMemberVerificationForm = 10068
  1251. ErrCodeUnknownGuildWelcomeScreen = 10069
  1252. ErrCodeUnknownGuildScheduledEvent = 10070
  1253. ErrCodeUnknownGuildScheduledEventUser = 10071
  1254. ErrCodeBotsCannotUseEndpoint = 20001
  1255. ErrCodeOnlyBotsCanUseEndpoint = 20002
  1256. ErrCodeExplicitContentCannotBeSentToTheDesiredRecipients = 20009
  1257. ErrCodeYouAreNotAuthorizedToPerformThisActionOnThisApplication = 20012
  1258. ErrCodeThisActionCannotBePerformedDueToSlowmodeRateLimit = 20016
  1259. ErrCodeOnlyTheOwnerOfThisAccountCanPerformThisAction = 20018
  1260. ErrCodeMessageCannotBeEditedDueToAnnouncementRateLimits = 20022
  1261. ErrCodeChannelHasHitWriteRateLimit = 20028
  1262. ErrCodeTheWriteActionYouArePerformingOnTheServerHasHitTheWriteRateLimit = 20029
  1263. ErrCodeStageTopicContainsNotAllowedWordsForPublicStages = 20031
  1264. ErrCodeGuildPremiumSubscriptionLevelTooLow = 20035
  1265. ErrCodeMaximumPinsReached = 30003
  1266. ErrCodeMaximumNumberOfRecipientsReached = 30004
  1267. ErrCodeMaximumGuildRolesReached = 30005
  1268. ErrCodeMaximumNumberOfWebhooksReached = 30007
  1269. ErrCodeMaximumNumberOfEmojisReached = 30008
  1270. ErrCodeTooManyReactions = 30010
  1271. ErrCodeMaximumNumberOfGuildChannelsReached = 30013
  1272. ErrCodeMaximumNumberOfAttachmentsInAMessageReached = 30015
  1273. ErrCodeMaximumNumberOfInvitesReached = 30016
  1274. ErrCodeMaximumNumberOfAnimatedEmojisReached = 30018
  1275. ErrCodeMaximumNumberOfServerMembersReached = 30019
  1276. ErrCodeMaximumNumberOfGuildDiscoverySubcategoriesReached = 30030
  1277. ErrCodeGuildAlreadyHasATemplate = 30031
  1278. ErrCodeMaximumNumberOfThreadParticipantsReached = 30033
  1279. ErrCodeMaximumNumberOfBansForNonGuildMembersHaveBeenExceeded = 30035
  1280. ErrCodeMaximumNumberOfBansFetchesHasBeenReached = 30037
  1281. ErrCodeMaximumNumberOfUncompletedGuildScheduledEventsReached = 30038
  1282. ErrCodeMaximumNumberOfStickersReached = 30039
  1283. ErrCodeMaximumNumberOfPruneRequestsHasBeenReached = 30040
  1284. ErrCodeMaximumNumberOfGuildWidgetSettingsUpdatesHasBeenReached = 30042
  1285. ErrCodeMaximumNumberOfEditsToMessagesOlderThanOneHourReached = 30046
  1286. ErrCodeUnauthorized = 40001
  1287. ErrCodeActionRequiredVerifiedAccount = 40002
  1288. ErrCodeOpeningDirectMessagesTooFast = 40003
  1289. ErrCodeSendMessagesHasBeenTemporarilyDisabled = 40004
  1290. ErrCodeRequestEntityTooLarge = 40005
  1291. ErrCodeFeatureTemporarilyDisabledServerSide = 40006
  1292. ErrCodeUserIsBannedFromThisGuild = 40007
  1293. ErrCodeTargetIsNotConnectedToVoice = 40032
  1294. ErrCodeMessageAlreadyCrossposted = 40033
  1295. ErrCodeAnApplicationWithThatNameAlreadyExists = 40041
  1296. ErrCodeInteractionHasAlreadyBeenAcknowledged = 40060
  1297. ErrCodeMissingAccess = 50001
  1298. ErrCodeInvalidAccountType = 50002
  1299. ErrCodeCannotExecuteActionOnDMChannel = 50003
  1300. ErrCodeEmbedDisabled = 50004
  1301. ErrCodeGuildWidgetDisabled = 50004
  1302. ErrCodeCannotEditFromAnotherUser = 50005
  1303. ErrCodeCannotSendEmptyMessage = 50006
  1304. ErrCodeCannotSendMessagesToThisUser = 50007
  1305. ErrCodeCannotSendMessagesInVoiceChannel = 50008
  1306. ErrCodeChannelVerificationLevelTooHigh = 50009
  1307. ErrCodeOAuth2ApplicationDoesNotHaveBot = 50010
  1308. ErrCodeOAuth2ApplicationLimitReached = 50011
  1309. ErrCodeInvalidOAuthState = 50012
  1310. ErrCodeMissingPermissions = 50013
  1311. ErrCodeInvalidAuthenticationToken = 50014
  1312. ErrCodeTooFewOrTooManyMessagesToDelete = 50016
  1313. ErrCodeCanOnlyPinMessageToOriginatingChannel = 50019
  1314. ErrCodeInviteCodeWasEitherInvalidOrTaken = 50020
  1315. ErrCodeCannotExecuteActionOnSystemMessage = 50021
  1316. ErrCodeCannotExecuteActionOnThisChannelType = 50024
  1317. ErrCodeInvalidOAuth2AccessTokenProvided = 50025
  1318. ErrCodeMissingRequiredOAuth2Scope = 50026
  1319. ErrCodeInvalidWebhookTokenProvided = 50027
  1320. ErrCodeInvalidRole = 50028
  1321. ErrCodeInvalidRecipients = 50033
  1322. ErrCodeMessageProvidedTooOldForBulkDelete = 50034
  1323. ErrCodeInvalidFormBody = 50035
  1324. ErrCodeInviteAcceptedToGuildApplicationsBotNotIn = 50036
  1325. ErrCodeInvalidAPIVersionProvided = 50041
  1326. ErrCodeFileUploadedExceedsTheMaximumSize = 50045
  1327. ErrCodeInvalidFileUploaded = 50046
  1328. ErrCodeInvalidGuild = 50055
  1329. ErrCodeInvalidMessageType = 50068
  1330. ErrCodeCannotDeleteAChannelRequiredForCommunityGuilds = 50074
  1331. ErrCodeInvalidStickerSent = 50081
  1332. ErrCodePerformedOperationOnArchivedThread = 50083
  1333. ErrCodeBeforeValueIsEarlierThanThreadCreationDate = 50085
  1334. ErrCodeCommunityServerChannelsMustBeTextChannels = 50086
  1335. ErrCodeThisServerIsNotAvailableInYourLocation = 50095
  1336. ErrCodeThisServerNeedsMonetizationEnabledInOrderToPerformThisAction = 50097
  1337. ErrCodeThisServerNeedsMoreBoostsToPerformThisAction = 50101
  1338. ErrCodeTheRequestBodyContainsInvalidJSON = 50109
  1339. ErrCodeNoUsersWithDiscordTagExist = 80004
  1340. ErrCodeReactionBlocked = 90001
  1341. ErrCodeAPIResourceIsCurrentlyOverloaded = 130000
  1342. ErrCodeTheStageIsAlreadyOpen = 150006
  1343. ErrCodeCannotReplyWithoutPermissionToReadMessageHistory = 160002
  1344. ErrCodeThreadAlreadyCreatedForThisMessage = 160004
  1345. ErrCodeThreadIsLocked = 160005
  1346. ErrCodeMaximumNumberOfActiveThreadsReached = 160006
  1347. ErrCodeMaximumNumberOfActiveAnnouncementThreadsReached = 160007
  1348. ErrCodeInvalidJSONForUploadedLottieFile = 170001
  1349. ErrCodeUploadedLottiesCannotContainRasterizedImages = 170002
  1350. ErrCodeStickerMaximumFramerateExceeded = 170003
  1351. ErrCodeStickerFrameCountExceedsMaximumOfOneThousandFrames = 170004
  1352. ErrCodeLottieAnimationMaximumDimensionsExceeded = 170005
  1353. ErrCodeStickerFrameRateOutOfRange = 170006
  1354. ErrCodeStickerAnimationDurationExceedsMaximumOfFiveSeconds = 170007
  1355. ErrCodeCannotUpdateAFinishedEvent = 180000
  1356. ErrCodeFailedToCreateStageNeededForStageEvent = 180002
  1357. )
  1358. // Intent is the type of a Gateway Intent
  1359. // https://discord.com/developers/docs/topics/gateway#gateway-intents
  1360. type Intent int
  1361. // Constants for the different bit offsets of intents
  1362. const (
  1363. IntentGuilds Intent = 1 << 0
  1364. IntentGuildMembers Intent = 1 << 1
  1365. IntentGuildBans Intent = 1 << 2
  1366. IntentGuildEmojis Intent = 1 << 3
  1367. IntentGuildIntegrations Intent = 1 << 4
  1368. IntentGuildWebhooks Intent = 1 << 5
  1369. IntentGuildInvites Intent = 1 << 6
  1370. IntentGuildVoiceStates Intent = 1 << 7
  1371. IntentGuildPresences Intent = 1 << 8
  1372. IntentGuildMessages Intent = 1 << 9
  1373. IntentGuildMessageReactions Intent = 1 << 10
  1374. IntentGuildMessageTyping Intent = 1 << 11
  1375. IntentDirectMessages Intent = 1 << 12
  1376. IntentDirectMessageReactions Intent = 1 << 13
  1377. IntentDirectMessageTyping Intent = 1 << 14
  1378. IntentMessageContent Intent = 1 << 15
  1379. IntentGuildScheduledEvents Intent = 1 << 16
  1380. // TODO: remove when compatibility is not needed
  1381. IntentsGuilds Intent = 1 << 0
  1382. IntentsGuildMembers Intent = 1 << 1
  1383. IntentsGuildBans Intent = 1 << 2
  1384. IntentsGuildEmojis Intent = 1 << 3
  1385. IntentsGuildIntegrations Intent = 1 << 4
  1386. IntentsGuildWebhooks Intent = 1 << 5
  1387. IntentsGuildInvites Intent = 1 << 6
  1388. IntentsGuildVoiceStates Intent = 1 << 7
  1389. IntentsGuildPresences Intent = 1 << 8
  1390. IntentsGuildMessages Intent = 1 << 9
  1391. IntentsGuildMessageReactions Intent = 1 << 10
  1392. IntentsGuildMessageTyping Intent = 1 << 11
  1393. IntentsDirectMessages Intent = 1 << 12
  1394. IntentsDirectMessageReactions Intent = 1 << 13
  1395. IntentsDirectMessageTyping Intent = 1 << 14
  1396. IntentsMessageContent Intent = 1 << 15
  1397. IntentsGuildScheduledEvents Intent = 1 << 16
  1398. IntentsAllWithoutPrivileged = IntentGuilds |
  1399. IntentGuildBans |
  1400. IntentGuildEmojis |
  1401. IntentGuildIntegrations |
  1402. IntentGuildWebhooks |
  1403. IntentGuildInvites |
  1404. IntentGuildVoiceStates |
  1405. IntentGuildMessages |
  1406. IntentGuildMessageReactions |
  1407. IntentGuildMessageTyping |
  1408. IntentDirectMessages |
  1409. IntentDirectMessageReactions |
  1410. IntentDirectMessageTyping |
  1411. IntentGuildScheduledEvents
  1412. IntentsAll = IntentsAllWithoutPrivileged |
  1413. IntentGuildMembers |
  1414. IntentGuildPresences |
  1415. IntentMessageContent
  1416. IntentsNone Intent = 0
  1417. )
  1418. // MakeIntent used to help convert a gateway intent value for use in the Identify structure;
  1419. // this was useful to help support the use of a pointer type when intents were optional.
  1420. // This is now a no-op, and is not necessary to use.
  1421. func MakeIntent(intents Intent) Intent {
  1422. return intents
  1423. }