2021-03-27 17:25:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha256"
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Luzifer/go_helpers/v2/str"
|
|
|
|
"github.com/go-irc/irc"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type rule struct {
|
2021-05-24 23:01:46 +00:00
|
|
|
Actions []*ruleAction `yaml:"actions"`
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
Cooldown *time.Duration `yaml:"cooldown"`
|
|
|
|
SkipCooldownFor []string `yaml:"skip_cooldown_for"`
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
MatchChannels []string `yaml:"match_channels"`
|
|
|
|
MatchEvent *string `yaml:"match_event"`
|
|
|
|
MatchMessage *string `yaml:"match_message"`
|
|
|
|
MatchUsers []string `yaml:"match_users" `
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
DisableOnMatchMessages []string `yaml:"disable_on_match_messages"`
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-05-24 23:23:23 +00:00
|
|
|
Disable *bool `yaml:"disable"`
|
|
|
|
DisableOnOffline *bool `yaml:"disable_on_offline"`
|
|
|
|
DisableOnPermit *bool `yaml:"disable_on_permit"`
|
|
|
|
DisableOnTemplate *string `yaml:"disable_on_template"`
|
|
|
|
DisableOn []string `yaml:"disable_on"`
|
|
|
|
EnableOn []string `yaml:"enable_on"`
|
2021-03-27 17:25:23 +00:00
|
|
|
|
|
|
|
matchMessage *regexp.Regexp
|
|
|
|
disableOnMatchMessages []*regexp.Regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r rule) MatcherID() string {
|
|
|
|
out := sha256.New()
|
|
|
|
|
|
|
|
for _, e := range []*string{
|
|
|
|
ptrStr(strings.Join(r.MatchChannels, "|")),
|
|
|
|
r.MatchEvent,
|
|
|
|
r.MatchMessage,
|
|
|
|
} {
|
|
|
|
if e != nil {
|
|
|
|
fmt.Fprintf(out, *e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("sha256:%x", out.Sum(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) Matches(m *irc.Message, event *string) bool {
|
|
|
|
var (
|
|
|
|
badges = ircHandler{}.ParseBadgeLevels(m)
|
|
|
|
logger = log.WithFields(log.Fields{
|
|
|
|
"msg": m,
|
|
|
|
"rule": r,
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
for _, matcher := range []func(*log.Entry, *irc.Message, *string, badgeCollection) bool{
|
2021-05-24 23:23:23 +00:00
|
|
|
r.allowExecuteDisable,
|
2021-04-03 12:11:47 +00:00
|
|
|
r.allowExecuteChannelWhitelist,
|
|
|
|
r.allowExecuteUserWhitelist,
|
|
|
|
r.allowExecuteEventWhitelist,
|
|
|
|
r.allowExecuteMessageMatcherWhitelist,
|
|
|
|
r.allowExecuteMessageMatcherBlacklist,
|
|
|
|
r.allowExecuteBadgeBlacklist,
|
|
|
|
r.allowExecuteBadgeWhitelist,
|
|
|
|
r.allowExecuteDisableOnPermit,
|
|
|
|
r.allowExecuteCooldown,
|
2021-05-24 23:23:23 +00:00
|
|
|
r.allowExecuteDisableOnTemplate,
|
2021-04-03 12:11:47 +00:00
|
|
|
r.allowExecuteDisableOnOffline,
|
|
|
|
} {
|
|
|
|
if !matcher(logger, m, event, badges) {
|
2021-03-27 17:25:23 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
// Nothing objected: Matches!
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteBadgeBlacklist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
for _, b := range r.DisableOn {
|
|
|
|
if badges.Has(b) {
|
|
|
|
logger.Tracef("Non-Match: Disable-Badge %s", b)
|
2021-03-27 17:25:23 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteBadgeWhitelist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if len(r.EnableOn) == 0 {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
for _, b := range r.EnableOn {
|
|
|
|
if badges.Has(b) {
|
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
2021-04-03 12:11:47 +00:00
|
|
|
}
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteChannelWhitelist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if len(r.MatchChannels) == 0 {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
if len(m.Params) == 0 || (!str.StringInSlice(m.Params[0], r.MatchChannels) && !str.StringInSlice(strings.TrimPrefix(m.Params[0], "#"), r.MatchChannels)) {
|
|
|
|
logger.Trace("Non-Match: Channel")
|
|
|
|
return false
|
|
|
|
}
|
2021-03-27 17:25:23 +00:00
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteCooldown(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if r.Cooldown == nil {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
if !timerStore.InCooldown(r.MatcherID(), *r.Cooldown) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, b := range r.SkipCooldownFor {
|
2021-03-27 17:25:23 +00:00
|
|
|
if badges.Has(b) {
|
2021-04-03 12:11:47 +00:00
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-05-24 23:23:23 +00:00
|
|
|
func (r *rule) allowExecuteDisable(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
return r.Disable == nil || !*r.Disable
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
func (r *rule) allowExecuteDisableOnOffline(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
2021-05-24 23:23:23 +00:00
|
|
|
if r.DisableOnOffline == nil || !*r.DisableOnOffline {
|
2021-04-03 12:11:47 +00:00
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
streamLive, err := twitch.HasLiveStream(strings.TrimLeft(m.Params[0], "#"))
|
|
|
|
if err != nil {
|
|
|
|
logger.WithError(err).Error("Unable to determine live status")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !streamLive {
|
|
|
|
logger.Trace("Non-Match: Stream offline")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteDisableOnPermit(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
2021-05-24 23:23:23 +00:00
|
|
|
if r.DisableOnPermit == nil || (*r.DisableOnPermit && timerStore.HasPermit(m.Params[0], m.User)) {
|
2021-03-27 17:25:23 +00:00
|
|
|
logger.Trace("Non-Match: Permit")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-05-24 23:23:23 +00:00
|
|
|
func (r *rule) allowExecuteDisableOnTemplate(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if r.DisableOnTemplate == nil {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := formatMessage(*r.DisableOnTemplate, m, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
logger.WithError(err).Error("Unable to check DisableOnTemplate field")
|
|
|
|
// Caused an error, forbid execution
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return res != "true"
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
func (r *rule) allowExecuteEventWhitelist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if r.MatchEvent == nil {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if event == nil || *r.MatchEvent != *event {
|
|
|
|
logger.Trace("Non-Match: Event")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteMessageMatcherBlacklist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if len(r.DisableOnMatchMessages) == 0 {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the regexps were not pre-compiled, do it now
|
|
|
|
if len(r.disableOnMatchMessages) != len(r.DisableOnMatchMessages) {
|
|
|
|
r.disableOnMatchMessages = nil
|
|
|
|
for _, dm := range r.DisableOnMatchMessages {
|
|
|
|
dmr, err := regexp.Compile(dm)
|
|
|
|
if err != nil {
|
|
|
|
logger.WithError(err).Error("Unable to compile expression")
|
|
|
|
return false
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
2021-04-03 12:11:47 +00:00
|
|
|
r.disableOnMatchMessages = append(r.disableOnMatchMessages, dmr)
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
for _, rex := range r.disableOnMatchMessages {
|
|
|
|
if rex.MatchString(m.Trailing()) {
|
|
|
|
logger.Trace("Non-Match: Disable-On-Message")
|
2021-03-27 17:25:23 +00:00
|
|
|
return false
|
|
|
|
}
|
2021-04-03 12:11:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteMessageMatcherWhitelist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if r.MatchMessage == nil {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// If the regexp was not yet compiled, cache it
|
|
|
|
if r.matchMessage == nil {
|
|
|
|
if r.matchMessage, err = regexp.Compile(*r.MatchMessage); err != nil {
|
|
|
|
logger.WithError(err).Error("Unable to compile expression")
|
2021-03-27 17:25:23 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:11:47 +00:00
|
|
|
// Check whether the message matches
|
|
|
|
if !r.matchMessage.MatchString(m.Trailing()) {
|
|
|
|
logger.Trace("Non-Match: Message")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rule) allowExecuteUserWhitelist(logger *log.Entry, m *irc.Message, event *string, badges badgeCollection) bool {
|
|
|
|
if len(r.MatchUsers) == 0 {
|
|
|
|
// No match criteria set, does not speak against matching
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if !str.StringInSlice(strings.ToLower(m.User), r.MatchUsers) {
|
|
|
|
logger.Trace("Non-Match: Users")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-03-27 17:25:23 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
type ruleAction struct {
|
2021-05-24 23:01:46 +00:00
|
|
|
Ban *string `json:"ban" yaml:"ban"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
Command []string `json:"command" yaml:"command"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
CounterSet *string `json:"counter_set" yaml:"counter_set"`
|
|
|
|
CounterStep *int64 `json:"counter_step" yaml:"counter_step"`
|
|
|
|
Counter *string `json:"counter" yaml:"counter"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
Delay time.Duration `json:"delay" yaml:"delay"`
|
|
|
|
DelayJitter time.Duration `json:"delay_jitter" yaml:"delay_jitter"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
DeleteMessage *bool `json:"delete_message" yaml:"delete_message"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
Respond *string `json:"respond" yaml:"respond"`
|
|
|
|
RespondFallback *string `json:"respond_fallback" yaml:"respond_fallback"`
|
2021-05-12 16:26:17 +00:00
|
|
|
|
2021-05-24 23:01:46 +00:00
|
|
|
Timeout *time.Duration `json:"timeout" yaml:"timeout"`
|
2021-03-27 17:25:23 +00:00
|
|
|
}
|