8f2a24298d
+ lint & fmt
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package crud
|
|
|
|
import (
|
|
"code.vikunja.io/api/models"
|
|
"fmt"
|
|
"github.com/labstack/echo"
|
|
"net/http"
|
|
)
|
|
|
|
// ReadOneWeb is the webhandler to get one object
|
|
func (c *WebHandler) ReadOneWeb(ctx echo.Context) error {
|
|
|
|
// 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.")
|
|
}
|
|
|
|
// Get our object
|
|
err := c.CObject.ReadOne()
|
|
if err != nil {
|
|
if models.IsErrListDoesNotExist(err) {
|
|
return echo.NewHTTPError(http.StatusNotFound)
|
|
}
|
|
|
|
if models.IsErrNamespaceDoesNotExist(err) {
|
|
return echo.NewHTTPError(http.StatusNotFound)
|
|
}
|
|
|
|
if models.IsErrTeamDoesNotExist(err) {
|
|
return echo.NewHTTPError(http.StatusNotFound)
|
|
}
|
|
|
|
fmt.Println(err)
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
|
|
}
|
|
|
|
// Check rights
|
|
// We can only check the rights on a full object, which is why we need to check it afterwards
|
|
currentUser, err := models.GetCurrentUser(ctx)
|
|
if err != nil {
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Could not determine the current user.")
|
|
}
|
|
if !c.CObject.CanRead(¤tUser) {
|
|
return echo.NewHTTPError(http.StatusForbidden, "You don't have the right to see this")
|
|
}
|
|
|
|
return ctx.JSON(http.StatusOK, c.CObject)
|
|
}
|