Compare commits

...

2 Commits

Author SHA1 Message Date
Cynthia Foxwell ca09e35027 the most over-engineered support for listing categories
this is the new current worst code ive written for this so far
2023-07-14 22:20:36 -06:00
Cynthia Foxwell 27ffa6ef14 make webhook messages magenta 2023-07-14 21:15:40 -06:00
2 changed files with 108 additions and 17 deletions

View File

@ -3,6 +3,7 @@ package commands
import ( import (
"fmt" "fmt"
"math" "math"
"regexp"
"sort" "sort"
"strings" "strings"
"unicode/utf8" "unicode/utf8"
@ -12,6 +13,8 @@ import (
"github.com/bwmarrin/discordgo" "github.com/bwmarrin/discordgo"
) )
var REGEX_EMOTE = regexp.MustCompile(`<(?:\x{200b}|&)?a?:(\w+):(\d+)>`)
type GuildListing struct { type GuildListing struct {
Name string Name string
Members int Members int
@ -55,13 +58,78 @@ func ListGuildsCommand(session *discordgo.Session) {
fmt.Print("\n\r") fmt.Print("\n\r")
} }
func GetSortedChannels(session *discordgo.Session, guildId string) []*discordgo.Channel { func GetSortedChannels(session *discordgo.Session, guildId string, withCategories bool) []*discordgo.Channel {
channels := make([]*discordgo.Channel, 0) channels := make([]*discordgo.Channel, 0)
guild, err := session.State.Guild(guildId) guild, err := session.State.Guild(guildId)
if err != nil { if err != nil {
return channels return channels
} }
if withCategories {
categories := make(map[string][]*discordgo.Channel)
for _, channel := range guild.Channels {
categoryID := "0"
if channel.ParentID != "" {
categoryID = channel.ParentID
}
_, has := categories[categoryID]
if !has {
categories[categoryID] = make([]*discordgo.Channel, 0)
}
if channel.Type != discordgo.ChannelTypeGuildText && channel.Type != discordgo.ChannelTypeGuildNews {
continue
}
categories[categoryID] = append(categories[categoryID], channel)
}
for id, channels := range categories {
sort.Slice(channels, func(i, j int) bool {
return channels[i].Position < channels[j].Position
})
categoryChannels := make([]*discordgo.Channel, 0)
if id != "0" {
for _, channel := range guild.Channels {
if channel.ID == id {
categoryChannels = append(categoryChannels, channel)
break
}
}
}
for _, channel := range channels {
categoryChannels = append(categoryChannels, channel)
}
categories[id] = categoryChannels
}
keys := make([]string, 0, len(categories) - 1)
for id := range categories {
if id == "0" {
continue
}
keys = append(keys, id)
}
sort.Slice(keys, func(i, j int) bool {
ca, _ := session.State.Channel(keys[i])
cb, _ := session.State.Channel(keys[j])
return ca.Position < cb.Position
})
sortedCategories := make(map[string][]*discordgo.Channel)
sortedCategories["0"] = categories["0"]
for _, id := range keys {
sortedCategories[id] = categories[id]
}
for _, categoryChannels := range sortedCategories {
for _, channel := range categoryChannels {
channels = append(channels, channel)
}
}
} else {
for _, channel := range guild.Channels { for _, channel := range guild.Channels {
if channel.Type != discordgo.ChannelTypeGuildText && channel.Type != discordgo.ChannelTypeGuildNews { if channel.Type != discordgo.ChannelTypeGuildText && channel.Type != discordgo.ChannelTypeGuildNews {
continue continue
@ -72,6 +140,7 @@ func GetSortedChannels(session *discordgo.Session, guildId string) []*discordgo.
sort.Slice(channels, func(i, j int) bool { sort.Slice(channels, func(i, j int) bool {
return channels[i].Position < channels[j].Position return channels[i].Position < channels[j].Position
}) })
}
return channels return channels
} }
@ -84,7 +153,7 @@ func ListChannelsCommand(session *discordgo.Session) {
} }
longest := 0 longest := 0
channels := GetSortedChannels(session, currentGuild) channels := GetSortedChannels(session, currentGuild, true)
for _, channel := range channels { for _, channel := range channels {
perms, err := session.State.UserChannelPermissions(session.State.User.ID, channel.ID) perms, err := session.State.UserChannelPermissions(session.State.User.ID, channel.ID)
@ -93,12 +162,18 @@ func ListChannelsCommand(session *discordgo.Session) {
} }
private := perms & discordgo.PermissionViewChannel == 0 private := perms & discordgo.PermissionViewChannel == 0
category := channel.Type == discordgo.ChannelTypeGuildCategory
catLen := 0
if category {
catLen = 6
}
privLen := 0 privLen := 0
if private { if private {
privLen = 1 privLen = 1
} }
length := utf8.RuneCountInString(channel.Name) + privLen length := utf8.RuneCountInString(channel.Name) + privLen + catLen
if length > longest { if length > longest {
longest = int(math.Min(25, float64(length))) longest = int(math.Min(25, float64(length)))
@ -106,7 +181,7 @@ func ListChannelsCommand(session *discordgo.Session) {
} }
fmt.Print("\n\r") fmt.Print("\n\r")
fmt.Printf(" %*s topic\n\r", longest, "channel-name") fmt.Printf(" %*s created topic\n\r", longest, "channel-name")
fmt.Print(strings.Repeat("-", 80) + "\n\r") fmt.Print(strings.Repeat("-", 80) + "\n\r")
for _, channel := range channels { for _, channel := range channels {
perms, err := session.State.UserChannelPermissions(session.State.User.ID, channel.ID) perms, err := session.State.UserChannelPermissions(session.State.User.ID, channel.ID)
@ -115,8 +190,13 @@ func ListChannelsCommand(session *discordgo.Session) {
} }
private := perms & discordgo.PermissionViewChannel == 0 private := perms & discordgo.PermissionViewChannel == 0
topic := strings.ReplaceAll(channel.Topic, "\n", " ") category := channel.Type == discordgo.ChannelTypeGuildCategory
topic := REGEX_EMOTE.ReplaceAllString(channel.Topic, ":$1:")
topic = strings.ReplaceAll(topic, "\n", " ")
name := channel.Name name := channel.Name
if category {
name = "-- " + name + " --"
}
if private { if private {
name = "*" + name name = "*" + name
} }
@ -127,12 +207,18 @@ func ListChannelsCommand(session *discordgo.Session) {
} }
topicLength := utf8.RuneCountInString(topic) topicLength := utf8.RuneCountInString(topic)
longestTopic := 80 - (longest + 5) longestTopic := 80 - (longest + 5) - 11
if topicLength > longestTopic { if topicLength > longestTopic {
topic = topic[:(longestTopic - 1)] + "\u2026" topic = topic[:(longestTopic - 1)] + "\u2026"
} }
fmt.Printf(" %*s %s\n\r", longest, name, topic) created := "??-???-??"
timestamp, err := discordgo.SnowflakeTimestamp(channel.ID)
if err == nil {
created = timestamp.Format("02-Jan-06")
}
fmt.Printf(" %*s %s %s\n\r", longest, name, created, topic)
} }
fmt.Print(strings.Repeat("-", 80) + "\n\r") fmt.Print(strings.Repeat("-", 80) + "\n\r")
fmt.Print("\n\r") fmt.Print("\n\r")
@ -162,7 +248,7 @@ func SwitchGuild(session *discordgo.Session, input string) {
state.SetCurrentGuild(target) state.SetCurrentGuild(target)
last := state.GetLastChannel(target) last := state.GetLastChannel(target)
if last == "" { if last == "" {
channels := GetSortedChannels(session, target) channels := GetSortedChannels(session, target, false)
topChannel := channels[0] topChannel := channels[0]
state.SetCurrentChannel(topChannel.ID) state.SetCurrentChannel(topChannel.ID)

View File

@ -21,6 +21,7 @@ type MessageOptions struct {
Name string Name string
Channel string Channel string
Bot bool Bot bool
Webhook bool
Attachments []*discordgo.MessageAttachment Attachments []*discordgo.MessageAttachment
Stickers []*discordgo.Sticker Stickers []*discordgo.Sticker
Reply *discordgo.Message Reply *discordgo.Message
@ -177,6 +178,8 @@ func FormatMessage(session *discordgo.Session, options MessageOptions) {
nameColor := "cyan+b" nameColor := "cyan+b"
if options.IsMention { if options.IsMention {
nameColor = "red+b" nameColor = "red+b"
} else if options.Webhook {
nameColor = "magenta+b"
} else if options.Bot { } else if options.Bot {
nameColor = "yellow+b" nameColor = "yellow+b"
} }
@ -293,6 +296,7 @@ func ProcessMessage(session *discordgo.Session, msg *discordgo.Message, options
options.Name = msg.Author.Username options.Name = msg.Author.Username
options.Channel = msg.ChannelID options.Channel = msg.ChannelID
options.Bot = msg.Author.Bot options.Bot = msg.Author.Bot
options.Webhook = msg.WebhookID != ""
options.Attachments = msg.Attachments options.Attachments = msg.Attachments
options.Stickers = msg.StickerItems options.Stickers = msg.StickerItems
if i == 0 { if i == 0 {
@ -311,6 +315,7 @@ func ProcessMessage(session *discordgo.Session, msg *discordgo.Message, options
options.Name = msg.Author.Username options.Name = msg.Author.Username
options.Channel = msg.ChannelID options.Channel = msg.ChannelID
options.Bot = msg.Author.Bot options.Bot = msg.Author.Bot
options.Webhook = msg.WebhookID != ""
options.Attachments = msg.Attachments options.Attachments = msg.Attachments
options.Stickers = msg.StickerItems options.Stickers = msg.StickerItems
options.Reply = msg.ReferencedMessage options.Reply = msg.ReferencedMessage