1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-01 04:24:19 +00:00

discord: add URL method to Channel

This commit is contained in:
Samuel Hernandez 2024-07-13 15:36:33 -04:00 committed by Diamond
parent 5d7b2e3fd0
commit 0ec9fe5ace

View file

@ -1,6 +1,7 @@
package discord
import (
"fmt"
"strconv"
"strings"
"time"
@ -161,6 +162,20 @@ func (ch Channel) Mention() string {
return ch.ID.Mention()
}
// URL generates a Discord client URL to the channel. If the channel doesn't
// have a GuildID, it will generate a URL with the guild "@me".
func (c Channel) URL() string {
var guildID = "@me"
if c.GuildID.IsValid() {
guildID = c.GuildID.String()
}
return fmt.Sprintf(
"https://discord.com/channels/%s/%s",
guildID, c.ID.String(),
)
}
// IconURL returns the URL to the channel icon in the PNG format.
// An empty string is returned if there's no icon.
func (ch Channel) IconURL() string {