5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 14:52:30 +00:00
matterbridge/vendor/github.com/labstack/echo/v4/middleware/middleware.go

39 lines
852 B
Go
Raw Normal View History

2017-02-18 22:00:46 +00:00
package middleware
2018-02-20 23:48:10 +00:00
import (
"regexp"
"strconv"
"strings"
"github.com/labstack/echo/v4"
2018-02-20 23:48:10 +00:00
)
2017-02-18 22:00:46 +00:00
type (
// Skipper defines a function to skip middleware. Returning true skips processing
// the middleware.
Skipper func(echo.Context) bool
// BeforeFunc defines a function which is executed just before the middleware.
BeforeFunc func(echo.Context)
2017-02-18 22:00:46 +00:00
)
2018-02-20 23:48:10 +00:00
func captureTokens(pattern *regexp.Regexp, input string) *strings.Replacer {
groups := pattern.FindAllStringSubmatch(input, -1)
if groups == nil {
return nil
}
values := groups[0][1:]
replace := make([]string, 2*len(values))
for i, v := range values {
j := 2 * i
replace[j] = "$" + strconv.Itoa(i+1)
replace[j+1] = v
}
return strings.NewReplacer(replace...)
}
2017-02-18 22:00:46 +00:00
// DefaultSkipper returns false which processes the middleware.
2017-06-05 22:01:05 +00:00
func DefaultSkipper(echo.Context) bool {
2017-02-18 22:00:46 +00:00
return false
}