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"
|
2018-07-14 17:46:01 +02:00
|
|
|
"reflect"
|
2018-07-11 01:45:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// CreateWeb is the handler to create an object
|
|
|
|
func (c *WebHandler) CreateWeb(ctx echo.Context) error {
|
2018-07-14 17:34:59 +02:00
|
|
|
// Re-initialize our model
|
2018-07-14 17:46:01 +02:00
|
|
|
p := reflect.ValueOf(c.CObject).Elem()
|
|
|
|
p.Set(reflect.Zero(p.Type()))
|
2018-07-14 17:34:59 +02:00
|
|
|
|
2018-07-18 08:56:19 +02:00
|
|
|
// Get the object & bind params to struct
|
|
|
|
if err := ParamBinder(c.CObject, ctx); err != nil {
|
2018-07-11 14:27:16 +02:00
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.")
|
2018-07-11 01:45:11 +02: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.")
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:16:32 +02:00
|
|
|
// Check rights
|
2018-07-18 08:56:19 +02:00
|
|
|
if !c.CObject.CanCreate(¤tUser) {
|
2018-07-12 23:16:32 +02:00
|
|
|
return echo.NewHTTPError(http.StatusForbidden)
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
// Create
|
2018-07-18 08:56:19 +02:00
|
|
|
err = c.CObject.Create(¤tUser)
|
2018-07-11 01:45:11 +02:00
|
|
|
if err != nil {
|
2018-07-11 02:13:53 +02:00
|
|
|
if models.IsErrListDoesNotExist(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "The list does not exist.")
|
|
|
|
}
|
2018-07-26 10:29:09 +02:00
|
|
|
if models.IsErrListTitleCannotBeEmpty(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "You must provide at least a list title.")
|
|
|
|
}
|
2018-08-30 08:09:17 +02:00
|
|
|
if models.IsErrListTaskCannotBeEmpty(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "You must provide at least a list task text.")
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|
|
|
|
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.")
|
|
|
|
}
|
|
|
|
|
2018-07-12 00:09:16 +02:00
|
|
|
if models.IsErrNamespaceNameCannotBeEmpty(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusNotFound, "The namespace name cannot be empty.")
|
|
|
|
}
|
|
|
|
|
2018-07-14 18:29:24 +02:00
|
|
|
if models.IsErrTeamNameCannotBeEmpty(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "The team name cannot be empty.")
|
|
|
|
}
|
|
|
|
|
2018-07-24 17:46:32 +02:00
|
|
|
if models.IsErrTeamAlreadyHasAccess(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This team already has access.")
|
|
|
|
}
|
2018-07-26 10:06:41 +02:00
|
|
|
if models.IsErrUserIsMemberOfTeam(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This user is already a member of that team.")
|
|
|
|
}
|
2018-07-24 17:46:32 +02:00
|
|
|
|
2018-08-30 08:58:09 +02:00
|
|
|
if models.IsErrUserAlreadyHasAccess(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This user already has access to this list.")
|
|
|
|
}
|
2018-09-04 20:15:24 +02:00
|
|
|
if models.IsErrUserAlreadyHasNamespaceAccess(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "This user already has access to this namespace.")
|
|
|
|
}
|
2018-08-30 08:58:09 +02:00
|
|
|
if models.IsErrInvalidUserRight(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "The right is invalid.")
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
|
2018-09-06 18:57:28 +02:00
|
|
|
return ctx.JSON(http.StatusCreated, c.CObject)
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|