2014-08-29 21:49:50 +04: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.
|
|
|
|
|
2014-07-03 21:19:06 +04:00
|
|
|
package binding
|
|
|
|
|
2015-05-31 17:18:50 +03:00
|
|
|
import "net/http"
|
2015-03-31 18:51:10 +03: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-12 12:42:39 +03:00
|
|
|
MIMEPROTOBUF = "application/octet-stream"
|
2014-07-03 21:19:06 +04:00
|
|
|
)
|
|
|
|
|
2015-03-31 18:51:10 +03:00
|
|
|
type Binding interface {
|
|
|
|
Name() string
|
|
|
|
Bind(*http.Request, interface{}) error
|
|
|
|
}
|
2015-03-08 17:43:37 +03:00
|
|
|
|
2015-05-31 17:18:50 +03: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{}
|
2015-04-07 13:30:16 +03:00
|
|
|
|
2014-07-03 21:19:06 +04:00
|
|
|
var (
|
2015-07-12 12:42:39 +03:00
|
|
|
JSON = jsonBinding{}
|
|
|
|
XML = xmlBinding{}
|
|
|
|
Form = formBinding{}
|
|
|
|
ProtoBuf = protobufBinding{}
|
2014-07-03 21:19:06 +04:00
|
|
|
)
|
|
|
|
|
2015-03-31 18:51:10 +03:00
|
|
|
func Default(method, contentType string) Binding {
|
|
|
|
if method == "GET" {
|
2015-05-05 16:06:38 +03:00
|
|
|
return Form
|
2014-07-05 01:28:50 +04:00
|
|
|
} else {
|
2015-03-31 18:51:10 +03:00
|
|
|
switch contentType {
|
|
|
|
case MIMEJSON:
|
|
|
|
return JSON
|
|
|
|
case MIMEXML, MIMEXML2:
|
|
|
|
return XML
|
2015-07-12 12:42:39 +03:00
|
|
|
case MIMEPROTOBUF:
|
|
|
|
return ProtoBuf
|
2015-05-26 17:47:10 +03:00
|
|
|
default: //case MIMEPOSTForm, MIMEMultipartPOSTForm:
|
2015-05-05 16:06:38 +03:00
|
|
|
return Form
|
2014-07-13 02:17:01 +04:00
|
|
|
}
|
2014-07-05 01:28:50 +04:00
|
|
|
}
|
2014-07-03 21:19:06 +04:00
|
|
|
}
|
2015-04-09 13:15:02 +03:00
|
|
|
|
2015-05-31 17:30:00 +03:00
|
|
|
func validate(obj interface{}) error {
|
2015-05-31 17:18:50 +03:00
|
|
|
if Validator == nil {
|
2015-05-29 21:34:41 +03:00
|
|
|
return nil
|
|
|
|
}
|
2015-05-31 17:18:50 +03:00
|
|
|
return Validator.ValidateStruct(obj)
|
2015-05-29 21:34:41 +03:00
|
|
|
}
|