-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
formdata.go
262 lines (242 loc) · 6.71 KB
/
formdata.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package huma
import (
"fmt"
"io"
"mime/multipart"
"net/http"
"reflect"
"strings"
)
type FormFile struct {
multipart.File
ContentType string // Content-Type as declared in the multipart form field, or detected when parsing request as fallback
IsSet bool // Indicates whether content was received when working with optional files
Size int64 // File size in bytes
Filename string // Filename as declared in the multipart form field, if any
}
type MultipartFormFiles[T any] struct {
Form *multipart.Form
data *T
}
type MimeTypeValidator struct {
accept []string
}
func NewMimeTypeValidator(encoding *Encoding) MimeTypeValidator {
var mimeTypes = strings.Split(encoding.ContentType, ",")
for i := range mimeTypes {
mimeTypes[i] = strings.Trim(mimeTypes[i], " ")
}
if len(mimeTypes) == 0 {
mimeTypes = []string{"application/octet-stream"}
}
return MimeTypeValidator{accept: mimeTypes}
}
// Validate checks the mime type of the provided file against the expected content type.
// In the absence of a Content-Type file header, the mime type is detected using [http.DetectContentType].
func (v MimeTypeValidator) Validate(fh *multipart.FileHeader, location string) (string, *ErrorDetail) {
file, err := fh.Open()
if err != nil {
return "", &ErrorDetail{Message: "Failed to open file", Location: location}
}
mimeType := fh.Header.Get("Content-Type")
if mimeType == "" {
var buffer = make([]byte, 1000)
if _, err := file.Read(buffer); err != nil {
return "", &ErrorDetail{Message: "Failed to infer file media type", Location: location}
}
file.Seek(int64(0), io.SeekStart)
mimeType = http.DetectContentType(buffer)
}
accept := false
for _, m := range v.accept {
if m == "text/plain" || m == "application/octet-stream" {
accept = true
break
}
if strings.HasSuffix(m, "/*") &&
strings.HasPrefix(mimeType, strings.TrimRight(m, "*")) {
accept = true
break
}
if mimeType == m {
accept = true
break
}
}
if accept {
return mimeType, nil
} else {
return mimeType, &ErrorDetail{
Message: fmt.Sprintf(
"Invalid mime type: got %v, expected %v",
mimeType, strings.Join(v.accept, ","),
),
Location: location,
Value: mimeType,
}
}
}
func (m *MultipartFormFiles[T]) readFile(
fh *multipart.FileHeader,
location string,
validator MimeTypeValidator,
) (FormFile, *ErrorDetail) {
f, err := fh.Open()
if err != nil {
return FormFile{}, &ErrorDetail{Message: "Failed to open file", Location: location}
}
contentType, validationErr := validator.Validate(fh, location)
if validationErr != nil {
return FormFile{}, validationErr
}
return FormFile{
File: f,
ContentType: contentType,
IsSet: true,
Size: fh.Size,
Filename: fh.Filename,
}, nil
}
func (m *MultipartFormFiles[T]) readSingleFile(key string, opMediaType *MediaType) (FormFile, *ErrorDetail) {
fileHeaders := m.Form.File[key]
if len(fileHeaders) == 0 {
if opMediaType.Schema.requiredMap[key] {
return FormFile{}, &ErrorDetail{Message: "File required", Location: key}
} else {
return FormFile{}, nil
}
} else if len(fileHeaders) == 1 {
validator := NewMimeTypeValidator(opMediaType.Encoding[key])
return m.readFile(fileHeaders[0], key, validator)
}
return FormFile{}, &ErrorDetail{
Message: "Multiple files received but only one was expected",
Location: key,
}
}
func (m *MultipartFormFiles[T]) readMultipleFiles(key string, opMediaType *MediaType) ([]FormFile, []error) {
fileHeaders := m.Form.File[key]
var (
files = make([]FormFile, len(fileHeaders))
errors []error
)
if opMediaType.Schema.requiredMap[key] && len(fileHeaders) == 0 {
return nil, []error{&ErrorDetail{Message: "At least one file is required", Location: key}}
}
validator := NewMimeTypeValidator(opMediaType.Encoding[key])
for i, fh := range fileHeaders {
file, err := m.readFile(
fh,
fmt.Sprintf("%s[%d]", key, i),
validator,
)
if err != nil {
errors = append(errors, err)
continue
}
files[i] = file
}
return files, errors
}
func (m *MultipartFormFiles[T]) Data() *T {
return m.data
}
// Decodes multipart.Form data into *T, returning []*ErrorDetail if any
// Schema is used to check for validation constraints
func (m *MultipartFormFiles[T]) Decode(opMediaType *MediaType) []error {
var (
dataType = reflect.TypeOf(m.data).Elem()
value = reflect.New(dataType)
errors []error
)
for i := 0; i < dataType.NumField(); i++ {
field := value.Elem().Field(i)
structField := dataType.Field(i)
key := structField.Tag.Get("form")
if key == "" {
key = structField.Name
}
switch {
case field.Type() == reflect.TypeOf(FormFile{}):
file, err := m.readSingleFile(key, opMediaType)
if err != nil {
errors = append(errors, err)
continue
}
field.Set(reflect.ValueOf(file))
case field.Type() == reflect.TypeOf([]FormFile{}):
files, errs := m.readMultipleFiles(key, opMediaType)
if errs != nil {
errors = append(errors, errs...)
continue
}
field.Set(reflect.ValueOf(files))
default:
continue
}
}
m.data = value.Interface().(*T)
return errors
}
func formDataFieldName(f reflect.StructField) string {
name := f.Name
if formDataKey := f.Tag.Get("form"); formDataKey != "" {
name = formDataKey
}
return name
}
func multiPartFormFileSchema(t reflect.Type) *Schema {
nFields := t.NumField()
schema := &Schema{
Type: "object",
Properties: make(map[string]*Schema, nFields),
requiredMap: make(map[string]bool, nFields),
}
requiredFields := make([]string, nFields)
for i := 0; i < nFields; i++ {
f := t.Field(i)
name := formDataFieldName(f)
switch {
case f.Type == reflect.TypeOf(FormFile{}):
schema.Properties[name] = multiPartFileSchema(f)
case f.Type == reflect.TypeOf([]FormFile{}):
schema.Properties[name] = &Schema{
Type: "array",
Items: multiPartFileSchema(f),
}
default:
// Should we panic if [T] struct defines fields with unsupported types ?
continue
}
if _, ok := f.Tag.Lookup("required"); ok && boolTag(f, "required", false) {
requiredFields[i] = name
schema.requiredMap[name] = true
}
}
schema.Required = requiredFields
return schema
}
func multiPartFileSchema(f reflect.StructField) *Schema {
return &Schema{
Type: "string",
Format: "binary",
Description: f.Tag.Get("doc"),
ContentEncoding: "binary",
}
}
func multiPartContentEncoding(t reflect.Type) map[string]*Encoding {
nFields := t.NumField()
encoding := make(map[string]*Encoding, nFields)
for i := 0; i < nFields; i++ {
f := t.Field(i)
name := formDataFieldName(f)
contentType := f.Tag.Get("contentType")
if contentType == "" {
contentType = "application/octet-stream"
}
encoding[name] = &Encoding{
ContentType: contentType,
}
}
return encoding
}