2018-07-10 14:02:23 +02:00
|
|
|
package crud
|
2018-07-08 22:50:01 +02:00
|
|
|
|
|
|
|
import (
|
2018-07-25 16:24:46 +02:00
|
|
|
"code.vikunja.io/api/models"
|
2018-10-06 15:04:14 +02:00
|
|
|
"github.com/labstack/echo"
|
|
|
|
"net/http"
|
2018-07-08 22:50:01 +02:00
|
|
|
)
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// WebHandler defines the webhandler object
|
2018-07-08 22:50:01 +02:00
|
|
|
// This does web stuff, aka returns json etc. Uses CRUDable Methods to get the data
|
2018-07-10 14:02:23 +02:00
|
|
|
type WebHandler struct {
|
|
|
|
CObject interface {
|
2018-07-09 23:17:19 +02:00
|
|
|
models.CRUDable
|
|
|
|
models.Rights
|
|
|
|
}
|
2018-07-08 22:50:01 +02:00
|
|
|
}
|
2018-10-06 15:04:14 +02: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)
|
|
|
|
}
|