micro/client/mucp/mucp_request.go

67 lines
1.2 KiB
Go
Raw Normal View History

package mucp
2015-01-14 02:31:27 +03:00
2019-01-10 14:39:39 +03:00
import (
"github.com/micro/go-micro/v3/client"
"github.com/micro/go-micro/v3/codec"
2019-01-10 14:39:39 +03:00
)
2015-05-23 19:40:53 +03:00
type rpcRequest struct {
2015-05-23 13:53:40 +03:00
service string
2019-01-18 15:30:39 +03:00
method string
2019-01-11 00:25:31 +03:00
endpoint string
2015-05-23 13:53:40 +03:00
contentType string
2019-01-10 14:39:39 +03:00
codec codec.Codec
body interface{}
opts client.RequestOptions
2015-01-14 02:31:27 +03:00
}
func newRequest(service, endpoint string, request interface{}, contentType string, reqOpts ...client.RequestOption) client.Request {
var opts client.RequestOptions
2015-12-17 23:37:35 +03:00
for _, o := range reqOpts {
o(&opts)
}
2018-04-14 20:06:52 +03:00
// set the content-type specified
if len(opts.ContentType) > 0 {
contentType = opts.ContentType
}
2015-05-23 19:40:53 +03:00
return &rpcRequest{
2015-01-14 02:31:27 +03:00
service: service,
2019-01-18 15:30:39 +03:00
method: endpoint,
2019-01-11 00:25:31 +03:00
endpoint: endpoint,
2019-01-10 14:39:39 +03:00
body: request,
2015-01-14 02:31:27 +03:00
contentType: contentType,
2015-12-17 23:37:35 +03:00
opts: opts,
2015-01-14 02:31:27 +03:00
}
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) ContentType() string {
2015-01-14 02:31:27 +03:00
return r.contentType
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) Service() string {
2015-01-14 02:31:27 +03:00
return r.service
}
2019-01-18 13:12:57 +03:00
func (r *rpcRequest) Method() string {
return r.method
}
2019-01-11 00:25:31 +03:00
func (r *rpcRequest) Endpoint() string {
return r.endpoint
2015-01-14 02:31:27 +03:00
}
2019-01-10 14:39:39 +03:00
func (r *rpcRequest) Body() interface{} {
return r.body
}
func (r *rpcRequest) Codec() codec.Writer {
return r.codec
2015-01-14 02:31:27 +03:00
}
2015-12-17 23:37:35 +03:00
func (r *rpcRequest) Stream() bool {
return r.opts.Stream
2015-12-17 23:37:35 +03:00
}