mirror of https://github.com/linkerd/linkerd2.git
328 lines
8.1 KiB
Go
328 lines
8.1 KiB
Go
package public
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
destinationPb "github.com/linkerd/linkerd2-proxy-api/go/destination"
|
|
healthcheckPb "github.com/linkerd/linkerd2/controller/gen/common/healthcheck"
|
|
pb "github.com/linkerd/linkerd2/controller/gen/public"
|
|
"github.com/linkerd/linkerd2/controller/k8s"
|
|
"github.com/linkerd/linkerd2/pkg/prometheus"
|
|
"github.com/linkerd/linkerd2/pkg/protohttp"
|
|
promApi "github.com/prometheus/client_golang/api"
|
|
promv1 "github.com/prometheus/client_golang/api/prometheus/v1"
|
|
log "github.com/sirupsen/logrus"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
var (
|
|
statSummaryPath = fullURLPathFor("StatSummary")
|
|
topRoutesPath = fullURLPathFor("TopRoutes")
|
|
versionPath = fullURLPathFor("Version")
|
|
listPodsPath = fullURLPathFor("ListPods")
|
|
listServicesPath = fullURLPathFor("ListServices")
|
|
selfCheckPath = fullURLPathFor("SelfCheck")
|
|
edgesPath = fullURLPathFor("Edges")
|
|
destGetPath = fullURLPathFor("DestinationGet")
|
|
configPath = fullURLPathFor("Config")
|
|
)
|
|
|
|
type handler struct {
|
|
grpcServer APIServer
|
|
}
|
|
|
|
func (h *handler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
log.WithFields(log.Fields{
|
|
"req.Method": req.Method, "req.URL": req.URL, "req.Form": req.Form,
|
|
}).Debugf("Serving %s %s", req.Method, req.URL.Path)
|
|
// Validate request method
|
|
if req.Method != http.MethodPost {
|
|
protohttp.WriteErrorToHTTPResponse(w, fmt.Errorf("POST required"))
|
|
return
|
|
}
|
|
|
|
// Serve request
|
|
switch req.URL.Path {
|
|
case statSummaryPath:
|
|
h.handleStatSummary(w, req)
|
|
case topRoutesPath:
|
|
h.handleTopRoutes(w, req)
|
|
case versionPath:
|
|
h.handleVersion(w, req)
|
|
case listPodsPath:
|
|
h.handleListPods(w, req)
|
|
case listServicesPath:
|
|
h.handleListServices(w, req)
|
|
case selfCheckPath:
|
|
h.handleSelfCheck(w, req)
|
|
case edgesPath:
|
|
h.handleEdges(w, req)
|
|
case destGetPath:
|
|
h.handleDestGet(w, req)
|
|
case configPath:
|
|
h.handleConfig(w, req)
|
|
default:
|
|
http.NotFound(w, req)
|
|
}
|
|
|
|
}
|
|
|
|
func (h *handler) handleStatSummary(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.StatSummaryRequest
|
|
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.StatSummary(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleEdges(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.EdgesRequest
|
|
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.Edges(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleTopRoutes(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.TopRoutesRequest
|
|
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.TopRoutes(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleVersion(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.Empty
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.Version(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleSelfCheck(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest healthcheckPb.SelfCheckRequest
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.SelfCheck(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleListPods(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.ListPodsRequest
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.ListPods(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleListServices(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.ListServicesRequest
|
|
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.ListServices(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleDestGet(w http.ResponseWriter, req *http.Request) {
|
|
flushableWriter, err := protohttp.NewStreamingWriter(w)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
var protoRequest destinationPb.GetDestination
|
|
err = protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
server := destinationServer{streamServer{w: flushableWriter, req: req}}
|
|
err = h.grpcServer.Get(&protoRequest, server)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *handler) handleConfig(w http.ResponseWriter, req *http.Request) {
|
|
var protoRequest pb.Empty
|
|
err := protohttp.HTTPRequestToProto(req, &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
rsp, err := h.grpcServer.Config(req.Context(), &protoRequest)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
|
|
err = protohttp.WriteProtoToHTTPResponse(w, rsp)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
type streamServer struct {
|
|
w protohttp.FlushableResponseWriter
|
|
req *http.Request
|
|
}
|
|
|
|
// satisfy the ServerStream interface
|
|
func (s streamServer) SetHeader(metadata.MD) error { return nil }
|
|
func (s streamServer) SendHeader(metadata.MD) error { return nil }
|
|
func (s streamServer) SetTrailer(metadata.MD) {}
|
|
func (s streamServer) Context() context.Context { return s.req.Context() }
|
|
func (s streamServer) SendMsg(interface{}) error { return nil }
|
|
func (s streamServer) RecvMsg(interface{}) error { return nil }
|
|
|
|
func (s streamServer) Send(msg proto.Message) error {
|
|
err := protohttp.WriteProtoToHTTPResponse(s.w, msg)
|
|
if err != nil {
|
|
protohttp.WriteErrorToHTTPResponse(s.w, err)
|
|
return err
|
|
}
|
|
|
|
s.w.Flush()
|
|
return nil
|
|
}
|
|
|
|
type destinationServer struct {
|
|
streamServer
|
|
}
|
|
|
|
func (s destinationServer) Send(msg *destinationPb.Update) error {
|
|
return s.streamServer.Send(msg)
|
|
}
|
|
|
|
func fullURLPathFor(method string) string {
|
|
return apiRoot + apiPrefix + method
|
|
}
|
|
|
|
// NewServer creates a Public API HTTP server.
|
|
func NewServer(
|
|
addr string,
|
|
prometheusClient promApi.Client,
|
|
destinationClient destinationPb.DestinationClient,
|
|
k8sAPI *k8s.API,
|
|
controllerNamespace string,
|
|
clusterDomain string,
|
|
ignoredNamespaces []string,
|
|
) *http.Server {
|
|
baseHandler := &handler{
|
|
grpcServer: newGrpcServer(
|
|
promv1.NewAPI(prometheusClient),
|
|
destinationClient,
|
|
k8sAPI,
|
|
controllerNamespace,
|
|
clusterDomain,
|
|
ignoredNamespaces,
|
|
),
|
|
}
|
|
|
|
instrumentedHandler := prometheus.WithTelemetry(baseHandler)
|
|
|
|
return &http.Server{
|
|
Addr: addr,
|
|
Handler: instrumentedHandler,
|
|
}
|
|
}
|