vikunja-api/routes/crud/create.go

56 lines
1.6 KiB
Go
Raw Normal View History

2018-07-10 23:45:11 +00:00
package crud
import (
"git.kolaente.de/konrad/list/models"
2018-07-10 23:45:11 +00:00
"github.com/labstack/echo"
"net/http"
)
// CreateWeb is the handler to create an object
func (c *WebHandler) CreateWeb(ctx echo.Context) error {
// Get the object
if err := ctx.Bind(&c.CObject); err != nil {
2018-07-11 12:27:16 +00:00
return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.")
2018-07-10 23:45:11 +00:00
}
// Get the user to pass for later checks
currentUser, err := models.GetCurrentUser(ctx)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Could not determine the current user.")
}
// Get an ID if we have one
2018-07-11 00:40:29 +00:00
var id int64
2018-07-10 23:45:11 +00:00
if ctx.Param("id") != "" {
id, err = models.GetIntURLParam("id", ctx)
2018-07-10 23:45:11 +00:00
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, "Bad id.")
2018-07-10 23:45:11 +00:00
}
}
// Create
err = c.CObject.Create(&currentUser, id)
2018-07-10 23:45:11 +00:00
if err != nil {
if models.IsErrListDoesNotExist(err) {
return echo.NewHTTPError(http.StatusBadRequest, "The list does not exist.")
}
if models.IsErrListItemCannotBeEmpty(err) {
return echo.NewHTTPError(http.StatusBadRequest, "You must provide at least a list item text.")
}
if models.IsErrUserDoesNotExist(err) {
return echo.NewHTTPError(http.StatusBadRequest, "The user does not exist.")
}
if models.IsErrNeedToBeListWriter(err) {
return echo.NewHTTPError(http.StatusForbidden, "You need to have write access on that list.")
}
if models.IsErrNamespaceNameCannotBeEmpty(err) {
return echo.NewHTTPError(http.StatusNotFound, "The namespace name cannot be empty.")
}
2018-07-10 23:45:11 +00:00
return echo.NewHTTPError(http.StatusInternalServerError)
}
return ctx.JSON(http.StatusOK, c.CObject)
}