mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
703ba5cde7
Also change identical error messages to clarify where problems are occurring. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
30 lines
789 B
Go
30 lines
789 B
Go
package cluster
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// 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.runtime.Handler == nil {
|
|
http.Error(rw, "starting", http.StatusServiceUnavailable)
|
|
return
|
|
}
|
|
|
|
c.runtime.Handler.ServeHTTP(rw, req)
|
|
})
|
|
}
|