Add monitor

This commit is contained in:
Joren 2024-06-18 17:06:13 +02:00
parent 74ddfb5b52
commit 1b9cbd88c4
Signed by: Joren
GPG Key ID: 280E33DFBC0F1B55

44
main.go
View File

@ -1,22 +1,25 @@
package main
package main
import (
import (
"fmt"
"os"
"regexp"
"github.com/BurntSushi/toml"
"github.com/bwmarrin/discordgo"
)
)
var (
var (
Token string
ServerID string
)
OutputChannelID string
)
func init() {
func init() {
var config struct {
Token string `toml:"DISCORD_BOT_TOKEN"`
ServerID string `toml:"DISCORD_SERVER_ID"`
OutputChannelID string `toml:"OUTPUT_CHANNEL_ID"`
}
if _, err := toml.DecodeFile("config.toml", &config); err != nil {
@ -26,6 +29,7 @@ func init() {
Token = config.Token
ServerID = config.ServerID
OutputChannelID = config.OutputChannelID
if Token == "" {
fmt.Println("No token provided in config.toml.")
@ -36,9 +40,14 @@ func init() {
fmt.Println("No server ID provided in config.toml.")
os.Exit(1)
}
}
func main() {
if OutputChannelID == "" {
fmt.Println("No output channel ID in config.toml")
os.Exit(1)
}
}
func main() {
dg, err := discordgo.New("Bot " + Token)
if err != nil {
fmt.Println("Error creating Discord session:", err)
@ -58,13 +67,13 @@ func main() {
fmt.Println("Bot is now running. Press CTRL+C to exit.")
select {}
}
}
func ready(s *discordgo.Session, event *discordgo.Ready) {
func ready(s *discordgo.Session, event *discordgo.Ready) {
s.UpdateGameStatus(0, "Monitoring messages")
}
}
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.Author.ID == s.State.User.ID {
return
}
@ -80,5 +89,14 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
}
fmt.Printf("Message from %s: %s\n", m.Author.Username, m.Content)
}
re := regexp.MustCompile(`\b\w{36,44}\b`)
match := re.FindStringSubmatch(m.Content)
if len(match) > 0 {
matchedWord := match[0]
message := fmt.Sprintf("%s", matchedWord)
s.ChannelMessageSend(OutputChannelID, message)
}
}