зеркало из https://github.com/Azure/ARO-RP.git
73 строки
2.6 KiB
Go
73 строки
2.6 KiB
Go
package frontend
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the Apache License 2.0.
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/Azure/go-autorest/autorest"
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/Azure/ARO-RP/pkg/api"
|
|
"github.com/Azure/ARO-RP/pkg/database/cosmosdb"
|
|
"github.com/Azure/ARO-RP/pkg/frontend/middleware"
|
|
)
|
|
|
|
func (f *frontend) postAdminOpenShiftDeleteManagedResource(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
log := ctx.Value(middleware.ContextKeyLog).(*logrus.Entry)
|
|
r.URL.Path = filepath.Dir(r.URL.Path)
|
|
|
|
err := f._postAdminOpenShiftClusterDeleteManagedResource(ctx, r, log)
|
|
adminReply(log, w, nil, nil, err)
|
|
}
|
|
|
|
func (f *frontend) _postAdminOpenShiftClusterDeleteManagedResource(ctx context.Context, r *http.Request, log *logrus.Entry) error {
|
|
resType, resName, resGroupName := chi.URLParam(r, "resourceType"), chi.URLParam(r, "resourceName"), chi.URLParam(r, "resourceGroupName")
|
|
managedResourceID := r.URL.Query().Get("managedResourceID")
|
|
resourceID := strings.TrimPrefix(r.URL.Path, "/admin")
|
|
|
|
dbOpenShiftClusters, err := f.dbGroup.OpenShiftClusters()
|
|
if err != nil {
|
|
return api.NewCloudError(http.StatusInternalServerError, api.CloudErrorCodeInternalServerError, "", err.Error())
|
|
}
|
|
|
|
doc, err := dbOpenShiftClusters.Get(ctx, resourceID)
|
|
switch {
|
|
case cosmosdb.IsErrorStatusCode(err, http.StatusNotFound):
|
|
return api.NewCloudError(http.StatusNotFound, api.CloudErrorCodeResourceNotFound, "", "The Resource '%s/%s' under resource group '%s' was not found.", resType, resName, resGroupName)
|
|
case err != nil:
|
|
return err
|
|
}
|
|
|
|
if !strings.HasPrefix(strings.ToLower(managedResourceID), strings.ToLower(doc.OpenShiftCluster.Properties.ClusterProfile.ResourceGroupID)) {
|
|
return api.NewCloudError(http.StatusBadRequest, api.CloudErrorCodeInvalidParameter, "", "The resource %s is not within the cluster's managed resource group %s.", managedResourceID, doc.OpenShiftCluster.Properties.ClusterProfile.ResourceGroupID)
|
|
}
|
|
|
|
subscriptionDoc, err := f.getSubscriptionDocument(ctx, doc.Key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
a, err := f.azureActionsFactory(log, f.env, doc.OpenShiftCluster, subscriptionDoc)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = a.ResourceDeleteAndWait(ctx, managedResourceID)
|
|
if err != nil {
|
|
if detailedErr, ok := err.(autorest.DetailedError); ok &&
|
|
detailedErr.StatusCode == http.StatusNotFound {
|
|
return api.NewCloudError(http.StatusNotFound, api.CloudErrorCodeNotFound, "", "The resource '%s' could not be found.", managedResourceID)
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|