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 {
|
2018-07-18 08:15:38 +02:00
|
|
|
// Bind params to struct
|
|
|
|
if err := ParamBinder(c.CObject, 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)
|
|
|
|
}
|
2018-07-18 08:15:38 +02:00
|
|
|
if !c.CObject.CanDelete(&user) {
|
2018-07-12 21:20:24 +02:00
|
|
|
return echo.NewHTTPError(http.StatusForbidden)
|
|
|
|
}
|
2018-07-11 01:45:11 +02:00
|
|
|
|
2018-07-18 08:15:38 +02:00
|
|
|
err = c.CObject.Delete()
|
2018-07-11 01:45:11 +02:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrNeedToBeListAdmin(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusForbidden, "You need to be the list admin to delete a list.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if models.IsErrListDoesNotExist(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusNotFound, "This list does not exist.")
|
|
|
|
}
|
2018-08-30 19:00:27 +02:00
|
|
|
if models.IsErrTeamDoesNotHaveAccessToList(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This team does not have access to the list.")
|
|
|
|
}
|
2018-07-11 01:45:11 +02:00
|
|
|
|
2018-07-16 08:18:15 +02:00
|
|
|
if models.IsErrTeamDoesNotExist(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusNotFound, "This team does not exist.")
|
|
|
|
}
|
|
|
|
|
2018-07-27 19:20:49 +02:00
|
|
|
if models.IsErrCannotDeleteLastTeamMember(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "You cannot delete the last member of a team.")
|
|
|
|
}
|
|
|
|
|
2018-08-30 18:52:12 +02:00
|
|
|
if models.IsErrUserDoesNotHaveAccessToList(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This user does not have access to the list.")
|
|
|
|
}
|
|
|
|
|
2018-09-04 20:15:24 +02:00
|
|
|
if models.IsErrUserDoesNotHaveAccessToNamespace(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This user does not have access to the namespace.")
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.JSON(http.StatusOK, models.Message{"Successfully deleted."})
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|