gin/binding/binding.go

73 lines
2.0 KiB
Go
Raw Normal View History

2014-08-29 17:49:50 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package binding
2015-05-31 14:18:50 +00:00
import "net/http"
2015-03-31 15:51:10 +00:00
const (
MIMEJSON = "application/json"
MIMEHTML = "text/html"
MIMEXML = "application/xml"
MIMEXML2 = "text/xml"
MIMEPlain = "text/plain"
MIMEPOSTForm = "application/x-www-form-urlencoded"
MIMEMultipartPOSTForm = "multipart/form-data"
2015-07-18 07:18:01 +00:00
MIMEPROTOBUF = "application/x-protobuf"
MIMEMSGPACK = "application/x-msgpack"
MIMEMSGPACK2 = "application/msgpack"
)
2015-03-31 15:51:10 +00:00
type Binding interface {
Name() string
Bind(*http.Request, interface{}) error
}
2015-03-08 14:43:37 +00:00
2015-05-31 14:18:50 +00:00
type StructValidator interface {
// ValidateStruct can receive any kind of type and it should never panic, even if the configuration is not right.
// If the received type is not a struct, any validation should be skipped and nil must be returned.
// If the received type is a struct or pointer to a struct, the validation should be performed.
// If the struct is not valid or the validation itself fails, a descriptive error should be returned.
// Otherwise nil must be returned.
ValidateStruct(interface{}) error
}
var Validator StructValidator = &defaultValidator{}
var (
JSON = jsonBinding{}
XML = xmlBinding{}
Form = formBinding{}
FormPost = formPostBinding{}
FormMultipart = formMultipartBinding{}
ProtoBuf = protobufBinding{}
MsgPack = msgpackBinding{}
)
2015-03-31 15:51:10 +00:00
func Default(method, contentType string) Binding {
if method == "GET" {
return Form
} else {
2015-03-31 15:51:10 +00:00
switch contentType {
case MIMEJSON:
return JSON
case MIMEXML, MIMEXML2:
return XML
2015-07-12 09:42:39 +00:00
case MIMEPROTOBUF:
return ProtoBuf
case MIMEMSGPACK, MIMEMSGPACK2:
return MsgPack
default: //case MIMEPOSTForm, MIMEMultipartPOSTForm:
return Form
}
}
}
2015-04-09 10:15:02 +00:00
2015-05-31 14:30:00 +00:00
func validate(obj interface{}) error {
2015-05-31 14:18:50 +00:00
if Validator == nil {
2015-05-29 18:34:41 +00:00
return nil
}
2015-05-31 14:18:50 +00:00
return Validator.ValidateStruct(obj)
2015-05-29 18:34:41 +00:00
}