2024-01-01 16:52:18 +00:00
|
|
|
// Package punish contains an actor to punish behaviour in a channel
|
|
|
|
// with rising punishments
|
2021-10-03 13:35:58 +00:00
|
|
|
package punish
|
|
|
|
|
|
|
|
import (
|
2024-01-01 16:52:18 +00:00
|
|
|
"context"
|
2021-10-03 13:35:58 +00:00
|
|
|
"math"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2023-09-11 17:51:38 +00:00
|
|
|
"gopkg.in/irc.v4"
|
2023-11-25 19:23:34 +00:00
|
|
|
"gorm.io/gorm"
|
2021-11-25 22:48:16 +00:00
|
|
|
|
2022-11-02 21:38:14 +00:00
|
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/database"
|
|
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/twitch"
|
|
|
|
"github.com/Luzifer/twitch-bot/v3/plugins"
|
2021-10-03 13:35:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
actorNamePunish = "punish"
|
|
|
|
actorNameResetPunish = "reset-punish"
|
|
|
|
|
|
|
|
oneWeek = 168 * time.Hour
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-10-25 16:47:30 +00:00
|
|
|
botTwitchClient *twitch.Client
|
2022-09-10 11:39:07 +00:00
|
|
|
db database.Connector
|
2021-10-03 13:35:58 +00:00
|
|
|
formatMessage plugins.MsgFormatter
|
|
|
|
ptrDefaultCooldown = func(v time.Duration) *time.Duration { return &v }(oneWeek)
|
|
|
|
ptrStringEmpty = func(v string) *string { return &v }("")
|
|
|
|
)
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
// Register provides the plugins.RegisterFunc
|
2021-10-03 13:35:58 +00:00
|
|
|
func Register(args plugins.RegistrationArguments) error {
|
2022-09-10 11:39:07 +00:00
|
|
|
db = args.GetDatabaseConnector()
|
2022-10-22 22:08:02 +00:00
|
|
|
if err := db.DB().AutoMigrate(&punishLevel{}); err != nil {
|
2022-09-10 11:39:07 +00:00
|
|
|
return errors.Wrap(err, "applying schema migration")
|
|
|
|
}
|
|
|
|
|
2023-11-25 19:23:34 +00:00
|
|
|
args.RegisterCopyDatabaseFunc("punish", func(src, target *gorm.DB) error {
|
2024-01-01 16:52:18 +00:00
|
|
|
return database.CopyObjects(src, target, &punishLevel{}) //nolint:wrapcheck // internal helper
|
2023-11-25 19:23:34 +00:00
|
|
|
})
|
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
botTwitchClient = args.GetTwitchClient()
|
2021-10-03 13:35:58 +00:00
|
|
|
formatMessage = args.FormatMessage
|
|
|
|
|
|
|
|
args.RegisterActor(actorNamePunish, func() plugins.Actor { return &actorPunish{} })
|
|
|
|
args.RegisterActor(actorNameResetPunish, func() plugins.Actor { return &actorResetPunish{} })
|
|
|
|
|
|
|
|
args.RegisterActorDocumentation(plugins.ActionDocumentation{
|
|
|
|
Description: "Apply increasing punishments to user",
|
|
|
|
Name: "Punish User",
|
|
|
|
Type: actorNamePunish,
|
|
|
|
|
|
|
|
Fields: []plugins.ActionDocumentationField{
|
|
|
|
{
|
|
|
|
Default: "168h",
|
|
|
|
Description: "When to lower the punishment level after the last punishment",
|
|
|
|
Key: "cooldown",
|
|
|
|
Name: "Cooldown",
|
|
|
|
Optional: true,
|
|
|
|
SupportTemplate: false,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeDuration,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "Actions for each punishment level (ban, delete, duration-value i.e. 1m)",
|
|
|
|
Key: "levels",
|
|
|
|
Name: "Levels",
|
|
|
|
Optional: false,
|
|
|
|
SupportTemplate: false,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeStringSlice,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "Reason why the user was banned / timeouted",
|
|
|
|
Key: "reason",
|
|
|
|
Name: "Reason",
|
|
|
|
Optional: true,
|
|
|
|
SupportTemplate: false,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "User to apply the action to",
|
|
|
|
Key: "user",
|
|
|
|
Name: "User",
|
|
|
|
Optional: false,
|
|
|
|
SupportTemplate: true,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "Unique identifier for this punishment to differentiate between punishments in the same channel",
|
|
|
|
Key: "uuid",
|
|
|
|
Name: "UUID",
|
|
|
|
Optional: true,
|
|
|
|
SupportTemplate: false,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
args.RegisterActorDocumentation(plugins.ActionDocumentation{
|
|
|
|
Description: "Reset punishment level for user",
|
|
|
|
Name: "Reset User Punishment",
|
|
|
|
Type: actorNameResetPunish,
|
|
|
|
|
|
|
|
Fields: []plugins.ActionDocumentationField{
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "User to reset the level for",
|
|
|
|
Key: "user",
|
|
|
|
Name: "User",
|
|
|
|
Optional: false,
|
|
|
|
SupportTemplate: true,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Default: "",
|
|
|
|
Description: "Unique identifier for this punishment to differentiate between punishments in the same channel",
|
|
|
|
Key: "uuid",
|
|
|
|
Name: "UUID",
|
|
|
|
Optional: true,
|
|
|
|
SupportTemplate: false,
|
|
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-09-10 11:39:07 +00:00
|
|
|
return nil
|
2021-10-03 13:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type (
|
|
|
|
actorPunish struct{}
|
|
|
|
actorResetPunish struct{}
|
|
|
|
|
|
|
|
levelConfig struct {
|
|
|
|
LastLevel int `json:"last_level"`
|
|
|
|
Executed time.Time `json:"executed"`
|
|
|
|
Cooldown time.Duration `json:"cooldown"`
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Punish
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorPunish) Execute(_ *irc.Client, m *irc.Message, r *plugins.Rule, eventData *plugins.FieldCollection, attrs *plugins.FieldCollection) (preventCooldown bool, err error) {
|
2021-10-03 13:35:58 +00:00
|
|
|
var (
|
|
|
|
cooldown = attrs.MustDuration("cooldown", ptrDefaultCooldown)
|
|
|
|
reason = attrs.MustString("reason", ptrStringEmpty)
|
|
|
|
user = attrs.MustString("user", nil)
|
|
|
|
uuid = attrs.MustString("uuid", ptrStringEmpty)
|
|
|
|
)
|
|
|
|
|
|
|
|
levels, err := attrs.StringSlice("levels")
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "getting level config")
|
|
|
|
}
|
|
|
|
|
|
|
|
if user, err = formatMessage(user, m, r, eventData); err != nil {
|
|
|
|
return false, errors.Wrap(err, "preparing user")
|
|
|
|
}
|
|
|
|
|
2022-10-22 22:08:02 +00:00
|
|
|
lvl, err := getPunishment(db, plugins.DeriveChannel(m, eventData), user, uuid)
|
2022-09-10 11:39:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "getting stored punishment")
|
|
|
|
}
|
2021-10-03 13:35:58 +00:00
|
|
|
nLvl := int(math.Min(float64(len(levels)-1), float64(lvl.LastLevel+1)))
|
|
|
|
|
|
|
|
switch lt := levels[nLvl]; lt {
|
|
|
|
case "ban":
|
2022-10-25 16:47:30 +00:00
|
|
|
if err = botTwitchClient.BanUser(
|
2024-01-01 16:52:18 +00:00
|
|
|
context.Background(),
|
2022-10-25 16:47:30 +00:00
|
|
|
plugins.DeriveChannel(m, eventData),
|
|
|
|
strings.TrimLeft(user, "@"),
|
|
|
|
0,
|
|
|
|
reason,
|
|
|
|
); err != nil {
|
|
|
|
return false, errors.Wrap(err, "executing user ban")
|
2021-10-03 13:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case "delete":
|
2023-09-11 17:51:38 +00:00
|
|
|
msgID, ok := m.Tags["id"]
|
2021-10-03 13:35:58 +00:00
|
|
|
if !ok || msgID == "" {
|
|
|
|
return false, errors.New("found no mesage id")
|
|
|
|
}
|
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
if err = botTwitchClient.DeleteMessage(
|
2024-01-01 16:52:18 +00:00
|
|
|
context.Background(),
|
2022-10-25 16:47:30 +00:00
|
|
|
plugins.DeriveChannel(m, eventData),
|
|
|
|
msgID,
|
|
|
|
); err != nil {
|
|
|
|
return false, errors.Wrap(err, "deleting message")
|
|
|
|
}
|
2021-10-03 13:35:58 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
to, err := time.ParseDuration(lt)
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "parsing punishment level")
|
|
|
|
}
|
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
if err = botTwitchClient.BanUser(
|
2024-01-01 16:52:18 +00:00
|
|
|
context.Background(),
|
2021-10-03 13:35:58 +00:00
|
|
|
plugins.DeriveChannel(m, eventData),
|
2022-10-25 16:47:30 +00:00
|
|
|
strings.TrimLeft(user, "@"),
|
|
|
|
to,
|
|
|
|
reason,
|
|
|
|
); err != nil {
|
|
|
|
return false, errors.Wrap(err, "executing user ban")
|
|
|
|
}
|
2021-10-03 13:35:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lvl.Cooldown = cooldown
|
2022-10-22 22:08:02 +00:00
|
|
|
lvl.Executed = time.Now().UTC()
|
2021-10-03 13:35:58 +00:00
|
|
|
lvl.LastLevel = nLvl
|
|
|
|
|
|
|
|
return false, errors.Wrap(
|
2022-10-22 22:08:02 +00:00
|
|
|
setPunishment(db, plugins.DeriveChannel(m, eventData), user, uuid, lvl),
|
2021-10-03 13:35:58 +00:00
|
|
|
"storing punishment level",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorPunish) IsAsync() bool { return false }
|
|
|
|
func (actorPunish) Name() string { return actorNamePunish }
|
2021-10-03 13:35:58 +00:00
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorPunish) Validate(tplValidator plugins.TemplateValidatorFunc, attrs *plugins.FieldCollection) (err error) {
|
2021-10-03 13:35:58 +00:00
|
|
|
if v, err := attrs.String("user"); err != nil || v == "" {
|
|
|
|
return errors.New("user must be non-empty string")
|
|
|
|
}
|
|
|
|
|
|
|
|
if v, err := attrs.StringSlice("levels"); err != nil || len(v) == 0 {
|
|
|
|
return errors.New("levels must be slice of strings with length > 0")
|
|
|
|
}
|
|
|
|
|
2022-10-31 16:26:53 +00:00
|
|
|
if err = tplValidator(attrs.MustString("user", ptrStringEmpty)); err != nil {
|
|
|
|
return errors.Wrap(err, "validating user template")
|
|
|
|
}
|
|
|
|
|
2021-10-03 13:35:58 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorResetPunish) Execute(_ *irc.Client, m *irc.Message, r *plugins.Rule, eventData *plugins.FieldCollection, attrs *plugins.FieldCollection) (preventCooldown bool, err error) {
|
2021-10-03 13:35:58 +00:00
|
|
|
var (
|
|
|
|
user = attrs.MustString("user", nil)
|
|
|
|
uuid = attrs.MustString("uuid", ptrStringEmpty)
|
|
|
|
)
|
|
|
|
|
|
|
|
if user, err = formatMessage(user, m, r, eventData); err != nil {
|
|
|
|
return false, errors.Wrap(err, "preparing user")
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, errors.Wrap(
|
2022-10-22 22:08:02 +00:00
|
|
|
deletePunishment(db, plugins.DeriveChannel(m, eventData), user, uuid),
|
2021-10-03 13:35:58 +00:00
|
|
|
"resetting punishment level",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorResetPunish) IsAsync() bool { return false }
|
|
|
|
func (actorResetPunish) Name() string { return actorNameResetPunish }
|
2021-10-03 13:35:58 +00:00
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actorResetPunish) Validate(tplValidator plugins.TemplateValidatorFunc, attrs *plugins.FieldCollection) (err error) {
|
2021-10-03 13:35:58 +00:00
|
|
|
if v, err := attrs.String("user"); err != nil || v == "" {
|
|
|
|
return errors.New("user must be non-empty string")
|
|
|
|
}
|
|
|
|
|
2022-10-31 16:26:53 +00:00
|
|
|
if err = tplValidator(attrs.MustString("user", ptrStringEmpty)); err != nil {
|
|
|
|
return errors.Wrap(err, "validating user template")
|
|
|
|
}
|
|
|
|
|
2021-10-03 13:35:58 +00:00
|
|
|
return nil
|
|
|
|
}
|