2017-07-19 10:50:05 +03:00
|
|
|
// Copyright 2017 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
|
|
|
|
|
2019-04-17 17:10:21 +03:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin/binding/common"
|
|
|
|
)
|
2017-07-19 10:50:05 +03:00
|
|
|
|
|
|
|
type queryBinding struct{}
|
|
|
|
|
|
|
|
func (queryBinding) Name() string {
|
|
|
|
return "query"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (queryBinding) Bind(req *http.Request, obj interface{}) error {
|
|
|
|
values := req.URL.Query()
|
|
|
|
if err := mapForm(obj, values); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-04-17 17:10:21 +03:00
|
|
|
return common.Validate(obj)
|
2017-07-19 10:50:05 +03:00
|
|
|
}
|