40 lines
835 B
Go
40 lines
835 B
Go
package ginext
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gin-gonic/gin"
|
|
"gogs.mikescher.com/BlackForestBytes/goext/exerr"
|
|
)
|
|
|
|
type WHandlerFunc func(PreContext) HTTPResponse
|
|
|
|
func Wrap(w *GinWrapper, fn WHandlerFunc) gin.HandlerFunc {
|
|
|
|
return func(g *gin.Context) {
|
|
|
|
reqctx := g.Request.Context()
|
|
|
|
wrap, stackTrace, panicObj := callPanicSafe(fn, PreContext{wrapper: w, ginCtx: g})
|
|
if panicObj != nil {
|
|
|
|
fmt.Printf("\n======== ======== STACKTRACE ======== ========\n%s\n======== ======== ======== ========\n\n", stackTrace)
|
|
|
|
err := exerr.
|
|
New(exerr.TypePanic, "Panic occured (in gin handler)").
|
|
Any("panicObj", panicObj).
|
|
Str("trace", stackTrace).
|
|
Build()
|
|
|
|
wrap = Error(err)
|
|
}
|
|
|
|
if g.Writer.Written() {
|
|
panic("Writing in WrapperFunc is not supported")
|
|
}
|
|
|
|
if reqctx.Err() == nil {
|
|
wrap.Write(g)
|
|
}
|
|
}
|
|
}
|