2021-08-19 13:33:56 +00:00
|
|
|
package deleteactor
|
2020-12-27 13:42:51 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-irc/irc"
|
|
|
|
"github.com/pkg/errors"
|
2021-11-25 22:48:16 +00:00
|
|
|
|
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"
|
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
var botTwitchClient *twitch.Client
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func Register(args plugins.RegistrationArguments) error {
|
2022-10-25 16:47:30 +00:00
|
|
|
botTwitchClient = args.GetTwitchClient()
|
|
|
|
|
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
|
|
|
|
2023-03-24 21:32:00 +00:00
|
|
|
func (a actor) Execute(_ *irc.Client, m *irc.Message, _ *plugins.Rule, eventData *plugins.FieldCollection, _ *plugins.FieldCollection) (preventCooldown bool, err error) {
|
2021-06-11 11:52:42 +00:00
|
|
|
msgID, ok := m.Tags.GetTag("id")
|
|
|
|
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(
|
2022-10-25 16:47:30 +00:00
|
|
|
botTwitchClient.DeleteMessage(
|
|
|
|
plugins.DeriveChannel(m, eventData),
|
|
|
|
msgID,
|
|
|
|
),
|
|
|
|
"deleting message",
|
2021-06-11 11:52:42 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (a actor) IsAsync() bool { return false }
|
2021-09-22 13:36:45 +00:00
|
|
|
func (a actor) Name() string { return actorName }
|
|
|
|
|
2022-10-31 16:26:53 +00:00
|
|
|
func (a actor) Validate(plugins.TemplateValidatorFunc, *plugins.FieldCollection) (err error) {
|
|
|
|
return nil
|
|
|
|
}
|