2020-12-21 00:32:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-12-14 17:35:07 +00:00
|
|
|
"regexp"
|
2022-07-16 19:45:14 +00:00
|
|
|
"strings"
|
2020-12-21 00:32:39 +00:00
|
|
|
"text/template"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"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/plugins"
|
2020-12-21 00:32:39 +00:00
|
|
|
)
|
|
|
|
|
2021-12-14 17:35:07 +00:00
|
|
|
var (
|
|
|
|
// Compile-time assertion
|
|
|
|
_ plugins.MsgFormatter = formatMessage
|
|
|
|
|
|
|
|
stripNewline = regexp.MustCompile(`(?m)\s*\n\s*`)
|
2022-06-17 20:13:47 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
formatMessageFieldSetters = []func(compiledFields *fieldcollection.FieldCollection, m *irc.Message, fields *fieldcollection.FieldCollection){
|
2022-06-17 20:13:47 +00:00
|
|
|
formatMessageFieldChannel,
|
|
|
|
formatMessageFieldMessage,
|
|
|
|
formatMessageFieldUserID,
|
|
|
|
formatMessageFieldUsername,
|
|
|
|
}
|
2021-12-14 17:35:07 +00:00
|
|
|
)
|
2021-08-19 13:33:56 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func formatMessage(tplString string, m *irc.Message, r *plugins.Rule, fields *fieldcollection.FieldCollection) (string, error) {
|
|
|
|
compiledFields := fieldcollection.NewFieldCollection()
|
2021-05-25 14:26:03 +00:00
|
|
|
|
|
|
|
if config != nil {
|
|
|
|
configLock.RLock()
|
2021-11-11 13:59:08 +00:00
|
|
|
compiledFields.SetFromData(config.Variables)
|
|
|
|
compiledFields.Set("permitTimeout", int64(config.PermitTimeout/time.Second))
|
2021-05-25 14:26:03 +00:00
|
|
|
configLock.RUnlock()
|
|
|
|
}
|
|
|
|
|
2021-11-11 13:59:08 +00:00
|
|
|
compiledFields.SetFromData(fields.Data())
|
2020-12-25 18:31:07 +00:00
|
|
|
|
2022-06-17 20:13:47 +00:00
|
|
|
for _, fn := range formatMessageFieldSetters {
|
|
|
|
fn(compiledFields, m, fields)
|
2020-12-25 18:39:44 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 17:35:07 +00:00
|
|
|
// Template in frontend supports newlines, messages do not
|
|
|
|
tplString = stripNewline.ReplaceAllString(tplString, " ")
|
|
|
|
|
2020-12-25 18:31:07 +00:00
|
|
|
// Parse and execute template
|
|
|
|
tpl, err := template.
|
|
|
|
New(tplString).
|
2021-05-25 14:26:03 +00:00
|
|
|
Funcs(tplFuncs.GetFuncMap(m, r, compiledFields)).
|
2020-12-25 18:31:07 +00:00
|
|
|
Parse(tplString)
|
|
|
|
if err != nil {
|
|
|
|
return "", errors.Wrap(err, "parse template")
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-11-11 13:59:08 +00:00
|
|
|
err = tpl.Execute(buf, compiledFields.Data())
|
2020-12-25 18:31:07 +00:00
|
|
|
|
2022-07-16 19:45:14 +00:00
|
|
|
return strings.TrimSpace(buf.String()), errors.Wrap(err, "execute template")
|
2020-12-21 00:32:39 +00:00
|
|
|
}
|
2022-06-17 20:13:47 +00:00
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func formatMessageFieldChannel(compiledFields *fieldcollection.FieldCollection, m *irc.Message, fields *fieldcollection.FieldCollection) {
|
2022-06-17 20:13:47 +00:00
|
|
|
compiledFields.Set(eventFieldChannel, plugins.DeriveChannel(m, fields))
|
|
|
|
}
|
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func formatMessageFieldMessage(compiledFields *fieldcollection.FieldCollection, m *irc.Message, _ *fieldcollection.FieldCollection) {
|
2022-06-17 20:13:47 +00:00
|
|
|
if m == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
compiledFields.Set("msg", m)
|
|
|
|
}
|
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func formatMessageFieldUserID(compiledFields *fieldcollection.FieldCollection, m *irc.Message, _ *fieldcollection.FieldCollection) {
|
2022-06-17 20:13:47 +00:00
|
|
|
if m == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if uid := m.Tags["user-id"]; uid != "" {
|
|
|
|
compiledFields.Set(eventFieldUserID, uid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-03 19:00:28 +00:00
|
|
|
func formatMessageFieldUsername(compiledFields *fieldcollection.FieldCollection, m *irc.Message, fields *fieldcollection.FieldCollection) {
|
2022-06-17 20:13:47 +00:00
|
|
|
compiledFields.Set("username", plugins.DeriveUser(m, fields))
|
|
|
|
}
|
2022-10-31 16:26:53 +00:00
|
|
|
|
|
|
|
func validateTemplate(tplString string) error {
|
|
|
|
// Template in frontend supports newlines, messages do not
|
|
|
|
tplString = stripNewline.ReplaceAllString(tplString, " ")
|
|
|
|
|
|
|
|
_, err := template.
|
|
|
|
New(tplString).
|
2024-04-03 19:00:28 +00:00
|
|
|
Funcs(tplFuncs.GetFuncMap(nil, nil, fieldcollection.NewFieldCollection())).
|
2022-10-31 16:26:53 +00:00
|
|
|
Parse(tplString)
|
|
|
|
return errors.Wrap(err, "parsing template")
|
|
|
|
}
|