package crud import ( "code.vikunja.io/api/pkg/log" "code.vikunja.io/api/pkg/models" "github.com/labstack/echo" "net/http" ) // DeleteWeb is the web handler to delete something func (c *WebHandler) DeleteWeb(ctx echo.Context) error { // Get our model currentStruct := c.EmptyStruct() // Bind params to struct if err := ParamBinder(currentStruct, ctx); err != nil { return echo.NewHTTPError(http.StatusBadRequest, "Invalid URL param.") } // Check if the user has the right to delete currentUser, err := models.GetCurrentUser(ctx) if err != nil { return echo.NewHTTPError(http.StatusInternalServerError) } if !currentStruct.CanDelete(¤tUser) { log.Log.Noticef("%s [ID: %d] tried to delete while not having the rights for it", currentUser.Username, currentUser.ID) return echo.NewHTTPError(http.StatusForbidden) } err = currentStruct.Delete() if err != nil { return HandleHTTPError(err) } return ctx.JSON(http.StatusOK, models.Message{"Successfully deleted."}) }