1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/modules/twitch/bot.go

124 lines
3 KiB
Go
Raw Normal View History

package twitch
import (
"strings"
2021-06-05 23:18:31 +00:00
"sync"
"time"
irc "github.com/gempir/go-twitch-irc/v2"
"github.com/sirupsen/logrus"
"github.com/strimertul/strimertul/modules/loyalty"
)
type Bot struct {
Client *irc.Client
api *Client
username string
config BotConfig
logger logrus.FieldLogger
lastMessage time.Time
activeUsers map[string]bool
banlist map[string]bool
chatHistory []irc.PrivateMessage
2021-06-05 23:18:31 +00:00
mu sync.Mutex
// Module specific vars
Loyalty *loyalty.Manager
}
func NewBot(api *Client, config BotConfig) *Bot {
// Create client
client := irc.NewClient(config.Username, config.Token)
bot := &Bot{
Client: client,
username: strings.ToLower(config.Username), // Normalize username
config: config,
logger: api.logger,
api: api,
lastMessage: time.Now(),
activeUsers: make(map[string]bool),
banlist: make(map[string]bool),
2021-06-05 23:18:31 +00:00
mu: sync.Mutex{},
}
client.OnPrivateMessage(func(message irc.PrivateMessage) {
// Ignore messages for a while or twitch will get mad!
if message.Time.Before(bot.lastMessage.Add(time.Second * 2)) {
bot.logger.Debug("message received too soon, ignoring")
return
}
2021-06-05 23:18:31 +00:00
bot.mu.Lock()
bot.activeUsers[message.User.Name] = true
2021-06-05 23:18:31 +00:00
bot.mu.Unlock()
// Check if it's a command
if strings.HasPrefix(message.Message, "!") {
// Run through supported commands
for cmd, data := range commands {
if !data.Enabled {
continue
}
if strings.HasPrefix(message.Message, cmd) {
2021-06-05 23:18:31 +00:00
go data.Handler(bot, message)
bot.lastMessage = time.Now()
}
}
}
// Run through custom commands
for cmd, data := range customCommands {
if !data.Enabled {
continue
}
if strings.HasPrefix(message.Message, cmd) {
go cmdCustom(bot, data, message)
bot.lastMessage = time.Now()
}
}
if bot.config.EnableChatKeys {
2021-09-16 15:11:49 +00:00
bot.api.db.PutJSON(ChatEventKey, message)
if bot.config.ChatHistory > 0 {
if len(bot.chatHistory) >= bot.config.ChatHistory {
bot.chatHistory = bot.chatHistory[len(bot.chatHistory)-bot.config.ChatHistory+1:]
}
bot.chatHistory = append(bot.chatHistory, message)
2021-09-16 15:11:49 +00:00
bot.api.db.PutJSON(ChatHistoryKey, bot.chatHistory)
}
}
})
client.OnUserJoinMessage(func(message irc.UserJoinMessage) {
if strings.ToLower(message.User) == bot.username {
bot.logger.WithField("channel", message.Channel).Info("joined channel")
} else {
bot.logger.WithFields(logrus.Fields{
"username": message.User,
"channel": message.Channel,
}).Debug("user joined channel")
}
})
2021-06-05 23:18:31 +00:00
client.OnUserPartMessage(func(message irc.UserPartMessage) {
if strings.ToLower(message.User) == bot.username {
bot.logger.WithField("channel", message.Channel).Info("left channel")
} else {
bot.logger.WithFields(logrus.Fields{
"username": message.User,
"channel": message.Channel,
}).Debug("user left channel")
}
})
bot.Client.Join(config.Channel)
return bot
}
func (b *Bot) Connect() error {
return b.Client.Connect()
}