vikunja-api/routes/crud/read_one.go

32 lines
671 B
Go
Raw Normal View History

2018-07-11 01:45:11 +02:00
package crud
import (
"git.kolaente.de/konrad/list/models"
"github.com/labstack/echo"
2018-07-11 01:45:11 +02:00
"net/http"
)
// ReadOneWeb is the webhandler to get one object
func (c *WebHandler) ReadOneWeb(ctx echo.Context) error {
// Get the ID
id, err := models.GetIntURLParam("id", ctx)
if err != nil {
2018-07-11 14:27:16 +02:00
return echo.NewHTTPError(http.StatusBadRequest, "Invalid ID.")
2018-07-11 01:45:11 +02:00
}
// TODO check rights
// Get our object
err = c.CObject.ReadOne(id)
if err != nil {
if models.IsErrListDoesNotExist(err) {
2018-07-11 14:27:16 +02:00
return echo.NewHTTPError(http.StatusNotFound)
2018-07-11 01:45:11 +02:00
}
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, c.CObject)
}