Blame view

go/src/themaru/vendor/github.com/gin-gonic/gin/binding/binding.go 3.61 KB
476d2547e   김태훈   태마루 시스템 설정 / 업데이트...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  // 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"
  
  // Content-Type MIME of the most common data formats.
  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"
  	MIMEPROTOBUF          = "application/x-protobuf"
  	MIMEMSGPACK           = "application/x-msgpack"
  	MIMEMSGPACK2          = "application/msgpack"
  	MIMEYAML              = "application/x-yaml"
  )
  
  // Binding describes the interface which needs to be implemented for binding the
  // data present in the request such as JSON request body, query parameters or
  // the form POST.
  type Binding interface {
  	Name() string
  	Bind(*http.Request, interface{}) error
  }
  
  // BindingBody adds BindBody method to Binding. BindBody is similar with Bind,
  // but it reads the body from supplied bytes instead of req.Body.
  type BindingBody interface {
  	Binding
  	BindBody([]byte, interface{}) error
  }
  
  // BindingUri adds BindUri method to Binding. BindUri is similar with Bind,
  // but it read the Params.
  type BindingUri interface {
  	Name() string
  	BindUri(map[string][]string, interface{}) error
  }
  
  // StructValidator is the minimal interface which needs to be implemented in
  // order for it to be used as the validator engine for ensuring the correctness
  // of the request. Gin provides a default implementation for this using
  // https://github.com/go-playground/validator/tree/v8.18.2.
  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
  
  	// Engine returns the underlying validator engine which powers the
  	// StructValidator implementation.
  	Engine() interface{}
  }
  
  // Validator is the default validator which implements the StructValidator
  // interface. It uses https://github.com/go-playground/validator/tree/v8.18.2
  // under the hood.
  var Validator StructValidator = &defaultValidator{}
  
  // These implement the Binding interface and can be used to bind the data
  // present in the request to struct instances.
  var (
  	JSON          = jsonBinding{}
  	XML           = xmlBinding{}
  	Form          = formBinding{}
  	Query         = queryBinding{}
  	FormPost      = formPostBinding{}
  	FormMultipart = formMultipartBinding{}
  	ProtoBuf      = protobufBinding{}
  	MsgPack       = msgpackBinding{}
  	YAML          = yamlBinding{}
  	Uri           = uriBinding{}
  )
  
  // Default returns the appropriate Binding instance based on the HTTP method
  // and the content type.
  func Default(method, contentType string) Binding {
  	if method == "GET" {
  		return Form
  	}
  
  	switch contentType {
  	case MIMEJSON:
  		return JSON
  	case MIMEXML, MIMEXML2:
  		return XML
  	case MIMEPROTOBUF:
  		return ProtoBuf
  	case MIMEMSGPACK, MIMEMSGPACK2:
  		return MsgPack
  	case MIMEYAML:
  		return YAML
  	case MIMEMultipartPOSTForm:
  		return FormMultipart
  	default: // case MIMEPOSTForm:
  		return Form
  	}
  }
  
  func validate(obj interface{}) error {
  	if Validator == nil {
  		return nil
  	}
  	return Validator.ValidateStruct(obj)
  }