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-04-07 13:30:16 +03:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"gopkg.in/joeybloggs/go-validate-yourself.v4"
|
|
|
|
)
|
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"
|
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-04-07 13:30:16 +03:00
|
|
|
var _validator = validator.NewValidator("binding", validator.BakedInValidators)
|
|
|
|
|
2014-07-03 21:19:06 +04:00
|
|
|
var (
|
2015-03-31 18:51:10 +03:00
|
|
|
JSON = jsonBinding{}
|
|
|
|
XML = xmlBinding{}
|
|
|
|
GETForm = getFormBinding{}
|
|
|
|
POSTForm = postFormBinding{}
|
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" {
|
|
|
|
return GETForm
|
2014-07-05 01:28:50 +04:00
|
|
|
} else {
|
2015-03-31 18:51:10 +03:00
|
|
|
switch contentType {
|
|
|
|
case MIMEPOSTForm:
|
|
|
|
return POSTForm
|
|
|
|
case MIMEJSON:
|
|
|
|
return JSON
|
|
|
|
case MIMEXML, MIMEXML2:
|
|
|
|
return XML
|
|
|
|
default:
|
|
|
|
return GETForm
|
2014-07-13 02:17:01 +04:00
|
|
|
}
|
2014-07-05 01:28:50 +04:00
|
|
|
}
|
2014-07-03 21:19:06 +04:00
|
|
|
}
|