1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00

perf(rewrite): anchor the rewrite regex

There is no need to try to match the regexp over the whole input, having it
anchored is enough. If we feel extra-lenient, we might strip spaces in
front/tail, but I don't think it's necessary.

This commit also invert a condition to reduce the level of nested indentation,
and make a condition stricter.
This commit is contained in:
jvoisin 2025-07-11 00:59:35 +02:00 committed by Frédéric Guillot
parent 9dea26c923
commit f455c18c66

View file

@ -10,14 +10,17 @@ import (
"miniflux.app/v2/internal/model"
)
var customReplaceRuleRegex = regexp.MustCompile(`rewrite\("([^"]+)"\|"([^"]+)"\)`)
var customReplaceRuleRegex = regexp.MustCompile(`^rewrite\("([^"]+)"\|"([^"]+)"\)$`)
func RewriteEntryURL(feed *model.Feed, entry *model.Entry) string {
if feed.UrlRewriteRules == "" {
return entry.URL
}
var rewrittenURL = entry.URL
if feed.UrlRewriteRules != "" {
parts := customReplaceRuleRegex.FindStringSubmatch(feed.UrlRewriteRules)
if len(parts) >= 3 {
if len(parts) == 3 {
re, err := regexp.Compile(parts[1])
if err != nil {
slog.Error("Failed on regexp compilation",
@ -42,7 +45,6 @@ func RewriteEntryURL(feed *model.Feed, entry *model.Entry) string {
slog.String("url_rewrite_rules", feed.UrlRewriteRules),
)
}
}
return rewrittenURL
}