maddy/internal/table/regexp.go
2021-07-10 14:56:43 +03:00

115 lines
2.6 KiB
Go

/*
Maddy Mail Server - Composable all-in-one email server.
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package table
import (
"context"
"fmt"
"regexp"
"strings"
"github.com/foxcpp/maddy/framework/config"
"github.com/foxcpp/maddy/framework/module"
)
type Regexp struct {
modName string
instName string
inlineArgs []string
re *regexp.Regexp
replacement string
expandPlaceholders bool
}
func NewRegexp(modName, instName string, _, inlineArgs []string) (module.Module, error) {
return &Regexp{
modName: modName,
instName: instName,
inlineArgs: inlineArgs,
}, nil
}
func (r *Regexp) Init(cfg *config.Map) error {
var (
fullMatch bool
caseInsensitive bool
)
cfg.Bool("full_match", false, true, &fullMatch)
cfg.Bool("case_insensitive", false, true, &caseInsensitive)
cfg.Bool("expand_replaceholders", false, true, &r.expandPlaceholders)
if _, err := cfg.Process(); err != nil {
return err
}
if len(r.inlineArgs) > 2 {
return fmt.Errorf("%s: at most two arguments accepted", r.modName)
}
regex := r.inlineArgs[0]
if len(r.inlineArgs) == 2 {
r.replacement = r.inlineArgs[1]
}
if fullMatch {
if !strings.HasPrefix(regex, "^") {
regex = "^" + regex
}
if !strings.HasSuffix(regex, "$") {
regex = regex + "$"
}
}
if caseInsensitive {
regex = "(?i)" + regex
}
var err error
r.re, err = regexp.Compile(regex)
if err != nil {
return fmt.Errorf("%s: %v", r.modName, err)
}
return nil
}
func (r *Regexp) Name() string {
return r.modName
}
func (r *Regexp) InstanceName() string {
return r.modName
}
func (r *Regexp) Lookup(_ context.Context, key string) (string, bool, error) {
matches := r.re.FindStringSubmatchIndex(key)
if matches == nil {
return "", false, nil
}
if !r.expandPlaceholders {
return r.replacement, true, nil
}
return string(r.re.ExpandString([]byte{}, r.replacement, key, matches)), true, nil
}
func init() {
module.RegisterDeprecated("regexp", "table.regexp", NewRegexp)
module.Register("table.regexp", NewRegexp)
}