-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patherror.go
69 lines (61 loc) · 1.48 KB
/
error.go
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2012 by sdm. All rights reserved.
// license that can be found in the LICENSE file.
package wk
import (
"fmt"
"net/http"
"strings"
)
// ErrorResult return error to client
type ErrorResult struct {
Message string
Stack []byte
State interface{}
}
// String
func (e *ErrorResult) String() string {
if e == nil {
return "<nil>"
}
return fmt.Sprintln(e.Message, e.Stack, e.State)
}
// Error return *ErrorResult
func Error(message string) *ErrorResult {
return &ErrorResult{
Message: message,
}
}
// Execute write response
func (e *ErrorResult) Execute(ctx *HttpContext) error {
if ctx.Server.Config.ErrorPageEnable {
accetps := ctx.Accept()
if strings.Contains(accetps, "text/html") {
if f := ctx.Server.MapPath("public/error.html"); isFileExists(f) {
http.ServeFile(ctx.Resonse, ctx.Request, f)
return nil
}
if ctx.Server.Config.ViewEnable {
if f := ctx.Server.MapPath("views/error.html"); isFileExists(f) {
ctx.ViewData["ctx"] = ctx
ctx.ViewData["error"] = e
return executeViewFile("error.html", ctx)
}
}
}
if strings.Contains(accetps, "text/plain") {
if f := ctx.Server.MapPath("public/error.txt"); isFileExists(f) {
http.ServeFile(ctx.Resonse, ctx.Request, f)
return nil
}
}
}
http.Error(ctx.Resonse, e.Message, http.StatusInternalServerError)
return nil
}
// // executeErrorResult
// func executeErrorResult(ctx *HttpContext, err error) {
// e := &ErrorResult{
// Err: err,
// }
// e.Execute(ctx)
// }