1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/errors.go

41 lines
839 B
Go
Raw Normal View History

2017-10-04 21:44:58 +02:00
package main
import (
"fmt"
"runtime"
"strings"
)
type imgproxyError struct {
StatusCode int
Message string
PublicMessage string
}
2018-11-20 14:53:44 +02:00
func (e *imgproxyError) Error() string {
2017-10-04 21:44:58 +02:00
return e.Message
}
2018-11-20 14:53:44 +02:00
func newError(status int, msg string, pub string) *imgproxyError {
return &imgproxyError{status, msg, pub}
2017-10-04 21:44:58 +02:00
}
2018-11-20 14:53:44 +02:00
func newUnexpectedError(err error, skip int) *imgproxyError {
2017-10-04 21:44:58 +02:00
msg := fmt.Sprintf("Unexpected error: %s\n%s", err, stacktrace(skip+1))
2018-11-20 14:53:44 +02:00
return &imgproxyError{500, msg, "Internal error"}
2017-10-04 21:44:58 +02:00
}
func stacktrace(skip int) string {
callers := make([]uintptr, 10)
n := runtime.Callers(skip+1, callers)
lines := make([]string, n)
for i, pc := range callers[:n] {
f := runtime.FuncForPC(pc)
file, line := f.FileLine(pc)
lines[i] = fmt.Sprintf("%s:%d %s", file, line, f.Name())
}
return strings.Join(lines, "\n")
}