[v3] fix panic on publish methods (#167)
Some checks failed
coverage / build (push) Successful in 3m8s
test / test (push) Failing after 18m47s

* move publish methods to a separate file
* reorder client methods
* fix panic for publish
* refactoring
* go mod tidy
* rename go.micro => micro
* add comment to README about Set-Cookie headers
This commit is contained in:
2025-10-29 11:20:04 +05:00
committed by GitHub
parent cee0fde959
commit 3f3c3a4471
6 changed files with 126 additions and 114 deletions

109
client.go
View File

@@ -3,20 +3,17 @@ package http
import (
"context"
"net/http"
"os"
"strconv"
"sync"
"time"
"go.unistack.org/micro-client-http/v3/status"
"go.unistack.org/micro/v3/broker"
"go.unistack.org/micro/v3/client"
"go.unistack.org/micro/v3/codec"
"go.unistack.org/micro/v3/errors"
"go.unistack.org/micro/v3/metadata"
"go.unistack.org/micro/v3/options"
"go.unistack.org/micro/v3/semconv"
"go.unistack.org/micro/v3/tracer"
"go.unistack.org/micro-client-http/v3/status"
)
var _ client.Client = (*Client)(nil)
@@ -52,6 +49,8 @@ func NewClient(opts ...client.Option) *Client {
c.httpClient = defaultHTTPClient(dialer, clientOpts.TLSConfig)
}
c.funcPublish = c.fnPublish
c.funcBatchPublish = c.fnBatchPublish
c.funcCall = c.fnCall
c.funcStream = c.fnStream
@@ -73,6 +72,10 @@ func (c *Client) Init(opts ...client.Option) error {
c.funcCall = h(c.funcCall)
case client.HookStream:
c.funcStream = h(c.funcStream)
case client.HookPublish:
c.funcPublish = h(c.funcPublish)
case client.HookBatchPublish:
c.funcBatchPublish = h(c.funcBatchPublish)
}
})
@@ -83,6 +86,20 @@ func (c *Client) Options() client.Options {
return c.opts
}
func (c *Client) NewMessage(topic string, msg interface{}, opts ...client.MessageOption) client.Message {
msgOpts := client.NewMessageOptions(opts...)
if msgOpts.ContentType == "" {
msgOpts.ContentType = c.opts.ContentType
}
return &httpMessage{
topic: topic,
payload: msg,
opts: msgOpts,
}
}
func (c *Client) NewRequest(service, method string, req any, opts ...client.RequestOption) client.Request {
reqOpts := client.NewRequestOptions(opts...)
if reqOpts.ContentType == "" {
@@ -146,88 +163,14 @@ func (c *Client) Stream(ctx context.Context, req client.Request, opts ...client.
return c.funcStream(ctx, req, opts...)
}
func (c *Client) String() string {
return "http"
func (c *Client) Publish(ctx context.Context, p client.Message, opts ...client.PublishOption) error {
return c.funcPublish(ctx, p, opts...)
}
func (c *Client) BatchPublish(ctx context.Context, ps []client.Message, opts ...client.PublishOption) error {
return c.funcBatchPublish(ctx, ps, opts...)
}
func (c *Client) fnBatchPublish(ctx context.Context, ps []client.Message, opts ...client.PublishOption) error {
return c.publish(ctx, ps, opts...)
}
func (c *Client) Publish(ctx context.Context, p client.Message, opts ...client.PublishOption) error {
return c.funcPublish(ctx, p, opts...)
}
func (c *Client) fnPublish(ctx context.Context, p client.Message, opts ...client.PublishOption) error {
return c.publish(ctx, []client.Message{p}, opts...)
}
func (c *Client) publish(ctx context.Context, ps []client.Message, opts ...client.PublishOption) error {
var body []byte
options := client.NewPublishOptions(opts...)
// get proxy
exchange := ""
if v, ok := os.LookupEnv("MICRO_PROXY"); ok {
exchange = v
}
// get the exchange
if len(options.Exchange) > 0 {
exchange = options.Exchange
}
msgs := make([]*broker.Message, 0, len(ps))
omd, ok := metadata.FromOutgoingContext(ctx)
if !ok {
omd = metadata.New(2)
}
for _, p := range ps {
md := metadata.Copy(omd)
topic := p.Topic()
if len(exchange) > 0 {
topic = exchange
}
md.Set(metadata.HeaderTopic, topic)
iter := p.Metadata().Iterator()
var k, v string
for iter.Next(&k, &v) {
md.Set(k, v)
}
md[metadata.HeaderContentType] = p.ContentType()
// passed in raw data
if d, ok := p.Payload().(*codec.Frame); ok {
body = d.Data
} else {
// use codec for payload
cf, err := c.newCodec(p.ContentType())
if err != nil {
return errors.InternalServerError("go.micro.client", "%+v", err)
}
// set the body
b, err := cf.Marshal(p.Payload())
if err != nil {
return errors.InternalServerError("go.micro.client", "%+v", err)
}
body = b
}
msgs = append(msgs, &broker.Message{Header: md, Body: body})
}
return c.opts.Broker.BatchPublish(ctx, msgs,
broker.PublishContext(options.Context),
broker.PublishBodyOnly(options.BodyOnly),
)
}
func (c *Client) NewMessage(topic string, msg interface{}, opts ...client.MessageOption) client.Message {
return newHTTPEvent(topic, msg, c.opts.ContentType, opts...)
func (c *Client) String() string {
return "http"
}