woodpecker/vendor/github.com/gin-gonic/gin/binding/binding.go

64 lines
1.7 KiB
Go
Raw Normal View History

2015-05-22 18:37:40 +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-09-30 01:21:17 +00:00
import "net/http"
2015-05-22 18:37:40 +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"
)
type Binding interface {
Name() string
Bind(*http.Request, interface{}) error
}
2015-09-30 01:21:17 +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{}
2015-05-22 18:37:40 +00:00
var (
2015-09-30 01:21:17 +00:00
JSON = jsonBinding{}
XML = xmlBinding{}
Form = formBinding{}
FormPost = formPostBinding{}
FormMultipart = formMultipartBinding{}
2015-05-22 18:37:40 +00:00
)
func Default(method, contentType string) Binding {
if method == "GET" {
return Form
} else {
switch contentType {
case MIMEJSON:
return JSON
case MIMEXML, MIMEXML2:
return XML
2015-09-30 01:21:17 +00:00
default: //case MIMEPOSTForm, MIMEMultipartPOSTForm:
2015-05-22 18:37:40 +00:00
return Form
}
}
}
2015-09-30 01:21:17 +00:00
func validate(obj interface{}) error {
if Validator == nil {
return nil
2015-05-22 18:37:40 +00:00
}
2015-09-30 01:21:17 +00:00
return Validator.ValidateStruct(obj)
2015-05-22 18:37:40 +00:00
}