[customevent] Add actor to create events within rules

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2022-04-17 16:54:12 +02:00
parent 5fe727d7dc
commit 6dd52e5320
Signed by: luzifer
GPG key ID: 0066F03ED215AD7D
2 changed files with 89 additions and 14 deletions

View file

@ -0,0 +1,41 @@
package customevent
import (
"strings"
"github.com/go-irc/irc"
"github.com/pkg/errors"
"github.com/Luzifer/twitch-bot/plugins"
)
type actor struct{}
func (a actor) Execute(c *irc.Client, m *irc.Message, r *plugins.Rule, eventData *plugins.FieldCollection, attrs *plugins.FieldCollection) (preventCooldown bool, err error) {
ptrStringEmpty := func(v string) *string { return &v }("")
fd, err := formatMessage(attrs.MustString("fields", ptrStringEmpty), m, r, eventData)
if err != nil {
return false, errors.Wrap(err, "executing fields template")
}
if fd == "" {
return false, errors.New("fields template evaluated to empty string")
}
return false, errors.Wrap(
triggerEvent(plugins.DeriveChannel(m, eventData), strings.NewReader(fd)),
"triggering event",
)
}
func (a actor) IsAsync() bool { return false }
func (a actor) Name() string { return actorName }
func (a actor) Validate(attrs *plugins.FieldCollection) (err error) {
if v, err := attrs.String("fields"); err != nil || v == "" {
return errors.New("fields is expected to be non-empty string")
}
return nil
}

View file

@ -2,6 +2,7 @@ package customevent
import ( import (
"encoding/json" "encoding/json"
"io"
"net/http" "net/http"
"strings" "strings"
@ -11,10 +12,36 @@ import (
"github.com/Luzifer/twitch-bot/plugins" "github.com/Luzifer/twitch-bot/plugins"
) )
var eventCreatorFunc plugins.EventHandlerFunc const actorName = "customevent"
var (
eventCreatorFunc plugins.EventHandlerFunc
formatMessage plugins.MsgFormatter
)
func Register(args plugins.RegistrationArguments) error { func Register(args plugins.RegistrationArguments) error {
eventCreatorFunc = args.CreateEvent eventCreatorFunc = args.CreateEvent
formatMessage = args.FormatMessage
args.RegisterActor(actorName, func() plugins.Actor { return &actor{} })
args.RegisterActorDocumentation(plugins.ActionDocumentation{
Description: "Create a custom event",
Name: "Custom Event",
Type: actorName,
Fields: []plugins.ActionDocumentationField{
{
Default: "{}",
Description: "JSON representation of fields in the event (`map[string]any`)",
Key: "fields",
Name: "Fields",
Optional: false,
SupportTemplate: true,
Type: plugins.ActionDocumentationFieldTypeString,
},
},
})
args.RegisterAPIRoute(plugins.HTTPRouteRegistrationArgs{ args.RegisterAPIRoute(plugins.HTTPRouteRegistrationArgs{
Description: "Creates an `custom` event containing the fields provided in the request body", Description: "Creates an `custom` event containing the fields provided in the request body",
@ -37,28 +64,35 @@ func Register(args plugins.RegistrationArguments) error {
} }
func handleCreateEvent(w http.ResponseWriter, r *http.Request) { func handleCreateEvent(w http.ResponseWriter, r *http.Request) {
var ( channel := mux.Vars(r)["channel"]
channel = mux.Vars(r)["channel"]
payload = make(map[string]any)
)
if channel == "" { if channel == "" {
http.Error(w, errors.New("missing channel").Error(), http.StatusBadRequest) http.Error(w, errors.New("missing channel").Error(), http.StatusBadRequest)
return return
} }
channel = "#" + strings.TrimLeft(channel, "#") // Sanitize
if err := json.NewDecoder(r.Body).Decode(&payload); err != nil { if err := triggerEvent(channel, r.Body); err != nil {
http.Error(w, errors.Wrap(err, "parsing event payload").Error(), http.StatusBadRequest)
return
}
fields := plugins.FieldCollectionFromData(payload)
fields.Set("channel", "#"+strings.TrimLeft(channel, "#"))
if err := eventCreatorFunc("custom", fields); err != nil {
http.Error(w, errors.Wrap(err, "creating event").Error(), http.StatusInternalServerError) http.Error(w, errors.Wrap(err, "creating event").Error(), http.StatusInternalServerError)
return return
} }
w.WriteHeader(http.StatusNoContent) w.WriteHeader(http.StatusNoContent)
} }
func triggerEvent(channel string, fieldData io.Reader) error {
payload := make(map[string]any)
if err := json.NewDecoder(fieldData).Decode(&payload); err != nil {
return errors.Wrap(err, "parsing event payload")
}
fields := plugins.FieldCollectionFromData(payload)
fields.Set("channel", "#"+strings.TrimLeft(channel, "#"))
if err := eventCreatorFunc("custom", fields); err != nil {
return errors.Wrap(err, "creating event")
}
return nil
}