You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package cluster
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/k3s-io/k3s/pkg/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// getHandler returns a basic request handler that processes requests through
|
|
|
|
// the cluster's request router chain.
|
|
|
|
func (c *Cluster) getHandler(handler http.Handler) (http.Handler, error) {
|
|
|
|
next := c.router()
|
|
|
|
|
|
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
handler.ServeHTTP(rw, req)
|
|
|
|
next.ServeHTTP(rw, req)
|
|
|
|
}), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// router is a stub request router that returns a Service Unavailable response
|
|
|
|
// if no additional handlers are available.
|
|
|
|
func (c *Cluster) router() http.Handler {
|
|
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
if c.config.Runtime.Handler != nil {
|
|
|
|
c.config.Runtime.Handler.ServeHTTP(rw, req)
|
|
|
|
} else {
|
|
|
|
util.SendError(fmt.Errorf("starting"), rw, req, http.StatusServiceUnavailable)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|