2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2015-07-12 12:42:39 +03:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package binding
|
|
|
|
|
|
|
|
import (
|
2021-09-07 05:10:32 +03:00
|
|
|
"errors"
|
2015-07-12 12:42:39 +03:00
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2017-06-12 05:40:15 +03:00
|
|
|
|
2021-08-19 10:46:31 +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
|
|
|
|
}
|
2018-05-11 05:33:33 +03:00
|
|
|
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 {
|
2021-09-07 05:10:32 +03:00
|
|
|
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
|
2018-05-11 05:33:33 +03:00
|
|
|
// `binding:""` to the struct which automatically generate by gen-proto
|
2015-07-12 12:42:39 +03:00
|
|
|
return nil
|
2018-05-11 05:33:33 +03:00
|
|
|
// return validate(obj)
|
2015-07-12 12:42:39 +03:00
|
|
|
}
|