api/routes/crud/read_all.go

28 lines
756 B
Go

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(&currentUser)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
}
return ctx.JSON(http.StatusOK, lists)
}