package handlers import ( "context" "encoding/json" "fmt" "io" "log" "net/http" "github.com/containerd/containerd" "github.com/containerd/containerd/namespaces" gocni "github.com/containerd/go-cni" "github.com/openfaas/faas-provider/types" "github.com/openfaas/faasd/pkg" cninetwork "github.com/openfaas/faasd/pkg/cninetwork" "github.com/openfaas/faasd/pkg/service" ) func MakeDeleteHandler(client *containerd.Client, cni gocni.CNI) func(w http.ResponseWriter, r *http.Request) { return func(w http.ResponseWriter, r *http.Request) { if r.Body == nil { http.Error(w, "expected a body", http.StatusBadRequest) return } defer r.Body.Close() body, _ := io.ReadAll(r.Body) req := types.DeleteFunctionRequest{} if err := json.Unmarshal(body, &req); err != nil { log.Printf("[Delete] error parsing input: %s", err) http.Error(w, err.Error(), http.StatusBadRequest) return } // namespace moved from the querystring into the body namespace := req.Namespace if namespace == "" { namespace = pkg.DefaultFunctionNamespace } // Check if namespace exists, and it has the openfaas label valid, err := validNamespace(client.NamespaceService(), namespace) if err != nil { http.Error(w, err.Error(), http.StatusBadRequest) return } if !valid { http.Error(w, "namespace not valid", http.StatusBadRequest) return } name := req.FunctionName function, err := GetFunction(client, name, namespace) if err != nil { msg := fmt.Sprintf("function %s.%s not found", name, namespace) log.Printf("[Delete] %s\n", msg) http.Error(w, msg, http.StatusNotFound) return } ctx := namespaces.WithNamespace(context.Background(), namespace) // TODO: this needs to still happen if the task is paused if function.replicas != 0 { err = cninetwork.DeleteCNINetwork(ctx, cni, client, name) if err != nil { log.Printf("[Delete] error removing CNI network for %s, %s\n", name, err) } } if err := service.Remove(ctx, client, name); err != nil { log.Printf("[Delete] error removing %s, %s\n", name, err) http.Error(w, err.Error(), http.StatusInternalServerError) return } log.Printf("[Delete] Removed: %s.%s\n", name, namespace) } }