-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.go
185 lines (167 loc) · 3.75 KB
/
request.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package stgin
import (
"encoding/json"
"encoding/xml"
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"time"
)
type RequestContext struct {
Url string
QueryParams map[string][]string
PathParams Params
Headers http.Header
Body *RequestBody
receivedAt time.Time
Method string
ContentLength int64
Host string
MultipartForm func() *multipart.Form
Scheme string
RemoteAddr string
underlying *http.Request
}
func (c RequestContext) Cookies() []*http.Cookie {
return c.underlying.Cookies()
}
func (c RequestContext) Cookie(name string) (*http.Cookie, error) {
return c.underlying.Cookie(name)
}
func (c RequestContext) AddCookie(cookie *http.Cookie) {
c.underlying.AddCookie(cookie)
}
func (c RequestContext) GetPathParam(name string) (string, bool) {
var res string
var found bool
for _, param := range c.PathParams {
if param.key == name {
found = true
res = param.value
break
}
}
return res, found
}
func (c RequestContext) MustGetPathParam(name string) string {
value, found := c.GetQuery(name)
if !found {
panic(fmt.Sprintf("used MustGetPathParam while path parameter %s does not exist", name))
}
return value
}
func (c RequestContext) GetQueries(name string) []string {
var res []string
for queryName, values := range c.QueryParams {
if queryName == name {
res = values
}
}
return res
}
func (c RequestContext) GetQuery(name string) (string, bool) {
allValues := c.GetQueries(name)
if len(allValues) == 1 {
return allValues[0], true
} else {
return "", false
}
}
type RequestBody struct {
underlying io.Reader
underlyingBytes []byte
hasFilledBytes bool
}
func bodyFromBytes(bytes []byte) *RequestBody {
return &RequestBody{
underlying: nil,
underlyingBytes: bytes,
hasFilledBytes: true,
}
}
func bodyFromReader(reader io.Reader) *RequestBody {
return &RequestBody{
underlying: reader,
underlyingBytes: nil,
hasFilledBytes: false,
}
}
func bodyFromReadCloser(reader io.ReadCloser) (*RequestBody, error) {
defer func(r io.ReadCloser) {
err := r.Close()
if err != nil {
_ = stginLogger.Err("could not close reader stream from request")
return
}
}(reader)
bytes, err := ioutil.ReadAll(reader)
if err != nil {
return nil, err
} else {
return bodyFromBytes(bytes), nil
}
}
func (body *RequestBody) fillAndGetBytes() ([]byte, *MalformedRequestContext) {
if body.hasFilledBytes {
return body.underlyingBytes, nil
} else {
bytes, err := ioutil.ReadAll(body.underlying)
if err != nil {
return []byte{}, &MalformedRequestContext{details: err.Error()}
}
body.underlyingBytes = bytes
body.hasFilledBytes = true
return bytes, nil
}
}
func (body *RequestBody) SafeJSONInto(a any) error {
bytes, err := body.fillAndGetBytes()
if err != nil {
return *err
}
if unmarshalErr := json.Unmarshal(bytes, a); unmarshalErr != nil {
return ParseError{
tpe: "JSON",
details: unmarshalErr.Error(),
}
} else {
return nil
}
}
func (body *RequestBody) SafeXMLInto(a any) error {
bytes, err := body.fillAndGetBytes()
if err != nil {
return *err
}
if unmarshalErr := xml.Unmarshal(bytes, a); unmarshalErr != nil {
return ParseError{
tpe: "XML",
details: unmarshalErr.Error(),
}
} else {
return nil
}
}
func (body *RequestBody) JSONInto(a any) {
bytes, err := body.fillAndGetBytes()
if err != nil {
panic(err)
}
if unmarshalErr := json.Unmarshal(bytes, a); unmarshalErr != nil {
panic(ParseError{details: err.Error(), tpe: "JSON"})
}
}
func (body *RequestBody) XMLInto(a any) {
bytes, err := body.fillAndGetBytes()
if err != nil {
panic(err)
}
if unmarshalErr := xml.Unmarshal(bytes, a); unmarshalErr != nil {
panic(ParseError{
tpe: "XML",
details: err.Error(),
})
}
}