2024-01-01 16:52:18 +00:00
|
|
|
// Package deleteactor contains an actor to delete messages
|
2021-08-19 13:33:56 +00:00
|
|
|
package deleteactor
|
2020-12-27 13:42:51 +00:00
|
|
|
|
|
|
|
import (
|
2024-01-01 16:52:18 +00:00
|
|
|
"context"
|
|
|
|
|
2020-12-27 13:42:51 +00:00
|
|
|
"github.com/pkg/errors"
|
2023-09-11 17:51:38 +00:00
|
|
|
"gopkg.in/irc.v4"
|
2021-11-25 22:48:16 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
"github.com/Luzifer/go_helpers/v2/fieldcollection"
|
2022-11-02 21:38:14 +00:00
|
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/twitch"
|
|
|
|
"github.com/Luzifer/twitch-bot/v3/plugins"
|
2020-12-27 13:42:51 +00:00
|
|
|
)
|
|
|
|
|
2021-09-22 13:36:45 +00:00
|
|
|
const actorName = "delete"
|
|
|
|
|
2024-04-05 10:19:22 +00:00
|
|
|
var botTwitchClient func() *twitch.Client
|
2022-10-25 16:47:30 +00:00
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
// Register provides the plugins.RegisterFunc
|
2021-08-19 13:33:56 +00:00
|
|
|
func Register(args plugins.RegistrationArguments) error {
|
2024-04-05 10:19:22 +00:00
|
|
|
botTwitchClient = args.GetTwitchClient
|
2022-10-25 16:47:30 +00:00
|
|
|
|
2021-09-22 13:36:45 +00:00
|
|
|
args.RegisterActor(actorName, func() plugins.Actor { return &actor{} })
|
|
|
|
|
|
|
|
args.RegisterActorDocumentation(plugins.ActionDocumentation{
|
|
|
|
Description: "Delete message which caused the rule to be executed",
|
|
|
|
Name: "Delete Message",
|
|
|
|
Type: "delete",
|
|
|
|
})
|
2021-08-19 13:33:56 +00:00
|
|
|
|
|
|
|
return nil
|
2020-12-27 13:42:51 +00:00
|
|
|
}
|
2021-06-11 11:52:42 +00:00
|
|
|
|
2021-09-22 13:36:45 +00:00
|
|
|
type actor struct{}
|
2021-06-11 11:52:42 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func (actor) Execute(_ *irc.Client, m *irc.Message, _ *plugins.Rule, eventData *fieldcollection.FieldCollection, _ *fieldcollection.FieldCollection) (preventCooldown bool, err error) {
|
2023-09-11 17:51:38 +00:00
|
|
|
msgID, ok := m.Tags["id"]
|
2021-06-11 11:52:42 +00:00
|
|
|
if !ok || msgID == "" {
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, nil
|
2021-06-11 11:52:42 +00:00
|
|
|
}
|
|
|
|
|
2021-08-11 22:12:10 +00:00
|
|
|
return false, errors.Wrap(
|
2024-04-05 10:19:22 +00:00
|
|
|
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,
|
|
|
|
),
|
|
|
|
"deleting message",
|
2021-06-11 11:52:42 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-01-01 16:52:18 +00:00
|
|
|
func (actor) IsAsync() bool { return false }
|
|
|
|
func (actor) Name() string { return actorName }
|
2021-09-22 13:36:45 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func (actor) Validate(plugins.TemplateValidatorFunc, *fieldcollection.FieldCollection) (err error) {
|
2022-10-31 16:26:53 +00:00
|
|
|
return nil
|
|
|
|
}
|