26 lines
660 B
Go
26 lines
660 B
Go
package chain
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/containous/alice"
|
|
"github.com/containous/traefik/v2/pkg/config/dynamic"
|
|
"github.com/containous/traefik/v2/pkg/middlewares"
|
|
)
|
|
|
|
const (
|
|
typeName = "Chain"
|
|
)
|
|
|
|
type chainBuilder interface {
|
|
BuildChain(ctx context.Context, middlewares []string) *alice.Chain
|
|
}
|
|
|
|
// New creates a chain middleware
|
|
func New(ctx context.Context, next http.Handler, config dynamic.Chain, builder chainBuilder, name string) (http.Handler, error) {
|
|
middlewares.GetLogger(ctx, name, typeName).Debug("Creating middleware")
|
|
|
|
middlewareChain := builder.BuildChain(ctx, config.Middlewares)
|
|
return middlewareChain.Then(next)
|
|
}
|