vikunja-api/routes/crud/delete.go

37 lines
942 B
Go
Raw Normal View History

2018-07-11 01:45:11 +02:00
package crud
import (
2018-07-25 16:24:46 +02:00
"code.vikunja.io/api/models"
2018-07-11 01:45:11 +02:00
"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.")
2018-07-11 01:45:11 +02:00
}
// Check if the user has the right to delete
user, err := models.GetCurrentUser(ctx)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError)
}
if !currentStruct.CanDelete(&user) {
2018-09-19 08:35:53 +02:00
models.Log.Noticef("%s [ID: %d] tried to delete while not having the rights for it", user.Username, user.ID)
return echo.NewHTTPError(http.StatusForbidden)
}
2018-07-11 01:45:11 +02:00
err = currentStruct.Delete()
2018-07-11 01:45:11 +02:00
if err != nil {
2018-10-06 15:04:14 +02:00
return HandleHTTPError(err)
2018-07-11 01:45:11 +02:00
}
return ctx.JSON(http.StatusOK, models.Message{"Successfully deleted."})
}