-
Notifications
You must be signed in to change notification settings - Fork 0
/
response.go
71 lines (61 loc) · 1.15 KB
/
response.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
70
71
package forest
import (
"fmt"
"net/http"
)
type (
Error struct {
Code int `json:"-"`
Message interface{} `json:"message"`
}
Response struct {
http.ResponseWriter
Size int
Status int
}
)
const noWritten = -1
func (e *Error) Error() string {
return fmt.Sprintf("code=%d, message=%v", e.Code, e.Message)
}
func NewError(code int, message ...interface{}) *Error {
e := &Error{
Code: code,
}
if len(message) > 0 {
e.Message = message[0]
} else {
e.Message = http.StatusText(code)
}
return e
}
func (r *Response) Written() bool {
return r.Size != noWritten
}
func (r *Response) WriteHeader(code int) {
if r.Written() {
return
}
r.Size = 0
r.Status = code
r.ResponseWriter.WriteHeader(r.Status)
}
func (r *Response) Write(b []byte) (n int, err error) {
if !r.Written() {
if r.Status == 0 {
r.Status = http.StatusOK
}
r.WriteHeader(r.Status)
}
n, err = r.ResponseWriter.Write(b)
r.Size += n
return
}
func (r *Response) reset(w http.ResponseWriter) {
r.Size = noWritten
r.Status = http.StatusOK
r.ResponseWriter = w
}
func NewResponse(w http.ResponseWriter) *Response {
return &Response{ResponseWriter: w}
}