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 02:13:53 +02:00
|
|
|
"github.com/labstack/echo"
|
|
|
|
"net/http"
|
2018-07-11 01:45:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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 {
|
2018-07-11 14:27:16 +02:00
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Could not determine the current user.")
|
2018-07-11 01:45:11 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 22:06:29 +02:00
|
|
|
// 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.")
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
lists, err := c.CObject.ReadAll(¤tUser)
|
|
|
|
if err != nil {
|
2018-08-30 08:58:09 +02:00
|
|
|
if models.IsErrNeedToHaveListReadAccess(err) {
|
|
|
|
return echo.NewHTTPError(http.StatusForbidden, "You need to have read access to this list.")
|
|
|
|
}
|
|
|
|
|
2018-07-11 14:27:16 +02:00
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
|
2018-07-11 01:45:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.JSON(http.StatusOK, lists)
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|