31 lines
906 B
Go
31 lines
906 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(¤tUser)
|
|
if err != nil {
|
|
if models.IsErrNeedToHaveListReadAccess(err) {
|
|
return echo.NewHTTPError(http.StatusForbidden, "You need to have read access to this list.")
|
|
}
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
|
|
}
|
|
|
|
return ctx.JSON(http.StatusOK, lists)
|
|
}
|