gin/binding/protobuf.go

42 lines
934 B
Go
Raw Normal View History

2015-07-12 12:42:39 +03: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 (
"errors"
2015-07-12 12:42:39 +03:00
"io/ioutil"
"net/http"
2017-06-12 05:40:15 +03:00
"google.golang.org/protobuf/proto"
2015-07-12 12:42:39 +03:00
)
type protobufBinding struct{}
2016-04-15 02:16:46 +03:00
func (protobufBinding) Name() string {
2015-07-12 12:42:39 +03:00
return "protobuf"
}
2022-03-21 04:43:17 +03:00
func (b protobufBinding) Bind(req *http.Request, obj any) error {
2015-07-12 12:42:39 +03:00
buf, err := ioutil.ReadAll(req.Body)
if err != nil {
return err
}
return b.BindBody(buf, obj)
}
2015-07-12 12:42:39 +03:00
2022-03-21 04:43:17 +03: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 12:42:39 +03:00
return err
}
2018-11-05 09:17:04 +03: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 12:42:39 +03:00
return nil
// return validate(obj)
2015-07-12 12:42:39 +03:00
}