structs.go 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438
  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. AuditLogChangeKeyName AuditLogChangeKey = "name"
  759. AuditLogChangeKeyIconHash AuditLogChangeKey = "icon_hash"
  760. AuditLogChangeKeySplashHash AuditLogChangeKey = "splash_hash"
  761. AuditLogChangeKeyOwnerID AuditLogChangeKey = "owner_id"
  762. AuditLogChangeKeyRegion AuditLogChangeKey = "region"
  763. AuditLogChangeKeyAfkChannelID AuditLogChangeKey = "afk_channel_id"
  764. AuditLogChangeKeyAfkTimeout AuditLogChangeKey = "afk_timeout"
  765. AuditLogChangeKeyMfaLevel AuditLogChangeKey = "mfa_level"
  766. AuditLogChangeKeyVerificationLevel AuditLogChangeKey = "verification_level"
  767. AuditLogChangeKeyExplicitContentFilter AuditLogChangeKey = "explicit_content_filter"
  768. AuditLogChangeKeyDefaultMessageNotification AuditLogChangeKey = "default_message_notifications"
  769. AuditLogChangeKeyVanityURLCode AuditLogChangeKey = "vanity_url_code"
  770. AuditLogChangeKeyRoleAdd AuditLogChangeKey = "$add"
  771. AuditLogChangeKeyRoleRemove AuditLogChangeKey = "$remove"
  772. AuditLogChangeKeyPruneDeleteDays AuditLogChangeKey = "prune_delete_days"
  773. AuditLogChangeKeyWidgetEnabled AuditLogChangeKey = "widget_enabled"
  774. AuditLogChangeKeyWidgetChannelID AuditLogChangeKey = "widget_channel_id"
  775. AuditLogChangeKeySystemChannelID AuditLogChangeKey = "system_channel_id"
  776. AuditLogChangeKeyPosition AuditLogChangeKey = "position"
  777. AuditLogChangeKeyTopic AuditLogChangeKey = "topic"
  778. AuditLogChangeKeyBitrate AuditLogChangeKey = "bitrate"
  779. AuditLogChangeKeyPermissionOverwrite AuditLogChangeKey = "permission_overwrites"
  780. AuditLogChangeKeyNSFW AuditLogChangeKey = "nsfw"
  781. AuditLogChangeKeyApplicationID AuditLogChangeKey = "application_id"
  782. AuditLogChangeKeyRateLimitPerUser AuditLogChangeKey = "rate_limit_per_user"
  783. AuditLogChangeKeyPermissions AuditLogChangeKey = "permissions"
  784. AuditLogChangeKeyColor AuditLogChangeKey = "color"
  785. AuditLogChangeKeyHoist AuditLogChangeKey = "hoist"
  786. AuditLogChangeKeyMentionable AuditLogChangeKey = "mentionable"
  787. AuditLogChangeKeyAllow AuditLogChangeKey = "allow"
  788. AuditLogChangeKeyDeny AuditLogChangeKey = "deny"
  789. AuditLogChangeKeyCode AuditLogChangeKey = "code"
  790. AuditLogChangeKeyChannelID AuditLogChangeKey = "channel_id"
  791. AuditLogChangeKeyInviterID AuditLogChangeKey = "inviter_id"
  792. AuditLogChangeKeyMaxUses AuditLogChangeKey = "max_uses"
  793. AuditLogChangeKeyUses AuditLogChangeKey = "uses"
  794. AuditLogChangeKeyMaxAge AuditLogChangeKey = "max_age"
  795. AuditLogChangeKeyTempoary AuditLogChangeKey = "temporary"
  796. AuditLogChangeKeyDeaf AuditLogChangeKey = "deaf"
  797. AuditLogChangeKeyMute AuditLogChangeKey = "mute"
  798. AuditLogChangeKeyNick AuditLogChangeKey = "nick"
  799. AuditLogChangeKeyAvatarHash AuditLogChangeKey = "avatar_hash"
  800. AuditLogChangeKeyID AuditLogChangeKey = "id"
  801. AuditLogChangeKeyType AuditLogChangeKey = "type"
  802. AuditLogChangeKeyEnableEmoticons AuditLogChangeKey = "enable_emoticons"
  803. AuditLogChangeKeyExpireBehavior AuditLogChangeKey = "expire_behavior"
  804. AuditLogChangeKeyExpireGracePeriod AuditLogChangeKey = "expire_grace_period"
  805. )
  806. // AuditLogOptions optional data for the AuditLog
  807. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info
  808. type AuditLogOptions struct {
  809. DeleteMemberDays string `json:"delete_member_days"`
  810. MembersRemoved string `json:"members_removed"`
  811. ChannelID string `json:"channel_id"`
  812. MessageID string `json:"message_id"`
  813. Count string `json:"count"`
  814. ID string `json:"id"`
  815. Type *AuditLogOptionsType `json:"type"`
  816. RoleName string `json:"role_name"`
  817. }
  818. // AuditLogOptionsType of the AuditLogOption
  819. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info
  820. type AuditLogOptionsType string
  821. // Valid Types for AuditLogOptionsType
  822. const (
  823. AuditLogOptionsTypeMember AuditLogOptionsType = "member"
  824. AuditLogOptionsTypeRole AuditLogOptionsType = "role"
  825. )
  826. // AuditLogAction is the Action of the AuditLog (see AuditLogAction* consts)
  827. // https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-events
  828. type AuditLogAction int
  829. // Block contains Discord Audit Log Action Types
  830. const (
  831. AuditLogActionGuildUpdate AuditLogAction = 1
  832. AuditLogActionChannelCreate AuditLogAction = 10
  833. AuditLogActionChannelUpdate AuditLogAction = 11
  834. AuditLogActionChannelDelete AuditLogAction = 12
  835. AuditLogActionChannelOverwriteCreate AuditLogAction = 13
  836. AuditLogActionChannelOverwriteUpdate AuditLogAction = 14
  837. AuditLogActionChannelOverwriteDelete AuditLogAction = 15
  838. AuditLogActionMemberKick AuditLogAction = 20
  839. AuditLogActionMemberPrune AuditLogAction = 21
  840. AuditLogActionMemberBanAdd AuditLogAction = 22
  841. AuditLogActionMemberBanRemove AuditLogAction = 23
  842. AuditLogActionMemberUpdate AuditLogAction = 24
  843. AuditLogActionMemberRoleUpdate AuditLogAction = 25
  844. AuditLogActionRoleCreate AuditLogAction = 30
  845. AuditLogActionRoleUpdate AuditLogAction = 31
  846. AuditLogActionRoleDelete AuditLogAction = 32
  847. AuditLogActionInviteCreate AuditLogAction = 40
  848. AuditLogActionInviteUpdate AuditLogAction = 41
  849. AuditLogActionInviteDelete AuditLogAction = 42
  850. AuditLogActionWebhookCreate AuditLogAction = 50
  851. AuditLogActionWebhookUpdate AuditLogAction = 51
  852. AuditLogActionWebhookDelete AuditLogAction = 52
  853. AuditLogActionEmojiCreate AuditLogAction = 60
  854. AuditLogActionEmojiUpdate AuditLogAction = 61
  855. AuditLogActionEmojiDelete AuditLogAction = 62
  856. AuditLogActionMessageDelete AuditLogAction = 72
  857. AuditLogActionMessageBulkDelete AuditLogAction = 73
  858. AuditLogActionMessagePin AuditLogAction = 74
  859. AuditLogActionMessageUnpin AuditLogAction = 75
  860. AuditLogActionIntegrationCreate AuditLogAction = 80
  861. AuditLogActionIntegrationUpdate AuditLogAction = 81
  862. AuditLogActionIntegrationDelete AuditLogAction = 82
  863. )
  864. // A UserGuildSettingsChannelOverride stores data for a channel override for a users guild settings.
  865. type UserGuildSettingsChannelOverride struct {
  866. Muted bool `json:"muted"`
  867. MessageNotifications int `json:"message_notifications"`
  868. ChannelID string `json:"channel_id"`
  869. }
  870. // A UserGuildSettings stores data for a users guild settings.
  871. type UserGuildSettings struct {
  872. SupressEveryone bool `json:"suppress_everyone"`
  873. Muted bool `json:"muted"`
  874. MobilePush bool `json:"mobile_push"`
  875. MessageNotifications int `json:"message_notifications"`
  876. GuildID string `json:"guild_id"`
  877. ChannelOverrides []*UserGuildSettingsChannelOverride `json:"channel_overrides"`
  878. }
  879. // A UserGuildSettingsEdit stores data for editing UserGuildSettings
  880. type UserGuildSettingsEdit struct {
  881. SupressEveryone bool `json:"suppress_everyone"`
  882. Muted bool `json:"muted"`
  883. MobilePush bool `json:"mobile_push"`
  884. MessageNotifications int `json:"message_notifications"`
  885. ChannelOverrides map[string]*UserGuildSettingsChannelOverride `json:"channel_overrides"`
  886. }
  887. // An APIErrorMessage is an api error message returned from discord
  888. type APIErrorMessage struct {
  889. Code int `json:"code"`
  890. Message string `json:"message"`
  891. }
  892. // MessageReaction stores the data for a message reaction.
  893. type MessageReaction struct {
  894. UserID string `json:"user_id"`
  895. MessageID string `json:"message_id"`
  896. Emoji Emoji `json:"emoji"`
  897. ChannelID string `json:"channel_id"`
  898. GuildID string `json:"guild_id,omitempty"`
  899. }
  900. // GatewayBotResponse stores the data for the gateway/bot response
  901. type GatewayBotResponse struct {
  902. URL string `json:"url"`
  903. Shards int `json:"shards"`
  904. SessionStartLimit SessionInformation `json:"session_start_limit"`
  905. }
  906. // SessionInformation provides the information for max concurrency sharding
  907. type SessionInformation struct {
  908. Total int `json:"total,omitempty"`
  909. Remaining int `json:"remaining,omitempty"`
  910. ResetAfter int `json:"reset_after,omitempty"`
  911. MaxConcurrency int `json:"max_concurrency,omitempty"`
  912. }
  913. // GatewayStatusUpdate is sent by the client to indicate a presence or status update
  914. // https://discord.com/developers/docs/topics/gateway#update-status-gateway-status-update-structure
  915. type GatewayStatusUpdate struct {
  916. Since int `json:"since"`
  917. Game Activity `json:"game"`
  918. Status string `json:"status"`
  919. AFK bool `json:"afk"`
  920. }
  921. // Activity defines the Activity sent with GatewayStatusUpdate
  922. // https://discord.com/developers/docs/topics/gateway#activity-object
  923. type Activity struct {
  924. Name string `json:"name"`
  925. Type ActivityType `json:"type"`
  926. URL string `json:"url,omitempty"`
  927. CreatedAt time.Time `json:"created_at"`
  928. ApplicationID string `json:"application_id,omitempty"`
  929. State string `json:"state,omitempty"`
  930. Details string `json:"details,omitempty"`
  931. Timestamps TimeStamps `json:"timestamps,omitempty"`
  932. Emoji Emoji `json:"emoji,omitempty"`
  933. Party Party `json:"party,omitempty"`
  934. Assets Assets `json:"assets,omitempty"`
  935. Secrets Secrets `json:"secrets,omitempty"`
  936. Instance bool `json:"instance,omitempty"`
  937. Flags int `json:"flags,omitempty"`
  938. }
  939. // UnmarshalJSON is a custom unmarshaljson to make CreatedAt a time.Time instead of an int
  940. func (activity *Activity) UnmarshalJSON(b []byte) error {
  941. temp := struct {
  942. Name string `json:"name"`
  943. Type ActivityType `json:"type"`
  944. URL string `json:"url,omitempty"`
  945. CreatedAt int64 `json:"created_at"`
  946. ApplicationID string `json:"application_id,omitempty"`
  947. State string `json:"state,omitempty"`
  948. Details string `json:"details,omitempty"`
  949. Timestamps TimeStamps `json:"timestamps,omitempty"`
  950. Emoji Emoji `json:"emoji,omitempty"`
  951. Party Party `json:"party,omitempty"`
  952. Assets Assets `json:"assets,omitempty"`
  953. Secrets Secrets `json:"secrets,omitempty"`
  954. Instance bool `json:"instance,omitempty"`
  955. Flags int `json:"flags,omitempty"`
  956. }{}
  957. err := json.Unmarshal(b, &temp)
  958. if err != nil {
  959. return err
  960. }
  961. activity.CreatedAt = time.Unix(0, temp.CreatedAt*1000000)
  962. activity.ApplicationID = temp.ApplicationID
  963. activity.Assets = temp.Assets
  964. activity.Details = temp.Details
  965. activity.Emoji = temp.Emoji
  966. activity.Flags = temp.Flags
  967. activity.Instance = temp.Instance
  968. activity.Name = temp.Name
  969. activity.Party = temp.Party
  970. activity.Secrets = temp.Secrets
  971. activity.State = temp.State
  972. activity.Timestamps = temp.Timestamps
  973. activity.Type = temp.Type
  974. activity.URL = temp.URL
  975. return nil
  976. }
  977. // Party defines the Party field in the Activity struct
  978. // https://discord.com/developers/docs/topics/gateway#activity-object
  979. type Party struct {
  980. ID string `json:"id,omitempty"`
  981. Size []int `json:"size,omitempty"`
  982. }
  983. // Secrets defines the Secrets field for the Activity struct
  984. // https://discord.com/developers/docs/topics/gateway#activity-object
  985. type Secrets struct {
  986. Join string `json:"join,omitempty"`
  987. Spectate string `json:"spectate,omitempty"`
  988. Match string `json:"match,omitempty"`
  989. }
  990. // ActivityType is the type of Activity (see ActivityType* consts) in the Activity struct
  991. // https://discord.com/developers/docs/topics/gateway#activity-object-activity-types
  992. type ActivityType int
  993. // Valid ActivityType values
  994. const (
  995. ActivityTypeGame ActivityType = 0
  996. ActivityTypeStreaming ActivityType = 1
  997. ActivityTypeListening ActivityType = 2
  998. ActivityTypeWatching ActivityType = 3
  999. ActivityTypeCustom ActivityType = 4
  1000. ActivityTypeCompeting ActivityType = 5
  1001. )
  1002. // Identify is sent during initial handshake with the discord gateway.
  1003. // https://discord.com/developers/docs/topics/gateway#identify
  1004. type Identify struct {
  1005. Token string `json:"token"`
  1006. Properties IdentifyProperties `json:"properties"`
  1007. Compress bool `json:"compress"`
  1008. LargeThreshold int `json:"large_threshold"`
  1009. Shard *[2]int `json:"shard,omitempty"`
  1010. Presence GatewayStatusUpdate `json:"presence,omitempty"`
  1011. GuildSubscriptions bool `json:"guild_subscriptions"`
  1012. Intents Intent `json:"intents"`
  1013. }
  1014. // IdentifyProperties contains the "properties" portion of an Identify packet
  1015. // https://discord.com/developers/docs/topics/gateway#identify-identify-connection-properties
  1016. type IdentifyProperties struct {
  1017. OS string `json:"$os"`
  1018. Browser string `json:"$browser"`
  1019. Device string `json:"$device"`
  1020. Referer string `json:"$referer"`
  1021. ReferringDomain string `json:"$referring_domain"`
  1022. }
  1023. // Constants for the different bit offsets of text channel permissions
  1024. const (
  1025. // Deprecated: PermissionReadMessages has been replaced with PermissionViewChannel for text and voice channels
  1026. PermissionReadMessages = 0x0000000000000400
  1027. PermissionSendMessages = 0x0000000000000800
  1028. PermissionSendTTSMessages = 0x0000000000001000
  1029. PermissionManageMessages = 0x0000000000002000
  1030. PermissionEmbedLinks = 0x0000000000004000
  1031. PermissionAttachFiles = 0x0000000000008000
  1032. PermissionReadMessageHistory = 0x0000000000010000
  1033. PermissionMentionEveryone = 0x0000000000020000
  1034. PermissionUseExternalEmojis = 0x0000000000040000
  1035. PermissionUseSlashCommands = 0x0000000080000000
  1036. )
  1037. // Constants for the different bit offsets of voice permissions
  1038. const (
  1039. PermissionVoicePrioritySpeaker = 0x0000000000000100
  1040. PermissionVoiceStreamVideo = 0x0000000000000200
  1041. PermissionVoiceConnect = 0x0000000000100000
  1042. PermissionVoiceSpeak = 0x0000000000200000
  1043. PermissionVoiceMuteMembers = 0x0000000000400000
  1044. PermissionVoiceDeafenMembers = 0x0000000000800000
  1045. PermissionVoiceMoveMembers = 0x0000000001000000
  1046. PermissionVoiceUseVAD = 0x0000000002000000
  1047. PermissionVoiceRequestToSpeak = 0x0000000100000000
  1048. )
  1049. // Constants for general management.
  1050. const (
  1051. PermissionChangeNickname = 0x0000000004000000
  1052. PermissionManageNicknames = 0x0000000008000000
  1053. PermissionManageRoles = 0x0000000010000000
  1054. PermissionManageWebhooks = 0x0000000020000000
  1055. PermissionManageEmojis = 0x0000000040000000
  1056. )
  1057. // Constants for the different bit offsets of general permissions
  1058. const (
  1059. PermissionCreateInstantInvite = 0x0000000000000001
  1060. PermissionKickMembers = 0x0000000000000002
  1061. PermissionBanMembers = 0x0000000000000004
  1062. PermissionAdministrator = 0x0000000000000008
  1063. PermissionManageChannels = 0x0000000000000010
  1064. PermissionManageServer = 0x0000000000000020
  1065. PermissionAddReactions = 0x0000000000000040
  1066. PermissionViewAuditLogs = 0x0000000000000080
  1067. PermissionViewChannel = 0x0000000000000400
  1068. PermissionViewGuildInsights = 0x0000000000080000
  1069. PermissionModerateMembers = 0x0000010000000000
  1070. PermissionAllText = PermissionViewChannel |
  1071. PermissionSendMessages |
  1072. PermissionSendTTSMessages |
  1073. PermissionManageMessages |
  1074. PermissionEmbedLinks |
  1075. PermissionAttachFiles |
  1076. PermissionReadMessageHistory |
  1077. PermissionMentionEveryone
  1078. PermissionAllVoice = PermissionViewChannel |
  1079. PermissionVoiceConnect |
  1080. PermissionVoiceSpeak |
  1081. PermissionVoiceMuteMembers |
  1082. PermissionVoiceDeafenMembers |
  1083. PermissionVoiceMoveMembers |
  1084. PermissionVoiceUseVAD |
  1085. PermissionVoicePrioritySpeaker
  1086. PermissionAllChannel = PermissionAllText |
  1087. PermissionAllVoice |
  1088. PermissionCreateInstantInvite |
  1089. PermissionManageRoles |
  1090. PermissionManageChannels |
  1091. PermissionAddReactions |
  1092. PermissionViewAuditLogs
  1093. PermissionAll = PermissionAllChannel |
  1094. PermissionKickMembers |
  1095. PermissionBanMembers |
  1096. PermissionManageServer |
  1097. PermissionAdministrator |
  1098. PermissionManageWebhooks |
  1099. PermissionManageEmojis
  1100. )
  1101. // Block contains Discord JSON Error Response codes
  1102. const (
  1103. ErrCodeUnknownAccount = 10001
  1104. ErrCodeUnknownApplication = 10002
  1105. ErrCodeUnknownChannel = 10003
  1106. ErrCodeUnknownGuild = 10004
  1107. ErrCodeUnknownIntegration = 10005
  1108. ErrCodeUnknownInvite = 10006
  1109. ErrCodeUnknownMember = 10007
  1110. ErrCodeUnknownMessage = 10008
  1111. ErrCodeUnknownOverwrite = 10009
  1112. ErrCodeUnknownProvider = 10010
  1113. ErrCodeUnknownRole = 10011
  1114. ErrCodeUnknownToken = 10012
  1115. ErrCodeUnknownUser = 10013
  1116. ErrCodeUnknownEmoji = 10014
  1117. ErrCodeUnknownWebhook = 10015
  1118. ErrCodeUnknownBan = 10026
  1119. ErrCodeBotsCannotUseEndpoint = 20001
  1120. ErrCodeOnlyBotsCanUseEndpoint = 20002
  1121. ErrCodeMaximumGuildsReached = 30001
  1122. ErrCodeMaximumFriendsReached = 30002
  1123. ErrCodeMaximumPinsReached = 30003
  1124. ErrCodeMaximumGuildRolesReached = 30005
  1125. ErrCodeTooManyReactions = 30010
  1126. ErrCodeUnauthorized = 40001
  1127. ErrCodeMissingAccess = 50001
  1128. ErrCodeInvalidAccountType = 50002
  1129. ErrCodeCannotExecuteActionOnDMChannel = 50003
  1130. ErrCodeEmbedDisabled = 50004
  1131. ErrCodeCannotEditFromAnotherUser = 50005
  1132. ErrCodeCannotSendEmptyMessage = 50006
  1133. ErrCodeCannotSendMessagesToThisUser = 50007
  1134. ErrCodeCannotSendMessagesInVoiceChannel = 50008
  1135. ErrCodeChannelVerificationLevelTooHigh = 50009
  1136. ErrCodeOAuth2ApplicationDoesNotHaveBot = 50010
  1137. ErrCodeOAuth2ApplicationLimitReached = 50011
  1138. ErrCodeInvalidOAuthState = 50012
  1139. ErrCodeMissingPermissions = 50013
  1140. ErrCodeInvalidAuthenticationToken = 50014
  1141. ErrCodeNoteTooLong = 50015
  1142. ErrCodeTooFewOrTooManyMessagesToDelete = 50016
  1143. ErrCodeCanOnlyPinMessageToOriginatingChannel = 50019
  1144. ErrCodeCannotExecuteActionOnSystemMessage = 50021
  1145. ErrCodeMessageProvidedTooOldForBulkDelete = 50034
  1146. ErrCodeInvalidFormBody = 50035
  1147. ErrCodeInviteAcceptedToGuildApplicationsBotNotIn = 50036
  1148. ErrCodeReactionBlocked = 90001
  1149. )
  1150. // Intent is the type of a Gateway Intent
  1151. // https://discord.com/developers/docs/topics/gateway#gateway-intents
  1152. type Intent int
  1153. // Constants for the different bit offsets of intents
  1154. const (
  1155. IntentsGuilds Intent = 1 << 0
  1156. IntentsGuildMembers Intent = 1 << 1
  1157. IntentsGuildBans Intent = 1 << 2
  1158. IntentsGuildEmojis Intent = 1 << 3
  1159. IntentsGuildIntegrations Intent = 1 << 4
  1160. IntentsGuildWebhooks Intent = 1 << 5
  1161. IntentsGuildInvites Intent = 1 << 6
  1162. IntentsGuildVoiceStates Intent = 1 << 7
  1163. IntentsGuildPresences Intent = 1 << 8
  1164. IntentsGuildMessages Intent = 1 << 9
  1165. IntentsGuildMessageReactions Intent = 1 << 10
  1166. IntentsGuildMessageTyping Intent = 1 << 11
  1167. IntentsDirectMessages Intent = 1 << 12
  1168. IntentsDirectMessageReactions Intent = 1 << 13
  1169. IntentsDirectMessageTyping Intent = 1 << 14
  1170. IntentsAllWithoutPrivileged = IntentsGuilds |
  1171. IntentsGuildBans |
  1172. IntentsGuildEmojis |
  1173. IntentsGuildIntegrations |
  1174. IntentsGuildWebhooks |
  1175. IntentsGuildInvites |
  1176. IntentsGuildVoiceStates |
  1177. IntentsGuildMessages |
  1178. IntentsGuildMessageReactions |
  1179. IntentsGuildMessageTyping |
  1180. IntentsDirectMessages |
  1181. IntentsDirectMessageReactions |
  1182. IntentsDirectMessageTyping
  1183. IntentsAll = IntentsAllWithoutPrivileged |
  1184. IntentsGuildMembers |
  1185. IntentsGuildPresences
  1186. IntentsNone Intent = 0
  1187. )
  1188. // MakeIntent used to help convert a gateway intent value for use in the Identify structure;
  1189. // this was useful to help support the use of a pointer type when intents were optional.
  1190. // This is now a no-op, and is not necessary to use.
  1191. func MakeIntent(intents Intent) Intent {
  1192. return intents
  1193. }