2020-01-02 05:39:52 +00:00
|
|
|
package discord
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
2020-01-17 22:29:13 +00:00
|
|
|
"strings"
|
2020-01-02 05:39:52 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-07-29 20:58:39 +00:00
|
|
|
// Epoch is the Discord epoch constant in time.Duration (nanoseconds)
|
2020-05-08 20:52:46 +00:00
|
|
|
// since Unix epoch.
|
2020-07-29 20:58:39 +00:00
|
|
|
const Epoch = 1420070400000 * time.Millisecond
|
2020-05-08 20:52:46 +00:00
|
|
|
|
2020-07-29 20:58:39 +00:00
|
|
|
// DurationSinceEpoch returns the duration from the Discord epoch to current.
|
|
|
|
func DurationSinceEpoch(t time.Time) time.Duration {
|
|
|
|
return time.Duration(t.UnixNano()) - Epoch
|
2020-05-08 20:52:46 +00:00
|
|
|
}
|
2020-01-02 05:39:52 +00:00
|
|
|
|
2021-09-28 20:19:04 +00:00
|
|
|
//go:generate go run ../utils/cmd/gensnowflake -o snowflake_types.go AppID AttachmentID AuditLogEntryID ChannelID CommandID EmojiID GuildID IntegrationID InteractionID MessageID RoleID StageID StickerID StickerPackID TeamID UserID WebhookID
|
2021-10-10 22:44:31 +00:00
|
|
|
|
|
|
|
// Mention generates the mention syntax for this channel ID.
|
|
|
|
func (s ChannelID) Mention() string { return "<#" + s.String() + ">" }
|
|
|
|
|
|
|
|
// Mention generates the mention syntax for this role ID.
|
|
|
|
func (s RoleID) Mention() string { return "<@&" + s.String() + ">" }
|
|
|
|
|
|
|
|
// Mention generates the mention syntax for this user ID.
|
|
|
|
func (s UserID) Mention() string { return "<@" + s.String() + ">" }
|
|
|
|
|
|
|
|
// Snowflake is the format of Discord's ID type. It is a format that can be
|
|
|
|
// sorted chronologically.
|
2020-07-29 20:58:39 +00:00
|
|
|
type Snowflake uint64
|
2020-01-02 05:39:52 +00:00
|
|
|
|
2020-05-08 20:52:46 +00:00
|
|
|
// NullSnowflake gets encoded into a null. This is used for
|
|
|
|
// optional and nullable snowflake fields.
|
2020-07-29 20:58:39 +00:00
|
|
|
const NullSnowflake = ^Snowflake(0)
|
2020-05-08 20:52:46 +00:00
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// NewSnowflake creates a new snowflake from the given time.
|
2020-01-02 05:39:52 +00:00
|
|
|
func NewSnowflake(t time.Time) Snowflake {
|
2020-07-29 20:58:39 +00:00
|
|
|
return Snowflake((DurationSinceEpoch(t) / time.Millisecond) << 22)
|
2020-01-02 05:39:52 +00:00
|
|
|
}
|
|
|
|
|
2021-10-10 22:44:31 +00:00
|
|
|
// ParseSnowflake parses a snowflake.
|
2020-01-22 07:24:15 +00:00
|
|
|
func ParseSnowflake(sf string) (Snowflake, error) {
|
2020-05-14 08:03:48 +00:00
|
|
|
if sf == "null" {
|
|
|
|
return NullSnowflake, nil
|
|
|
|
}
|
|
|
|
|
2020-08-20 04:53:22 +00:00
|
|
|
u, err := strconv.ParseUint(sf, 10, 64)
|
2020-01-22 07:24:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2020-08-20 04:53:22 +00:00
|
|
|
return Snowflake(u), nil
|
2020-01-22 07:24:15 +00:00
|
|
|
}
|
|
|
|
|
2020-01-04 04:19:24 +00:00
|
|
|
func (s *Snowflake) UnmarshalJSON(v []byte) error {
|
2020-05-14 08:03:48 +00:00
|
|
|
p, err := ParseSnowflake(strings.Trim(string(v), `"`))
|
2020-01-04 04:19:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-05-14 08:03:48 +00:00
|
|
|
*s = p
|
2020-01-04 04:19:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 20:52:46 +00:00
|
|
|
func (s Snowflake) MarshalJSON() ([]byte, error) {
|
2020-05-14 08:03:48 +00:00
|
|
|
// This includes 0 and null, because MarshalJSON does not dictate when a
|
|
|
|
// value gets omitted.
|
2020-07-29 20:10:17 +00:00
|
|
|
if !s.IsValid() {
|
2020-01-19 06:06:00 +00:00
|
|
|
return []byte("null"), nil
|
2020-05-08 20:52:46 +00:00
|
|
|
} else {
|
|
|
|
return []byte(`"` + strconv.FormatInt(int64(s), 10) + `"`), nil
|
2020-01-17 22:29:13 +00:00
|
|
|
}
|
2020-01-04 04:19:24 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 07:49:10 +00:00
|
|
|
// String returns the ID, or nothing if the snowflake isn't valid.
|
2020-01-02 05:39:52 +00:00
|
|
|
func (s Snowflake) String() string {
|
2020-05-14 08:03:48 +00:00
|
|
|
// Check if negative.
|
2020-07-29 20:10:17 +00:00
|
|
|
if !s.IsValid() {
|
2020-05-13 21:51:26 +00:00
|
|
|
return ""
|
|
|
|
}
|
2020-01-02 05:39:52 +00:00
|
|
|
return strconv.FormatUint(uint64(s), 10)
|
|
|
|
}
|
|
|
|
|
2020-07-29 20:10:17 +00:00
|
|
|
// IsValid returns whether or not the snowflake is valid.
|
|
|
|
func (s Snowflake) IsValid() bool {
|
2020-07-29 20:58:39 +00:00
|
|
|
return !(int64(s) == 0 || s == NullSnowflake)
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 20:27:59 +00:00
|
|
|
// IsNull returns whether or not the snowflake is null.
|
|
|
|
func (s Snowflake) IsNull() bool {
|
|
|
|
return s == NullSnowflake
|
|
|
|
}
|
|
|
|
|
2020-01-02 05:39:52 +00:00
|
|
|
func (s Snowflake) Time() time.Time {
|
2020-07-29 20:58:39 +00:00
|
|
|
unixnano := time.Duration(s>>22)*time.Millisecond + Epoch
|
2020-05-08 20:52:46 +00:00
|
|
|
return time.Unix(0, int64(unixnano))
|
2020-01-02 05:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s Snowflake) Worker() uint8 {
|
2020-05-08 21:11:56 +00:00
|
|
|
return uint8(s & 0x3E0000 >> 17)
|
2020-01-02 05:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s Snowflake) PID() uint8 {
|
|
|
|
return uint8(s & 0x1F000 >> 12)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Snowflake) Increment() uint16 {
|
|
|
|
return uint16(s & 0xFFF)
|
|
|
|
}
|