gin/binding/binding.go

57 lines
1.1 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
import (
"net/http"
"gopkg.in/joeybloggs/go-validate-yourself.v4"
)
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-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
var _validator = validator.NewValidator("binding", validator.BakedInValidators)
var (
JSON = jsonBinding{}
XML = xmlBinding{}
Form = formBinding{}
)
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
default:
return Form
}
}
}
2015-04-09 10:15:02 +00:00
func Validate(obj interface{}) error {
if err := _validator.ValidateStruct(obj); err != nil {
return error(err)
}
return nil
}