mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 16:50:01 +00:00
[log] Add log
-actor
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
37a82002df
commit
9ec1117490
3 changed files with 87 additions and 0 deletions
72
internal/actors/log/actor.go
Normal file
72
internal/actors/log/actor.go
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
package log
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/go-irc/irc"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Luzifer/twitch-bot/v3/plugins"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
formatMessage plugins.MsgFormatter
|
||||||
|
ptrStringEmpty = func(v string) *string { return &v }("")
|
||||||
|
)
|
||||||
|
|
||||||
|
func Register(args plugins.RegistrationArguments) error {
|
||||||
|
formatMessage = args.FormatMessage
|
||||||
|
|
||||||
|
args.RegisterActor("log", func() plugins.Actor { return &actor{} })
|
||||||
|
|
||||||
|
args.RegisterActorDocumentation(plugins.ActionDocumentation{
|
||||||
|
Description: "Print info log-line to bot log",
|
||||||
|
Name: "Log output",
|
||||||
|
Type: "log",
|
||||||
|
|
||||||
|
Fields: []plugins.ActionDocumentationField{
|
||||||
|
{
|
||||||
|
Default: "",
|
||||||
|
Description: "Messsage to log into bot-log",
|
||||||
|
Key: "message",
|
||||||
|
Name: "Message",
|
||||||
|
Optional: false,
|
||||||
|
SupportTemplate: true,
|
||||||
|
Type: plugins.ActionDocumentationFieldTypeString,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
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) {
|
||||||
|
message, err := formatMessage(attrs.MustString("message", ptrStringEmpty), m, r, eventData)
|
||||||
|
if err != nil {
|
||||||
|
return false, errors.Wrap(err, "executing message template")
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.WithFields(logrus.Fields{
|
||||||
|
"channel": plugins.DeriveChannel(m, eventData),
|
||||||
|
"rule": r.UUID,
|
||||||
|
"username": plugins.DeriveUser(m, eventData),
|
||||||
|
}).Info(message)
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a actor) IsAsync() bool { return true }
|
||||||
|
func (a actor) Name() string { return "log" }
|
||||||
|
|
||||||
|
func (a actor) Validate(tplValidator plugins.TemplateValidatorFunc, attrs *plugins.FieldCollection) (err error) {
|
||||||
|
if v, err := attrs.String("message"); err != nil || v == "" {
|
||||||
|
return errors.New("message must be non-empty string")
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = tplValidator(attrs.MustString("message", ptrStringEmpty)); err != nil {
|
||||||
|
return errors.Wrap(err, "validating message template")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -16,6 +16,7 @@ import (
|
||||||
"github.com/Luzifer/twitch-bot/v3/internal/actors/delay"
|
"github.com/Luzifer/twitch-bot/v3/internal/actors/delay"
|
||||||
deleteactor "github.com/Luzifer/twitch-bot/v3/internal/actors/delete"
|
deleteactor "github.com/Luzifer/twitch-bot/v3/internal/actors/delete"
|
||||||
"github.com/Luzifer/twitch-bot/v3/internal/actors/filesay"
|
"github.com/Luzifer/twitch-bot/v3/internal/actors/filesay"
|
||||||
|
logActor "github.com/Luzifer/twitch-bot/v3/internal/actors/log"
|
||||||
"github.com/Luzifer/twitch-bot/v3/internal/actors/modchannel"
|
"github.com/Luzifer/twitch-bot/v3/internal/actors/modchannel"
|
||||||
"github.com/Luzifer/twitch-bot/v3/internal/actors/nuke"
|
"github.com/Luzifer/twitch-bot/v3/internal/actors/nuke"
|
||||||
"github.com/Luzifer/twitch-bot/v3/internal/actors/punish"
|
"github.com/Luzifer/twitch-bot/v3/internal/actors/punish"
|
||||||
|
@ -50,6 +51,7 @@ var (
|
||||||
delay.Register,
|
delay.Register,
|
||||||
deleteactor.Register,
|
deleteactor.Register,
|
||||||
filesay.Register,
|
filesay.Register,
|
||||||
|
logActor.Register,
|
||||||
modchannel.Register,
|
modchannel.Register,
|
||||||
nuke.Register,
|
nuke.Register,
|
||||||
punish.Register,
|
punish.Register,
|
||||||
|
|
|
@ -104,6 +104,19 @@ Takes the content of an URL and pastes it to the current channel
|
||||||
source: ""
|
source: ""
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Log output
|
||||||
|
|
||||||
|
Print info log-line to bot log
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- type: log
|
||||||
|
attributes:
|
||||||
|
# Messsage to log into bot-log
|
||||||
|
# Optional: false
|
||||||
|
# Type: string (Supports Templating)
|
||||||
|
message: ""
|
||||||
|
```
|
||||||
|
|
||||||
## Modify Counter
|
## Modify Counter
|
||||||
|
|
||||||
Update counter values
|
Update counter values
|
||||||
|
|
Loading…
Reference in a new issue