2018-07-11 01:45:11 +02:00
|
|
|
package crud
|
|
|
|
|
|
|
|
import (
|
2018-10-31 13:42:38 +01:00
|
|
|
"code.vikunja.io/api/pkg/log"
|
|
|
|
"code.vikunja.io/api/pkg/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 {
|
2018-10-11 17:53:59 +02:00
|
|
|
|
|
|
|
// Get our model
|
|
|
|
currentStruct := c.EmptyStruct()
|
|
|
|
|
2018-07-18 08:15:38 +02:00
|
|
|
// Bind params to struct
|
2018-10-11 17:53:59 +02:00
|
|
|
if err := ParamBinder(currentStruct, ctx); err != nil {
|
2018-07-18 08:15:38 +02:00
|
|
|
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
|
2018-10-31 13:42:38 +01:00
|
|
|
currentUser, err := models.GetCurrentUser(ctx)
|
2018-07-11 01:45:11 +02:00
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError)
|
|
|
|
}
|
2018-10-31 13:42:38 +01:00
|
|
|
if !currentStruct.CanDelete(¤tUser) {
|
|
|
|
log.Log.Noticef("%s [ID: %d] tried to delete while not having the rights for it", currentUser.Username, currentUser.ID)
|
2018-07-12 21:20:24 +02:00
|
|
|
return echo.NewHTTPError(http.StatusForbidden)
|
|
|
|
}
|
2018-07-11 01:45:11 +02:00
|
|
|
|
2018-10-11 17:53:59 +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."})
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|