e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
66 lines
1.1 KiB
Go
66 lines
1.1 KiB
Go
package client
|
|
|
|
import (
|
|
"go-micro.dev/v6/codec"
|
|
)
|
|
|
|
type rpcRequest struct {
|
|
opts RequestOptions
|
|
codec codec.Codec
|
|
body interface{}
|
|
service string
|
|
method string
|
|
endpoint string
|
|
contentType string
|
|
}
|
|
|
|
func newRequest(service, endpoint string, request interface{}, contentType string, reqOpts ...RequestOption) Request {
|
|
var opts 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
|
|
}
|