30 lines
771 B
Go
30 lines
771 B
Go
package crud
|
|
|
|
import (
|
|
"code.vikunja.io/api/pkg/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 {
|
|
// Get our model
|
|
currentStruct := c.EmptyStruct()
|
|
|
|
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(currentStruct, ctx); err != nil {
|
|
return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.")
|
|
}
|
|
|
|
lists, err := currentStruct.ReadAll(¤tUser)
|
|
if err != nil {
|
|
return HandleHTTPError(err)
|
|
}
|
|
|
|
return ctx.JSON(http.StatusOK, lists)
|
|
}
|