api/routes/crud/helper.go

27 lines
630 B
Go
Raw Normal View History

2018-07-10 12:02:23 +00:00
package crud
import (
2018-07-25 14:24:46 +00:00
"code.vikunja.io/api/models"
2018-10-06 13:04:14 +00:00
"github.com/labstack/echo"
"net/http"
)
2018-07-10 12:02:23 +00:00
// WebHandler defines the webhandler object
// This does web stuff, aka returns json etc. Uses CRUDable Methods to get the data
2018-07-10 12:02:23 +00:00
type WebHandler struct {
CObject interface {
models.CRUDable
models.Rights
}
}
2018-10-06 13:04:14 +00:00
// HandleHTTPError does what it says
func HandleHTTPError(err error) *echo.HTTPError {
if a, has := err.(models.HTTPErrorProcessor); has {
errDetails := a.HTTPError()
return echo.NewHTTPError(errDetails.Code, errDetails)
}
models.Log.Error(err.Error())
return echo.NewHTTPError(http.StatusInternalServerError)
}