gin/binding/protobuf.go

42 lines
933 B
Go
Raw Normal View History

// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
2015-07-12 09:42:39 +00:00
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package binding
import (
"errors"
2015-07-12 09:42:39 +00:00
"io/ioutil"
"net/http"
2017-06-12 02:40:15 +00:00
"google.golang.org/protobuf/proto"
2015-07-12 09:42:39 +00:00
)
type protobufBinding struct{}
2016-04-14 23:16:46 +00:00
func (protobufBinding) Name() string {
2015-07-12 09:42:39 +00:00
return "protobuf"
}
2022-03-21 01:43:17 +00:00
func (b protobufBinding) Bind(req *http.Request, obj any) error {
2015-07-12 09:42:39 +00:00
buf, err := ioutil.ReadAll(req.Body)
if err != nil {
return err
}
return b.BindBody(buf, obj)
}
2015-07-12 09:42:39 +00:00
2022-03-21 01:43:17 +00:00
func (protobufBinding) BindBody(body []byte, obj any) error {
msg, ok := obj.(proto.Message)
if !ok {
return errors.New("obj is not ProtoMessage")
}
if err := proto.Unmarshal(body, msg); err != nil {
2015-07-12 09:42:39 +00:00
return err
}
2018-11-05 06:17:04 +00:00
// Here it's same to return validate(obj), but util now we can't add
// `binding:""` to the struct which automatically generate by gen-proto
2015-07-12 09:42:39 +00:00
return nil
// return validate(obj)
2015-07-12 09:42:39 +00:00
}