89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
package router
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containous/alice"
|
|
"github.com/containous/traefik/v2/pkg/api"
|
|
"github.com/containous/traefik/v2/pkg/config/runtime"
|
|
"github.com/containous/traefik/v2/pkg/config/static"
|
|
"github.com/containous/traefik/v2/pkg/log"
|
|
"github.com/containous/traefik/v2/pkg/metrics"
|
|
"github.com/containous/traefik/v2/pkg/types"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
// NewRouteAppenderAggregator Creates a new RouteAppenderAggregator
|
|
func NewRouteAppenderAggregator(ctx context.Context, conf static.Configuration,
|
|
entryPointName string, runtimeConfiguration *runtime.Configuration) *RouteAppenderAggregator {
|
|
aggregator := &RouteAppenderAggregator{}
|
|
|
|
if conf.Ping != nil && conf.Ping.EntryPoint == entryPointName {
|
|
aggregator.AddAppender(conf.Ping)
|
|
}
|
|
|
|
if conf.Metrics != nil && conf.Metrics.Prometheus != nil && conf.Metrics.Prometheus.EntryPoint == entryPointName {
|
|
aggregator.AddAppender(metrics.PrometheusHandler{})
|
|
}
|
|
|
|
if entryPointName != "traefik" {
|
|
return aggregator
|
|
}
|
|
|
|
if conf.Providers != nil && conf.Providers.Rest != nil && conf.Providers.Rest.Insecure {
|
|
aggregator.AddAppender(conf.Providers.Rest)
|
|
}
|
|
|
|
if conf.API != nil && conf.API.Insecure {
|
|
aggregator.AddAppender(api.New(conf, runtimeConfiguration))
|
|
}
|
|
|
|
return aggregator
|
|
}
|
|
|
|
// RouteAppenderAggregator RouteAppender that aggregate other RouteAppender
|
|
type RouteAppenderAggregator struct {
|
|
appenders []types.RouteAppender
|
|
}
|
|
|
|
// Append Adds routes to the router
|
|
func (r *RouteAppenderAggregator) Append(systemRouter *mux.Router) {
|
|
for _, router := range r.appenders {
|
|
router.Append(systemRouter)
|
|
}
|
|
}
|
|
|
|
// AddAppender adds a router in the aggregator
|
|
func (r *RouteAppenderAggregator) AddAppender(router types.RouteAppender) {
|
|
r.appenders = append(r.appenders, router)
|
|
}
|
|
|
|
// WithMiddleware router with internal middleware
|
|
type WithMiddleware struct {
|
|
appender types.RouteAppender
|
|
routerMiddlewares *alice.Chain
|
|
}
|
|
|
|
// Append Adds routes to the router
|
|
func (wm *WithMiddleware) Append(systemRouter *mux.Router) {
|
|
realRouter := systemRouter.PathPrefix("/").Subrouter()
|
|
|
|
wm.appender.Append(realRouter)
|
|
|
|
if err := realRouter.Walk(wrapRoute(wm.routerMiddlewares)); err != nil {
|
|
log.WithoutContext().Error(err)
|
|
}
|
|
}
|
|
|
|
// wrapRoute with middlewares
|
|
func wrapRoute(middlewares *alice.Chain) func(*mux.Route, *mux.Router, []*mux.Route) error {
|
|
return func(route *mux.Route, router *mux.Router, ancestors []*mux.Route) error {
|
|
handler, err := middlewares.Then(route.GetHandler())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
route.Handler(handler)
|
|
return nil
|
|
}
|
|
}
|