mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
85 lines
2.4 KiB
Go
85 lines
2.4 KiB
Go
package messagehook
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
"gopkg.in/irc.v4"
|
|
|
|
"github.com/Luzifer/go_helpers/v2/fieldcollection"
|
|
"github.com/Luzifer/twitch-bot/v3/internal/helpers"
|
|
"github.com/Luzifer/twitch-bot/v3/plugins"
|
|
)
|
|
|
|
type slackCompatibleActor struct {
|
|
plugins.ActorKit
|
|
}
|
|
|
|
func (s slackCompatibleActor) Execute(_ *irc.Client, m *irc.Message, r *plugins.Rule, eventData *fieldcollection.FieldCollection, attrs *fieldcollection.FieldCollection) (preventCooldown bool, err error) {
|
|
text, err := formatMessage(attrs.MustString("text", nil), m, r, eventData)
|
|
if err != nil {
|
|
return false, errors.Wrap(err, "parsing text")
|
|
}
|
|
|
|
return sendPayload(
|
|
s.fixHookURL(attrs.MustString("hook_url", helpers.Ptr(""))),
|
|
map[string]string{
|
|
"text": text,
|
|
},
|
|
http.StatusOK,
|
|
)
|
|
}
|
|
|
|
func (slackCompatibleActor) IsAsync() bool { return false }
|
|
|
|
func (slackCompatibleActor) Name() string { return "slackhook" }
|
|
|
|
func (s slackCompatibleActor) Validate(tplValidator plugins.TemplateValidatorFunc, attrs *fieldcollection.FieldCollection) (err error) {
|
|
if err = s.ValidateRequireNonEmpty(attrs, "hook_url", "text"); err != nil {
|
|
return err //nolint:wrapcheck
|
|
}
|
|
|
|
//nolint:wrapcheck
|
|
return s.ValidateRequireValidTemplate(tplValidator, attrs, "text")
|
|
}
|
|
|
|
func (slackCompatibleActor) fixHookURL(hookURL string) string {
|
|
if strings.HasPrefix(hookURL, "https://discord.com/api/webhooks/") && !strings.HasSuffix(hookURL, "/slack") {
|
|
hookURL = strings.Join([]string{
|
|
strings.TrimRight(hookURL, "/"),
|
|
"slack",
|
|
}, "/")
|
|
}
|
|
|
|
return hookURL
|
|
}
|
|
|
|
func (slackCompatibleActor) register(args plugins.RegistrationArguments) {
|
|
args.RegisterActor("slackhook", func() plugins.Actor { return &slackCompatibleActor{} })
|
|
|
|
args.RegisterActorDocumentation(plugins.ActionDocumentation{
|
|
Description: "Sends a message to a Slack(-compatible) Web-hook",
|
|
Name: "Slack Message-Webhook",
|
|
Type: "slackhook",
|
|
|
|
Fields: []plugins.ActionDocumentationField{
|
|
{
|
|
Description: "URL to send the POST request to",
|
|
Key: "hook_url",
|
|
Name: "Hook URL",
|
|
Optional: false,
|
|
SupportTemplate: false,
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
},
|
|
{
|
|
Description: "Text to send to the web-hook",
|
|
Key: "text",
|
|
Name: "Message",
|
|
Optional: false,
|
|
SupportTemplate: true,
|
|
Type: plugins.ActionDocumentationFieldTypeString,
|
|
},
|
|
},
|
|
})
|
|
}
|