0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-04-01 02:42:35 -05:00

type name refactor

This commit is contained in:
Abiola Ibrahim 2016-01-11 07:28:46 +01:00
parent eea2153e73
commit 810f9bebef
6 changed files with 38 additions and 38 deletions

View file

@ -104,19 +104,19 @@ func rewriteParse(c *Controller) ([]rewrite.Rule, error) {
}
var configPaths middleware.ConfigPaths
var configs middleware.Configs
// put simple rules in front to avoid regexp computation for them
for _, v := range append(simpleRules, complexRules...) {
// order by longest path
configPaths.Add(v)
configs.Add(v)
}
var rules []rewrite.Rule
// add to rules after ordering
configPaths.Each(func(b middleware.ConfigPath) {
rule, _ := b.(rewrite.Rule)
configs.Each(func(c middleware.Config) {
rule, _ := c.(rewrite.Rule)
rules = append(rules, rule)
})

View file

@ -14,35 +14,35 @@ func (p Path) Matches(other string) bool {
return strings.HasPrefix(string(p), other)
}
// ConfigPath represents a configuration base path.
type ConfigPath interface {
// Config represents a configuration.
type Config interface {
// Path returns base path value.
Path() string
}
// ConfigPaths is a list of ConfigPath
type ConfigPaths []ConfigPath
// Configs is a list of Config
type Configs []Config
// Add adds a new ConfigPath to the list in descending order of
// Add adds a new Config to the list in descending order of
// path length.
func (paths *ConfigPaths) Add(b ConfigPath) {
idx := len(*paths)
for i, p := range *paths {
if len(p.Path()) < len(b.Path()) {
func (configs *Configs) Add(c Config) {
idx := len(*configs)
for i, config := range *configs {
if len(config.Path()) < len(c.Path()) {
idx = i
break
}
}
part := []ConfigPath{b}
if idx < len(*paths) {
part = append(part, (*paths)[idx:]...)
part := []Config{c}
if idx < len(*configs) {
part = append(part, (*configs)[idx:]...)
}
*paths = append((*paths)[:idx], part...)
*configs = append((*configs)[:idx], part...)
}
// Each iterates through all config paths and calls f on each iteration
func (paths ConfigPaths) Each(f func(ConfigPath)) {
for _, p := range paths {
f(p)
// Each iterates through all configs and calls f on each iteration
func (configs Configs) Each(f func(Config)) {
for _, c := range configs {
f(c)
}
}

View file

@ -3,15 +3,15 @@ package middleware
import "testing"
func TestConfigPath(t *testing.T) {
testRules := ConfigPaths{
testPath("/"),
testPath("/school"),
testPath("/s"),
testPath("/sch"),
testPath("/schools"),
testRules := Configs{
testConfig("/"),
testConfig("/school"),
testConfig("/s"),
testConfig("/sch"),
testConfig("/schools"),
}
rules := ConfigPaths{}
rules := Configs{}
for _, r := range testRules {
rules.Add(r)
}
@ -28,8 +28,8 @@ func TestConfigPath(t *testing.T) {
}
type testPath string
type testConfig string
func (t testPath) Path() string {
func (t testConfig) Path() string {
return string(t)
}

View file

@ -29,7 +29,7 @@ type Upstream interface {
// Checks if subpath is not an ignored path
IsAllowedPath(string) bool
middleware.ConfigPath
middleware.Config
}
// UpstreamHostDownFunc can be used to customize how Down behaves.

View file

@ -34,7 +34,7 @@ type staticUpstream struct {
IgnoredSubPaths []string
}
// Path satisfies middleware.ConfigPath
// Path satisfies middleware.Config
func (s staticUpstream) Path() string {
return s.from
}
@ -43,7 +43,7 @@ func (s staticUpstream) Path() string {
// static upstreams for the proxy middleware.
func NewStaticUpstreams(c parse.Dispenser) ([]Upstream, error) {
var upstreams []Upstream
var configPaths middleware.ConfigPaths
var configs middleware.Configs
for c.Next() {
upstream := &staticUpstream{
from: "",
@ -106,11 +106,11 @@ func NewStaticUpstreams(c parse.Dispenser) ([]Upstream, error) {
go upstream.HealthCheckWorker(nil)
}
configPaths.Add(upstream)
configs.Add(upstream)
}
// retrieve in sorted order
configPaths.Each(func(c middleware.ConfigPath) {
configs.Each(func(c middleware.Config) {
upstream, _ := c.(Upstream)
upstreams = append(upstreams, upstream)
})

View file

@ -57,7 +57,7 @@ type Rule interface {
// Rewrite rewrites the internal location of the current request.
Rewrite(http.FileSystem, *http.Request) Result
middleware.ConfigPath
middleware.Config
}
// SimpleRule is a simple rewrite rule.
@ -70,7 +70,7 @@ func NewSimpleRule(from, to string) SimpleRule {
return SimpleRule{from, to}
}
// Path satisfies middleware.ConfigPath
// Path satisfies middleware.Config
func (s SimpleRule) Path() string {
return s.From
}
@ -142,7 +142,7 @@ func NewComplexRule(base, pattern, to string, status int, ext []string, ifs []If
}, nil
}
// Path satisfies middleware.ConfigPath.
// Path satisfies middleware.Config.
func (r *ComplexRule) Path() string {
return r.Base
}