2018-07-11 01:45:11 +02:00
|
|
|
package crud
|
|
|
|
|
|
|
|
import (
|
2018-07-11 02:13:53 +02:00
|
|
|
"git.kolaente.de/konrad/list/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 {
|
2018-07-18 08:15:38 +02:00
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
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-07-16 08:18:15 +02:00
|
|
|
if models.IsErrTeamDoesNotExist(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusNotFound, "This team does not exist.")
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|