vikunja/routes/crud/update.go

38 lines
1.0 KiB
Go
Raw Normal View History

2018-07-10 23:45:11 +00:00
package crud
import (
2018-07-25 14:24:46 +00:00
"code.vikunja.io/api/models"
2018-07-10 23:45:11 +00:00
"github.com/labstack/echo"
"net/http"
)
// UpdateWeb is the webhandler to update an object
func (c *WebHandler) UpdateWeb(ctx echo.Context) error {
// Get our model
currentStruct := c.EmptyStruct()
// Get the object & bind params to struct
if err := ParamBinder(currentStruct, ctx); err != nil {
2018-07-11 12:27:16 +00:00
return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.")
2018-07-10 23:45:11 +00:00
}
// Check if the user has the right to do that
currentUser, err := models.GetCurrentUser(ctx)
if err != nil {
2018-07-11 12:27:16 +00:00
return echo.NewHTTPError(http.StatusInternalServerError, "Could not determine the current user.")
2018-07-10 23:45:11 +00:00
}
if !currentStruct.CanUpdate(&currentUser) {
2018-09-19 06:35:53 +00:00
models.Log.Noticef("%s [ID: %d] tried to update while not having the rights for it", currentUser.Username, currentUser.ID)
2018-07-12 21:07:03 +00:00
return echo.NewHTTPError(http.StatusForbidden)
}
2018-07-10 23:45:11 +00:00
// Do the update
err = currentStruct.Update()
2018-07-10 23:45:11 +00:00
if err != nil {
2018-10-06 13:04:14 +00:00
return HandleHTTPError(err)
2018-07-10 23:45:11 +00:00
}
return ctx.JSON(http.StatusOK, currentStruct)
2018-07-10 23:45:11 +00:00
}