mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
package bot
|
|
|
|
import (
|
|
"github.com/bwmarrin/discordgo"
|
|
"github.com/mgerb/go-discord-bot/server/bothandlers"
|
|
"github.com/mgerb/go-discord-bot/server/config"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// Start the bot
|
|
func Start(token string) *discordgo.Session {
|
|
// initialize connection
|
|
session := connect(token)
|
|
|
|
// add bot handlers
|
|
addHandler(session, bothandlers.SoundsHandler)
|
|
|
|
if config.Config.Logger {
|
|
addHandler(session, bothandlers.LoggerHandler)
|
|
}
|
|
|
|
// start listening for commands
|
|
startListener(session)
|
|
|
|
return session
|
|
}
|
|
|
|
func addHandler(session *discordgo.Session, handler interface{}) {
|
|
session.AddHandler(handler)
|
|
}
|
|
|
|
func connect(token string) *discordgo.Session {
|
|
// Create a new Discord session using the provided bot token.
|
|
session, err := discordgo.New("Bot " + token)
|
|
|
|
if err != nil {
|
|
log.Error(err)
|
|
log.Fatal("Error creating Discord session.", err)
|
|
}
|
|
|
|
// Get the account information.
|
|
_, err = session.User("@me")
|
|
|
|
if err != nil {
|
|
log.Error("Error obtaining account details. Make sure you have the correct bot token.")
|
|
log.Fatal(err)
|
|
}
|
|
|
|
log.Debug("Bot connected")
|
|
|
|
return session
|
|
}
|
|
|
|
func startListener(session *discordgo.Session) {
|
|
// start new non blocking go routine
|
|
go func() {
|
|
// Open the websocket and begin listening.
|
|
err := session.Open()
|
|
if err != nil {
|
|
log.Error("error opening connection,", err)
|
|
return
|
|
}
|
|
|
|
log.Debug("Bot is now running...")
|
|
|
|
// Simple way to keep program running until CTRL-C is pressed.
|
|
<-make(chan struct{})
|
|
return
|
|
}()
|
|
}
|