-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresponse.go
241 lines (184 loc) · 5.06 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package room
import (
"encoding/json"
"encoding/xml"
"github.com/WEG-Technology/room/store"
"io"
"mime"
"net/http"
"strings"
)
type Response struct {
StatusCode int
Header IHeader
Data []byte
Request RequestDTO
}
type RequestDTO struct {
Header IHeader
Data []byte
URI URI
Method string
}
func NewResponse(response *http.Response, request *http.Request) Response {
responseDTO := newResponse(response.Request).setHeader(response.Header).setData(response)
responseDTO.StatusCode = response.StatusCode
return responseDTO
}
func NewErrorResponse(request *http.Request, err error) (Response, error) {
responseDTO := newResponse(request)
errData, _ := json.Marshal(map[string]string{"runtime_error": err.Error()})
responseDTO.Data = errData
return responseDTO, err
}
func newResponse(request *http.Request) Response {
responseDTO := Response{
Header: NewHeader(),
Request: RequestDTO{
Method: request.Method,
URI: NewURI(request.URL.String()),
Header: NewHeader(),
},
}.
setRequestHeader(request.Header).
setRequestData(request)
return responseDTO
}
func (r Response) OK() bool {
return r.StatusCode >= 200 && r.StatusCode < 300
}
func (r Response) setHeader(header http.Header) Response {
m := store.NewMapStore()
for key, values := range header {
m.Add(key, strings.Join(values, " "))
}
r.Header = NewHeader(m)
return r
}
func (r Response) setRequestHeader(header http.Header) Response {
m := store.NewMapStore()
for key, values := range header {
m.Add(key, strings.Join(values, " "))
}
r.Request.Header = NewHeader(m)
return r
}
func (r Response) setData(response *http.Response) Response {
if response.Body != nil {
r.Data, _ = io.ReadAll(response.Body)
}
return r
}
func (r Response) ResponseBodyOrFail() (map[string]any, error) {
var body map[string]any
err := NewDTOFactory(r.Header.Get(headerKeyContentType)).marshall(r.Data, &body)
return body, err
}
func (r Response) ResponseBody() map[string]any {
var body map[string]any
if r.Data != nil {
_ = NewDTOFactory(r.Header.Get(headerKeyContentType)).marshall(r.Data, &body)
}
return body
}
func (r Response) DTO(v any) any {
if r.Data != nil {
_ = NewDTOFactory(r.Header.Get(headerKeyContentType)).marshall(r.Data, v)
}
return v
}
func (r Response) DTOorFail(v any) error {
return NewDTOFactory(r.Header.Get(headerKeyContentType)).marshall(r.Data, v)
}
func (r Response) setRequestData(request *http.Request) Response {
if request.Body != nil {
r.Request.Data, _ = io.ReadAll(request.Body)
}
return r
}
func (r Response) RequestBodyOrFail() (map[string]any, error) {
var body map[string]any
err := NewDTOFactory(r.Request.Header.Get(headerKeyContentType)).marshall(r.Request.Data, &body)
return body, err
}
func (r Response) RequestBody() map[string]any {
var body map[string]any
if r.Request.Data != nil {
_ = NewDTOFactory(r.Request.Header.Get(headerKeyContentType)).marshall(r.Request.Data, &body)
}
return body
}
func (r Response) RequestDTO(v any) any {
if r.Data != nil {
_ = NewDTOFactory(r.Request.Header.Get(headerKeyContentType)).marshall(r.Request.Data, &v)
}
return v
}
func (r Response) RequestDTOorFail(v any) any {
return NewDTOFactory(r.Request.Header.Get(headerKeyContentType)).marshall(r.Request.Data, &v)
}
// IDTOFactory declares the interface for creating DTOs.
type IDTOFactory interface {
marshall(data []byte, v any) error
}
// NewDTOFactory creates a concrete factory based on content type.
func NewDTOFactory(contentType ...string) IDTOFactory {
var ct string
if len(contentType) > 0 {
ct = contentType[0]
} else {
ct = ""
}
if strings.Contains(ct, headerValueMultipartFormData) {
return MultipartFormDataDTOFactory{contentType: ct}
} else {
switch ct {
case headerValueApplicationJson:
return JsonDTOFactory{}
case headerValueTextXML:
return XMLDTOFactory{}
default:
return JsonDTOFactory{}
}
}
}
// JsonDTOFactory creates JSON DTOs.
type JsonDTOFactory struct{}
func (r JsonDTOFactory) marshall(data []byte, v any) error {
return json.Unmarshal(data, v)
}
// XMLDTOFactory creates XML DTOs.
type XMLDTOFactory struct{}
func (r XMLDTOFactory) marshall(data []byte, v any) error {
return xml.Unmarshal(data, v)
}
type MultipartFormDataDTOFactory struct {
contentType string
}
// marshall parses the multipart/form-data and populates the provided DTO (v).
func (f MultipartFormDataDTOFactory) marshall(data []byte, v any) error {
//TODO read request data
return nil
}
func getBoundary(contentType string) string {
_, params, err := mime.ParseMediaType(contentType)
if err != nil {
panic("invalid content type for multipart/form-data")
}
return params["boundary"]
}
func DTO[T any](response Response, v T) T {
if response.Data != nil {
_ = NewDTOFactory(response.Header.Get(headerKeyContentType)).marshall(response.Data, v)
}
return v
}
func DTOorFail[T any](response Response, v T) (T, error) {
if response.Data != nil {
err := NewDTOFactory(response.Header.Get(headerKeyContentType)).marshall(response.Data, v)
if err != nil {
return v, err
}
}
return v, nil
}