package crud import ( "code.vikunja.io/api/models" "github.com/labstack/echo" "net/http" ) // ReadAllWeb is the webhandler to get all objects of a type func (c *WebHandler) ReadAllWeb(ctx echo.Context) error { currentUser, err := models.GetCurrentUser(ctx) if err != nil { return echo.NewHTTPError(http.StatusInternalServerError, "Could not determine the current user.") } // Get the object & bind params to struct if err := ParamBinder(c.CObject, ctx); err != nil { return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.") } lists, err := c.CObject.ReadAll(¤tUser) if err != nil { models.Log.Error(err.Error()) if models.IsErrNeedToHaveListReadAccess(err) { return echo.NewHTTPError(http.StatusForbidden, "You need to have read access to this list.") } if models.IsErrNamespaceDoesNotExist(err) { return echo.NewHTTPError(http.StatusNotFound, "This namespace does not exist.") } return echo.NewHTTPError(http.StatusInternalServerError, "An error occurred.") } return ctx.JSON(http.StatusOK, lists) }