1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 19:14:14 +00:00
Beego/filter.go

32 lines
493 B
Go
Raw Normal View History

2013-09-09 16:00:11 +00:00
package beego
import (
"regexp"
)
type FilterRouter struct {
pattern string
regex *regexp.Regexp
filterFunc FilterFunc
hasregex bool
}
func (mr *FilterRouter) ValidRouter(router string) bool {
if mr.pattern == "" {
return true
}
if router == mr.pattern {
return true
}
if mr.hasregex {
if mr.regex.MatchString(router) {
return true
}
matches := mr.regex.FindStringSubmatch(router)
if len(matches[0]) == len(router) {
return true
}
}
return false
}