catbase/plugins/reaction/reaction.go

82 lines
1.9 KiB
Go
Raw Normal View History

// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package reaction
import (
"math/rand"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
2017-08-30 17:41:58 +00:00
"github.com/velour/catbase/config"
)
type ReactionPlugin struct {
2018-05-02 11:02:04 +00:00
Bot bot.Bot
2017-08-30 17:41:58 +00:00
Config *config.Config
}
func New(bot bot.Bot) *ReactionPlugin {
return &ReactionPlugin{
2018-05-02 11:02:04 +00:00
Bot: bot,
2017-08-30 17:41:58 +00:00
Config: bot.Config(),
}
}
func (p *ReactionPlugin) Message(message msg.Message) bool {
harrass := false
for _, nick := range p.Config.GetArray("Reaction.HarrassList") {
2017-08-30 17:41:58 +00:00
if message.User.Name == nick {
harrass = true
2017-08-30 17:41:58 +00:00
break
}
}
2017-08-30 17:41:58 +00:00
chance := p.Config.GetFloat64("Reaction.GeneralChance")
negativeWeight := 1
if harrass {
chance = p.Config.GetFloat64("Reaction.HarrassChance")
negativeWeight = p.Config.GetInt("Reaction.NegativeHarrassmentMultiplier")
}
if rand.Float64() < chance {
numPositiveReactions := len(p.Config.GetArray("Reaction.PositiveReactions"))
numNegativeReactions := len(p.Config.GetArray("Reaction.NegativeReactions"))
2018-05-02 11:02:04 +00:00
maxIndex := numPositiveReactions + numNegativeReactions*negativeWeight
index := rand.Intn(maxIndex)
reaction := ""
if index < numPositiveReactions {
reaction = p.Config.GetArray("Reaction.PositiveReactions")[index]
} else {
index -= numPositiveReactions
index %= numNegativeReactions
reaction = p.Config.GetArray("Reaction.NegativeReactions")[index]
2017-08-30 17:41:58 +00:00
}
p.Bot.React(message.Channel, reaction, message)
2017-08-30 17:41:58 +00:00
}
return false
}
func (p *ReactionPlugin) Help(channel string, parts []string) {
}
func (p *ReactionPlugin) Event(kind string, message msg.Message) bool {
return false
}
func (p *ReactionPlugin) BotMessage(message msg.Message) bool {
return false
}
func (p *ReactionPlugin) RegisterWeb() *string {
return nil
}
func (p *ReactionPlugin) ReplyMessage(message msg.Message, identifier string) bool { return false }