mirror of https://github.com/portainer/portainer
93 lines
2.8 KiB
Go
93 lines
2.8 KiB
Go
package edgegroups
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/libhttp/request"
|
|
"github.com/portainer/libhttp/response"
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
"github.com/portainer/portainer/pkg/featureflags"
|
|
)
|
|
|
|
// @id EdgeGroupDelete
|
|
// @summary Deletes an EdgeGroup
|
|
// @description **Access policy**: administrator
|
|
// @tags edge_groups
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @param id path int true "EdgeGroup Id"
|
|
// @success 204
|
|
// @failure 503 "Edge compute features are disabled"
|
|
// @failure 500
|
|
// @router /edge_groups/{id} [delete]
|
|
func (handler *Handler) edgeGroupDelete(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
edgeGroupID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
if err != nil {
|
|
return httperror.BadRequest("Invalid Edge group identifier route variable", err)
|
|
}
|
|
|
|
if featureflags.IsEnabled(portainer.FeatureNoTx) {
|
|
err = deleteEdgeGroup(handler.DataStore, portainer.EdgeGroupID(edgeGroupID))
|
|
} else {
|
|
err = handler.DataStore.UpdateTx(func(tx dataservices.DataStoreTx) error {
|
|
return deleteEdgeGroup(tx, portainer.EdgeGroupID(edgeGroupID))
|
|
})
|
|
}
|
|
|
|
if err != nil {
|
|
var httpErr *httperror.HandlerError
|
|
if errors.As(err, &httpErr) {
|
|
return httpErr
|
|
}
|
|
|
|
return httperror.InternalServerError("Unexpected error", err)
|
|
}
|
|
|
|
return response.Empty(w)
|
|
}
|
|
|
|
func deleteEdgeGroup(tx dataservices.DataStoreTx, ID portainer.EdgeGroupID) error {
|
|
_, err := tx.EdgeGroup().EdgeGroup(ID)
|
|
if tx.IsErrObjectNotFound(err) {
|
|
return httperror.NotFound("Unable to find an Edge group with the specified identifier inside the database", err)
|
|
} else if err != nil {
|
|
return httperror.InternalServerError("Unable to find an Edge group with the specified identifier inside the database", err)
|
|
}
|
|
|
|
edgeStacks, err := tx.EdgeStack().EdgeStacks()
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to retrieve Edge stacks from the database", err)
|
|
}
|
|
|
|
for _, edgeStack := range edgeStacks {
|
|
for _, groupID := range edgeStack.EdgeGroups {
|
|
if groupID == ID {
|
|
return httperror.NewError(http.StatusConflict, "Edge group is used by an Edge stack", errors.New("edge group is used by an Edge stack"))
|
|
}
|
|
}
|
|
}
|
|
|
|
edgeJobs, err := tx.EdgeJob().EdgeJobs()
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to retrieve Edge jobs from the database", err)
|
|
}
|
|
|
|
for _, edgeJob := range edgeJobs {
|
|
for _, groupID := range edgeJob.EdgeGroups {
|
|
if groupID == ID {
|
|
return httperror.NewError(http.StatusConflict, "Edge group is used by an Edge job", errors.New("edge group is used by an Edge job"))
|
|
}
|
|
}
|
|
}
|
|
|
|
err = tx.EdgeGroup().DeleteEdgeGroup(ID)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to remove the Edge group from the database", err)
|
|
}
|
|
|
|
return nil
|
|
}
|