1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
// Copyright (c) 2012-2016 The Revel Framework Authors, All rights reserved.
// Revel Framework source code and usage is governed by a MIT style
// license that can be found in the LICENSE file.
package revel
import (
"fmt"
"net/http"
"runtime/debug"
)
// PanicFilter wraps the action invocation in a protective defer blanket that
// converts panics into 500 error pages.
func PanicFilter(c *Controller, fc []Filter) {
defer func() {
if err := recover(); err != nil {
handleInvocationPanic(c, err)
}
}()
fc[0](c, fc[1:])
}
// This function handles a panic in an action invocation.
// It cleans up the stack trace, logs it, and displays an error page.
func handleInvocationPanic(c *Controller, err interface{}) {
error := NewErrorFromPanic(err)
if error != nil {
utilLog.Error("PanicFilter: Caught panic", "error", err, "stack", error.Stack)
if DevMode {
fmt.Println(err)
fmt.Println(error.Stack)
}
} else {
utilLog.Error("PanicFilter: Caught panic, unable to determine stack location", "error", err, "stack", string(debug.Stack()))
if DevMode {
fmt.Println(err)
fmt.Println("stack", string(debug.Stack()))
}
}
if error == nil && DevMode {
// Only show the sensitive information in the debug stack trace in development mode, not production
c.Response.SetStatus(http.StatusInternalServerError)
_, _ = c.Response.GetWriter().Write(debug.Stack())
return
}
c.Result = c.RenderError(error)
}
|