github.com/elfadel/cilium@v1.6.12/pkg/health/server/status.go (about)

     1  // Copyright 2017 Authors of Cilium
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package server
    16  
    17  import (
    18  	. "github.com/cilium/cilium/api/v1/health/server/restapi/connectivity"
    19  	"github.com/cilium/cilium/pkg/api"
    20  
    21  	"github.com/go-openapi/runtime/middleware"
    22  )
    23  
    24  type getStatusCache struct {
    25  	*Server
    26  }
    27  
    28  type putStatusProbe struct {
    29  	*Server
    30  }
    31  
    32  // NewGetStatusHandler handles requests for cached connectivity status.
    33  func NewGetStatusHandler(s *Server) GetStatusHandler {
    34  	return &getStatusCache{Server: s}
    35  }
    36  
    37  // NewPutStatusProbeHandler handles requests for connectivity probes.
    38  func NewPutStatusProbeHandler(s *Server) PutStatusProbeHandler {
    39  	return &putStatusProbe{Server: s}
    40  }
    41  
    42  // Handle handles GET requests for /status .
    43  func (h *getStatusCache) Handle(params GetStatusParams) middleware.Responder {
    44  	log.Debug("Handling request for /status")
    45  
    46  	return NewGetStatusOK().WithPayload(h.GetStatusResponse())
    47  }
    48  
    49  // Handle handles GET requests for /status/probe .
    50  func (h *putStatusProbe) Handle(params PutStatusProbeParams) middleware.Responder {
    51  	log.Debug("Handling request for /status/probe")
    52  
    53  	status, err := h.FetchStatusResponse()
    54  	if err != nil {
    55  		return api.Error(PutStatusProbeFailedCode, err)
    56  	}
    57  	return NewPutStatusProbeOK().WithPayload(status)
    58  }