mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
package resourcecontrols
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	httperror "github.com/portainer/libhttp/error"
 | 
						|
	"github.com/portainer/libhttp/request"
 | 
						|
	"github.com/portainer/libhttp/response"
 | 
						|
	portainer "github.com/portainer/portainer/api"
 | 
						|
)
 | 
						|
 | 
						|
// @id ResourceControlDelete
 | 
						|
// @summary Remove a resource control
 | 
						|
// @description Remove a resource control.
 | 
						|
// @description **Access policy**: administrator
 | 
						|
// @tags resource_controls
 | 
						|
// @security ApiKeyAuth
 | 
						|
// @security jwt
 | 
						|
// @param id path int true "Resource control identifier"
 | 
						|
// @success 204 "Success"
 | 
						|
// @failure 400 "Invalid request"
 | 
						|
// @failure 404 "Resource control not found"
 | 
						|
// @failure 500 "Server error"
 | 
						|
// @router /resource_controls/{id} [delete]
 | 
						|
func (handler *Handler) resourceControlDelete(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
 | 
						|
	resourceControlID, err := request.RetrieveNumericRouteVariableValue(r, "id")
 | 
						|
	if err != nil {
 | 
						|
		return httperror.BadRequest("Invalid resource control identifier route variable", err)
 | 
						|
	}
 | 
						|
 | 
						|
	_, err = handler.DataStore.ResourceControl().Read(portainer.ResourceControlID(resourceControlID))
 | 
						|
	if handler.DataStore.IsErrObjectNotFound(err) {
 | 
						|
		return httperror.NotFound("Unable to find a resource control with the specified identifier inside the database", err)
 | 
						|
	} else if err != nil {
 | 
						|
		return httperror.InternalServerError("Unable to find a resource control with with the specified identifier inside the database", err)
 | 
						|
	}
 | 
						|
 | 
						|
	err = handler.DataStore.ResourceControl().Delete(portainer.ResourceControlID(resourceControlID))
 | 
						|
	if err != nil {
 | 
						|
		return httperror.InternalServerError("Unable to remove the resource control from the database", err)
 | 
						|
	}
 | 
						|
 | 
						|
	return response.Empty(w)
 | 
						|
}
 |