-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_view.go
More file actions
76 lines (61 loc) · 1.33 KB
/
error_view.go
File metadata and controls
76 lines (61 loc) · 1.33 KB
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
70
71
72
73
74
75
76
package error_view
import (
"encoding/json"
"io"
"net/http"
"github.com/pkg/errors"
"github.com/toolsparty/mvc"
"github.com/valyala/fasthttp"
)
type ErrorView struct {
*mvc.BaseView
}
func (ErrorView) Name() (string, error) {
return "error", nil
}
func (view *ErrorView) Render(w io.Writer, tpl string, params mvc.ViewParams) error {
e := &errResponse{
Code: http.StatusInternalServerError,
Message: "Internal Server Error",
Details: "Error Not Found",
}
if wr, ok := w.(*fasthttp.RequestCtx); ok {
defer func() {
wr.SetContentType("application/json")
wr.SetStatusCode(e.Code)
}()
}
if wr, ok := w.(http.ResponseWriter); ok {
defer func() {
wr.WriteHeader(e.Code)
}()
}
err, ok := params["error"].(error)
if !ok {
if err := view.toJSON(w, &response{Error: e}); err != nil {
return errors.Wrap(err, "encoding to json failed")
}
return errors.New("error not found")
}
he, ok := err.(HTTPError)
if !ok {
e.Details = err.Error()
return view.toJSON(w, &response{
Error: e,
})
}
e.Code = he.Code()
e.Message = he.Message()
e.Details = he.Error()
return view.toJSON(w, &response{
Error: e,
})
}
func (ErrorView) toJSON(w io.Writer, b interface{}) error {
enc := json.NewEncoder(w)
err := enc.Encode(b)
if err != nil {
return errors.Wrap(err, "encoding json failed")
}
return nil
}