2020-09-05 02:11:29 +03:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-10-09 13:43:04 +03:00
|
|
|
raw "github.com/unistack-org/micro-codec-bytes"
|
|
|
|
"github.com/unistack-org/micro/v3/broker"
|
2020-09-05 02:11:29 +03:00
|
|
|
"github.com/unistack-org/micro/v3/codec"
|
2020-10-16 09:38:57 +03:00
|
|
|
"github.com/unistack-org/micro/v3/codec/json"
|
2020-10-09 13:43:04 +03:00
|
|
|
"github.com/unistack-org/micro/v3/errors"
|
|
|
|
"github.com/unistack-org/micro/v3/metadata"
|
2020-09-05 02:11:29 +03:00
|
|
|
)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
type noopClient struct {
|
2020-09-05 02:11:29 +03:00
|
|
|
opts Options
|
|
|
|
}
|
|
|
|
|
|
|
|
type noopMessage struct {
|
2020-10-09 13:43:04 +03:00
|
|
|
topic string
|
|
|
|
payload interface{}
|
|
|
|
opts MessageOptions
|
2020-09-05 02:11:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type noopRequest struct {
|
|
|
|
service string
|
|
|
|
method string
|
|
|
|
endpoint string
|
|
|
|
contentType string
|
|
|
|
body interface{}
|
|
|
|
codec codec.Writer
|
|
|
|
stream bool
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// NewClient returns new noop client
|
|
|
|
func NewClient(opts ...Option) Client {
|
|
|
|
return &noopClient{opts: NewOptions(opts...)}
|
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
func (n *noopRequest) Service() string {
|
|
|
|
return n.service
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) Method() string {
|
|
|
|
return n.method
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) Endpoint() string {
|
|
|
|
return n.endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) ContentType() string {
|
|
|
|
return n.contentType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) Body() interface{} {
|
|
|
|
return n.body
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) Codec() codec.Writer {
|
|
|
|
return n.codec
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopRequest) Stream() bool {
|
|
|
|
return n.stream
|
|
|
|
}
|
|
|
|
|
|
|
|
type noopResponse struct {
|
|
|
|
codec codec.Reader
|
|
|
|
header map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopResponse) Codec() codec.Reader {
|
|
|
|
return n.codec
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopResponse) Header() map[string]string {
|
|
|
|
return n.header
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopResponse) Read() ([]byte, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type noopStream struct{}
|
|
|
|
|
|
|
|
func (n *noopStream) Context() context.Context {
|
|
|
|
return context.Background()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Request() Request {
|
|
|
|
return &noopRequest{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Response() Response {
|
|
|
|
return &noopResponse{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Send(interface{}) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Recv(interface{}) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Error() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopStream) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopMessage) Topic() string {
|
|
|
|
return n.topic
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopMessage) Payload() interface{} {
|
|
|
|
return n.payload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noopMessage) ContentType() string {
|
2020-10-09 13:43:04 +03:00
|
|
|
return n.opts.ContentType
|
2020-09-05 02:11:29 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) Init(opts ...Option) error {
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&n.opts)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) Options() Options {
|
2020-09-05 02:11:29 +03:00
|
|
|
return n.opts
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) String() string {
|
2020-09-05 02:11:29 +03:00
|
|
|
return "noop"
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error {
|
2020-09-05 02:11:29 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) NewRequest(service, endpoint string, req interface{}, opts ...RequestOption) Request {
|
2020-09-05 02:11:29 +03:00
|
|
|
return &noopRequest{}
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) NewMessage(topic string, msg interface{}, opts ...MessageOption) Message {
|
|
|
|
options := NewMessageOptions(opts...)
|
2020-10-09 13:43:04 +03:00
|
|
|
return &noopMessage{topic: topic, payload: msg, opts: options}
|
2020-09-05 02:11:29 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error) {
|
2020-09-05 02:11:29 +03:00
|
|
|
return &noopStream{}, nil
|
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
func (n *noopClient) Publish(ctx context.Context, p Message, opts ...PublishOption) error {
|
2020-10-09 13:43:04 +03:00
|
|
|
var body []byte
|
|
|
|
|
2020-10-16 09:38:57 +03:00
|
|
|
options := NewPublishOptions(opts...)
|
2020-10-09 13:43:04 +03:00
|
|
|
|
|
|
|
md, ok := metadata.FromContext(ctx)
|
|
|
|
if !ok {
|
|
|
|
md = make(map[string]string)
|
|
|
|
}
|
|
|
|
md["Content-Type"] = p.ContentType()
|
|
|
|
md["Micro-Topic"] = p.Topic()
|
|
|
|
|
|
|
|
// passed in raw data
|
|
|
|
if d, ok := p.Payload().(*raw.Frame); ok {
|
|
|
|
body = d.Data
|
|
|
|
} else {
|
2020-10-16 09:38:57 +03:00
|
|
|
cf := n.opts.Broker.Options().Codec
|
|
|
|
if cf == nil {
|
|
|
|
cf = json.Marshaler{}
|
|
|
|
}
|
|
|
|
|
2020-10-09 13:43:04 +03:00
|
|
|
/*
|
|
|
|
// use codec for payload
|
|
|
|
cf, err := n.opts.Codecs[p.ContentType()]
|
|
|
|
if err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
// set the body
|
2020-10-16 09:38:57 +03:00
|
|
|
b, err := cf.Marshal(p.Payload())
|
2020-10-09 13:43:04 +03:00
|
|
|
if err != nil {
|
|
|
|
return errors.InternalServerError("go.micro.client", err.Error())
|
|
|
|
}
|
|
|
|
body = b
|
|
|
|
}
|
|
|
|
|
|
|
|
topic := p.Topic()
|
|
|
|
|
|
|
|
// get the exchange
|
|
|
|
if len(options.Exchange) > 0 {
|
|
|
|
topic = options.Exchange
|
|
|
|
}
|
|
|
|
|
2020-10-16 09:38:57 +03:00
|
|
|
return n.opts.Broker.Publish(ctx, topic, &broker.Message{
|
2020-10-09 13:43:04 +03:00
|
|
|
Header: md,
|
|
|
|
Body: body,
|
|
|
|
}, broker.PublishContext(options.Context))
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
return nil
|
|
|
|
}
|