Skip to content

Commit

Permalink
update for supporting file binding
Browse files Browse the repository at this point in the history
  • Loading branch information
p581581 committed Mar 2, 2018
1 parent 5d3f30c commit bdc4336
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 2 deletions.
2 changes: 2 additions & 0 deletions binding/binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ func Default(method, contentType string) Binding {
return ProtoBuf
case MIMEMSGPACK, MIMEMSGPACK2:
return MsgPack
case MIMEMultipartPOSTForm:
return FormMultipart
default: //case MIMEPOSTForm, MIMEMultipartPOSTForm:
return Form
}
Expand Down
82 changes: 80 additions & 2 deletions binding/binding_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import (
"bytes"
"encoding/json"
"errors"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"os"
"testing"
"time"

Expand All @@ -29,6 +31,18 @@ type FooBarStruct struct {
Bar string `msgpack:"bar" json:"bar" form:"bar" xml:"bar" binding:"required"`
}

type FooBarFileStruct struct {
FooBarStruct
File []byte `form:"file" binding:"required"`
}

type FooBarFileFailStruct struct {
FooBarStruct
File []byte `invalid_name:"file" binding:"required"`
// for unexport test
data []byte `form:"data" binding:"required"`
}

type FooStructUseNumber struct {
Foo interface{} `json:"foo" binding:"required"`
}
Expand Down Expand Up @@ -152,8 +166,8 @@ func TestBindingDefault(t *testing.T) {
assert.Equal(t, Default("POST", MIMEPOSTForm), Form)
assert.Equal(t, Default("PUT", MIMEPOSTForm), Form)

assert.Equal(t, Default("POST", MIMEMultipartPOSTForm), Form)
assert.Equal(t, Default("PUT", MIMEMultipartPOSTForm), Form)
assert.Equal(t, Default("POST", MIMEMultipartPOSTForm), FormMultipart)
assert.Equal(t, Default("PUT", MIMEMultipartPOSTForm), FormMultipart)

assert.Equal(t, Default("POST", MIMEPROTOBUF), ProtoBuf)
assert.Equal(t, Default("PUT", MIMEPROTOBUF), ProtoBuf)
Expand Down Expand Up @@ -413,6 +427,48 @@ func createFormPostRequestFail() *http.Request {
return req
}

func createFormFilesMultipartRequest() *http.Request {
boundary := "--testboundary"
body := new(bytes.Buffer)
mw := multipart.NewWriter(body)
defer mw.Close()

mw.SetBoundary(boundary)
mw.WriteField("foo", "bar")
mw.WriteField("bar", "foo")

f, _ := os.Open("form.go")
defer f.Close()
fw, _ := mw.CreateFormFile("file", "form.go")
io.Copy(fw, f)

req, _ := http.NewRequest("POST", "/?foo=getfoo&bar=getbar", body)
req.Header.Set("Content-Type", MIMEMultipartPOSTForm+"; boundary="+boundary)

return req
}

func createFormFilesMultipartRequestFail() *http.Request {
boundary := "--testboundary"
body := new(bytes.Buffer)
mw := multipart.NewWriter(body)
defer mw.Close()

mw.SetBoundary(boundary)
mw.WriteField("foo", "bar")
mw.WriteField("bar", "foo")

f, _ := os.Open("form.go")
defer f.Close()
fw, _ := mw.CreateFormFile("file_foo", "form_foo.go")
io.Copy(fw, f)

req, _ := http.NewRequest("POST", "/?foo=getfoo&bar=getbar", body)
req.Header.Set("Content-Type", MIMEMultipartPOSTForm+"; boundary="+boundary)

return req
}

func createFormMultipartRequest() *http.Request {
boundary := "--testboundary"
body := new(bytes.Buffer)
Expand Down Expand Up @@ -457,6 +513,28 @@ func TestBindingFormPostFail(t *testing.T) {
assert.Error(t, err)
}

func TestBindingFormFilesMultipart(t *testing.T) {
req := createFormFilesMultipartRequest()
var obj FooBarFileStruct
FormMultipart.Bind(req, &obj)

f, _ := os.Open("form.go")
defer f.Close()
file, _ := ioutil.ReadAll(f)

assert.Equal(t, FormMultipart.Name(), "multipart/form-data")
assert.Equal(t, obj.Foo, "bar")
assert.Equal(t, obj.Bar, "foo")
assert.Equal(t, obj.File, file)
}

func TestBindingFormFilesMultipartFail(t *testing.T) {
req := createFormFilesMultipartRequestFail()
var obj FooBarFileFailStruct
err := FormMultipart.Bind(req, &obj)
assert.Error(t, err)
}

func TestBindingFormMultipart(t *testing.T) {
req := createFormMultipartRequest()
var obj FooBarStruct
Expand Down
5 changes: 5 additions & 0 deletions binding/form.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,10 @@ func (formMultipartBinding) Bind(req *http.Request, obj interface{}) error {
if err := mapForm(obj, req.MultipartForm.Value); err != nil {
return err
}

if err := mapFiles(obj, req); err != nil {
return err
}

return validate(obj)
}
36 changes: 36 additions & 0 deletions binding/form_mapping.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,47 @@ package binding

import (
"errors"
"fmt"
"io/ioutil"
"net/http"
"reflect"
"strconv"
"time"
)

func mapFiles(ptr interface{}, req *http.Request) error {
typ := reflect.TypeOf(ptr).Elem()
val := reflect.ValueOf(ptr).Elem()
for i := 0; i < typ.NumField(); i++ {
typeField := typ.Field(i)
structField := val.Field(i)

t := fmt.Sprintf("%s", typeField.Type)
if string(t) != "[]uint8" {
continue
}

inputFieldName := typeField.Tag.Get("form")
if inputFieldName == "" {
inputFieldName = typeField.Name
}

file, _, err := req.FormFile(inputFieldName)
if err != nil {
return err
}

data, err := ioutil.ReadAll(file)
if err != nil {
return err
}

structField.SetBytes(data)

}
return nil
}

func mapForm(ptr interface{}, form map[string][]string) error {
typ := reflect.TypeOf(ptr).Elem()
val := reflect.ValueOf(ptr).Elem()
Expand Down

0 comments on commit bdc4336

Please sign in to comment.