package server import ( "encoding/json" "fmt" "net/http" "github.com/go-zoo/bone" ) // ContainerInfo stores information about containers type ContainerInfo struct { Pid int `json:"pid"` Image string `json:"image"` CreatedTime int64 `json:"created_time"` Labels map[string]string `json:"labels"` Annotations map[string]string `json:"annotations"` } // CrioInfo stores information about the crio daemon type CrioInfo struct { StorageDriver string `json:"storage_driver"` StorageRoot string `json:"storage_root"` } // StartInfoEndpoints starts a http server that // serves container information requests and crio daemon information func (s *Server) StartInfoEndpoints() error { mux := bone.New() mux.Get("/info", http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { ci := CrioInfo{ StorageDriver: s.config.Config.Storage, StorageRoot: s.config.Config.Root, } js, err := json.Marshal(ci) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } w.Header().Set("Content-Type", "application/json") w.Write(js) })) mux.Get("/containers/:id", http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { containerID := bone.GetValue(req, "id") ctr := s.GetContainer(containerID) if ctr == nil { http.Error(w, fmt.Sprintf("container with id: %s not found", containerID), http.StatusNotFound) return } ctrState := ctr.State() if ctrState == nil { http.Error(w, fmt.Sprintf("container %s state is nil", containerID), http.StatusNotFound) return } ci := ContainerInfo{ Pid: ctrState.Pid, Image: ctr.Image(), CreatedTime: ctrState.Created.UnixNano(), Labels: ctr.Labels(), Annotations: ctr.Annotations(), } js, err := json.Marshal(ci) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } w.Header().Set("Content-Type", "application/json") w.Write(js) })) // TODO: Make this configurable return http.ListenAndServe("localhost:7373", mux) }