package kubernetes import ( "net/http" "strconv" httperror "github.com/portainer/libhttp/error" "github.com/portainer/libhttp/request" "github.com/portainer/libhttp/response" models "github.com/portainer/portainer/api/http/models/kubernetes" ) func (handler *Handler) getKubernetesNamespaces(w http.ResponseWriter, r *http.Request) *httperror.HandlerError { endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id") if err != nil { return httperror.BadRequest( "Invalid environment identifier route variable", err, ) } cli, ok := handler.KubernetesClientFactory.GetProxyKubeClient( strconv.Itoa(endpointID), r.Header.Get("Authorization"), ) if !ok { return httperror.InternalServerError( "Failed to lookup KubeClient", nil, ) } namespaces, err := cli.GetNamespaces() if err != nil { return httperror.InternalServerError( "Unable to retrieve namespaces", err, ) } return response.JSON(w, namespaces) } func (handler *Handler) getKubernetesNamespace(w http.ResponseWriter, r *http.Request) *httperror.HandlerError { endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id") if err != nil { return httperror.BadRequest( "Invalid environment identifier route variable", err, ) } cli, ok := handler.KubernetesClientFactory.GetProxyKubeClient( strconv.Itoa(endpointID), r.Header.Get("Authorization"), ) if !ok { return httperror.InternalServerError( "Failed to lookup KubeClient", nil, ) } ns, err := request.RetrieveRouteVariableValue(r, "namespace") if err != nil { return httperror.BadRequest( "Invalid namespace identifier route variable", err, ) } namespace, err := cli.GetNamespace(ns) if err != nil { return httperror.InternalServerError( "Unable to retrieve namespace", err, ) } return response.JSON(w, namespace) } func (handler *Handler) createKubernetesNamespace(w http.ResponseWriter, r *http.Request) *httperror.HandlerError { endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id") if err != nil { return httperror.BadRequest( "Invalid environment identifier route variable", err, ) } cli, ok := handler.KubernetesClientFactory.GetProxyKubeClient( strconv.Itoa(endpointID), r.Header.Get("Authorization"), ) if !ok { return httperror.InternalServerError( "Failed to lookup KubeClient", nil, ) } var payload models.K8sNamespaceDetails err = request.DecodeAndValidateJSONPayload(r, &payload) if err != nil { return httperror.BadRequest( "Invalid request payload", err, ) } err = cli.CreateNamespace(payload) if err != nil { return httperror.InternalServerError( "Unable to create namespace", err, ) } return nil } func (handler *Handler) deleteKubernetesNamespaces(w http.ResponseWriter, r *http.Request) *httperror.HandlerError { endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id") if err != nil { return httperror.BadRequest( "Invalid environment identifier route variable", err, ) } cli, ok := handler.KubernetesClientFactory.GetProxyKubeClient( strconv.Itoa(endpointID), r.Header.Get("Authorization"), ) if !ok { return httperror.InternalServerError( "Failed to lookup KubeClient", nil, ) } namespace, err := request.RetrieveRouteVariableValue(r, "namespace") if err != nil { return httperror.BadRequest( "Invalid namespace identifier route variable", err, ) } err = cli.DeleteNamespace(namespace) if err != nil { return httperror.InternalServerError( "Unable to delete namespace", err, ) } return nil } func (handler *Handler) updateKubernetesNamespace(w http.ResponseWriter, r *http.Request) *httperror.HandlerError { endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id") if err != nil { return httperror.BadRequest( "Invalid environment identifier route variable", err, ) } cli, ok := handler.KubernetesClientFactory.GetProxyKubeClient( strconv.Itoa(endpointID), r.Header.Get("Authorization"), ) if !ok { return httperror.InternalServerError( "Failed to lookup KubeClient", nil, ) } var payload models.K8sNamespaceDetails err = request.DecodeAndValidateJSONPayload(r, &payload) if err != nil { return httperror.BadRequest("Invalid request payload", err) } err = cli.UpdateNamespace(payload) if err != nil { return httperror.InternalServerError("Unable to update namespace", err) } return nil }