2018-06-11 15:13:19 +02:00
package resourcecontrols
import (
"net/http"
2018-09-10 12:01:38 +02:00
httperror "github.com/portainer/libhttp/error"
"github.com/portainer/libhttp/request"
"github.com/portainer/libhttp/response"
2019-03-21 14:20:14 +13:00
"github.com/portainer/portainer/api"
2018-06-11 15:13:19 +02:00
)
// DELETE request on /api/resource_controls/:id
func ( handler * Handler ) resourceControlDelete ( w http . ResponseWriter , r * http . Request ) * httperror . HandlerError {
resourceControlID , err := request . RetrieveNumericRouteVariableValue ( r , "id" )
if err != nil {
return & httperror . HandlerError { http . StatusBadRequest , "Invalid resource control identifier route variable" , err }
}
2019-11-13 12:41:42 +13:00
_ , err = handler . ResourceControlService . ResourceControl ( portainer . ResourceControlID ( resourceControlID ) )
2018-06-19 13:15:10 +02:00
if err == portainer . ErrObjectNotFound {
2018-06-11 15:13:19 +02:00
return & httperror . HandlerError { http . StatusNotFound , "Unable to find a resource control with the specified identifier inside the database" , err }
} else if err != nil {
return & httperror . HandlerError { http . StatusInternalServerError , "Unable to find a resource control with with the specified identifier inside the database" , err }
}
err = handler . ResourceControlService . DeleteResourceControl ( portainer . ResourceControlID ( resourceControlID ) )
if err != nil {
return & httperror . HandlerError { http . StatusInternalServerError , "Unable to remove the resource control from the database" , err }
}
return response . Empty ( w )
}