67 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package mucp
 | |
| 
 | |
| import (
 | |
| 	"github.com/micro/go-micro/v3/client"
 | |
| 	"github.com/micro/go-micro/v3/codec"
 | |
| )
 | |
| 
 | |
| type rpcRequest struct {
 | |
| 	service     string
 | |
| 	method      string
 | |
| 	endpoint    string
 | |
| 	contentType string
 | |
| 	codec       codec.Codec
 | |
| 	body        interface{}
 | |
| 	opts        client.RequestOptions
 | |
| }
 | |
| 
 | |
| func newRequest(service, endpoint string, request interface{}, contentType string, reqOpts ...client.RequestOption) client.Request {
 | |
| 	var opts client.RequestOptions
 | |
| 
 | |
| 	for _, o := range reqOpts {
 | |
| 		o(&opts)
 | |
| 	}
 | |
| 
 | |
| 	// set the content-type specified
 | |
| 	if len(opts.ContentType) > 0 {
 | |
| 		contentType = opts.ContentType
 | |
| 	}
 | |
| 
 | |
| 	return &rpcRequest{
 | |
| 		service:     service,
 | |
| 		method:      endpoint,
 | |
| 		endpoint:    endpoint,
 | |
| 		body:        request,
 | |
| 		contentType: contentType,
 | |
| 		opts:        opts,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) ContentType() string {
 | |
| 	return r.contentType
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Service() string {
 | |
| 	return r.service
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Method() string {
 | |
| 	return r.method
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Endpoint() string {
 | |
| 	return r.endpoint
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Body() interface{} {
 | |
| 	return r.body
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Codec() codec.Writer {
 | |
| 	return r.codec
 | |
| }
 | |
| 
 | |
| func (r *rpcRequest) Stream() bool {
 | |
| 	return r.opts.Stream
 | |
| }
 |