catbase/plugins/reaction/reaction.go

70 lines
1.3 KiB
Go
Raw Normal View History

// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package reaction
import (
"time"
"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 {
Bot bot.Bot
2017-08-30 17:41:58 +00:00
Config *config.Config
}
func New(bot bot.Bot) *ReactionPlugin {
rand.Seed(time.Now().Unix())
return &ReactionPlugin{
Bot: bot,
2017-08-30 17:41:58 +00:00
Config: bot.Config(),
}
}
func (p *ReactionPlugin) Message(message msg.Message) bool {
2017-08-30 17:41:58 +00:00
outOf := int(1. / p.Config.Reaction.GeneralChance)
for _, reaction := range p.Config.Reaction.PositiveReactions {
if rand.Intn(outOf) == 0 {
p.Bot.React(message.Channel, reaction, message)
return false
}
}
for _, nick := range p.Config.Reaction.HarrassList {
if message.User.Name == nick {
outOf = int(1. / p.Config.Reaction.HarrassChance)
break
}
}
2017-08-30 17:41:58 +00:00
for _, reaction := range p.Config.Reaction.NegativeReactions {
if rand.Intn(outOf) == 0 {
p.Bot.React(message.Channel, reaction, message)
return false
}
}
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
}