2020-12-21 00:32:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-03-06 00:42:40 +00:00
|
|
|
"strconv"
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
"github.com/Luzifer/twitch-bot/plugins"
|
2020-12-21 00:32:39 +00:00
|
|
|
"github.com/go-irc/irc"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2021-08-19 13:33:56 +00:00
|
|
|
registerAction(func() plugins.Actor { return &ActorCounter{} })
|
2021-06-11 11:52:42 +00:00
|
|
|
}
|
2020-12-21 00:32:39 +00:00
|
|
|
|
2021-06-11 11:52:42 +00:00
|
|
|
type ActorCounter struct {
|
|
|
|
CounterSet *string `json:"counter_set" yaml:"counter_set"`
|
|
|
|
CounterStep *int64 `json:"counter_step" yaml:"counter_step"`
|
|
|
|
Counter *string `json:"counter" yaml:"counter"`
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (a ActorCounter) Execute(c *irc.Client, m *irc.Message, r *plugins.Rule) (preventCooldown bool, err error) {
|
2021-06-11 11:52:42 +00:00
|
|
|
if a.Counter == nil {
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, nil
|
2021-06-11 11:52:42 +00:00
|
|
|
}
|
2020-12-25 23:31:49 +00:00
|
|
|
|
2021-06-11 11:52:42 +00:00
|
|
|
counterName, err := formatMessage(*a.Counter, m, r, nil)
|
|
|
|
if err != nil {
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(err, "preparing response")
|
2021-06-11 11:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if a.CounterSet != nil {
|
|
|
|
parseValue, err := formatMessage(*a.CounterSet, m, r, nil)
|
|
|
|
if err != nil {
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(err, "execute counter value template")
|
2021-03-06 00:35:20 +00:00
|
|
|
}
|
|
|
|
|
2021-06-28 22:05:11 +00:00
|
|
|
counterValue, err := strconv.ParseInt(parseValue, 10, 64) //nolint:gomnd // Those numbers are static enough
|
2021-06-11 11:52:42 +00:00
|
|
|
if err != nil {
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(err, "parse counter value")
|
2020-12-21 00:32:39 +00:00
|
|
|
}
|
|
|
|
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(
|
2021-06-11 11:52:42 +00:00
|
|
|
store.UpdateCounter(counterName, counterValue, true),
|
|
|
|
"set counter",
|
2020-12-21 00:32:39 +00:00
|
|
|
)
|
2021-06-11 11:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var counterStep int64 = 1
|
|
|
|
if a.CounterStep != nil {
|
|
|
|
counterStep = *a.CounterStep
|
|
|
|
}
|
|
|
|
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(
|
2021-06-11 11:52:42 +00:00
|
|
|
store.UpdateCounter(counterName, counterStep, false),
|
|
|
|
"update counter",
|
|
|
|
)
|
2020-12-21 00:32:39 +00:00
|
|
|
}
|
2021-06-11 11:52:42 +00:00
|
|
|
|
|
|
|
func (a ActorCounter) IsAsync() bool { return false }
|
|
|
|
func (a ActorCounter) Name() string { return "counter" }
|