bb/command/version.go

49 lines
809 B
Go
Raw Normal View History

2022-08-07 12:13:17 +00:00
package command
import (
"fmt"
"runtime"
2022-08-23 16:52:36 +00:00
"git.kill0.net/chill9/beepboop/bot"
2022-08-07 12:13:17 +00:00
"github.com/bwmarrin/discordgo"
)
const (
SourceURI = "https://git.kill0.net/chill9/bb"
)
type (
VersionHandler struct {
2022-08-23 16:52:36 +00:00
config bot.Config
2022-08-07 12:13:17 +00:00
Name string
}
)
func NewVersionHandler(s string) *VersionHandler {
h := new(VersionHandler)
h.Name = s
return h
}
2022-08-23 16:52:36 +00:00
func (h *VersionHandler) SetConfig(config bot.Config) {
2022-08-07 12:13:17 +00:00
h.config = config
}
func (h *VersionHandler) Handle(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.Author.ID == s.State.User.ID {
return
}
if !HasCommand(m.Content, h.config.Prefix, h.Name) {
return
}
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf(
"go version: %s\nplatform: %s\nos: %s\nsource: %s\n",
runtime.Version(),
runtime.GOARCH,
runtime.GOOS,
SourceURI,
))
}