[bugfix] Use our own (Batch)Deliver implementation for federated messages (#466)
This commit is contained in:
parent
094f032f74
commit
c365863ea9
|
@ -20,7 +20,10 @@ package transport
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
@ -28,16 +31,47 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func (t *transport) BatchDeliver(ctx context.Context, b []byte, recipients []*url.URL) error {
|
func (t *transport) BatchDeliver(ctx context.Context, b []byte, recipients []*url.URL) error {
|
||||||
return t.sigTransport.BatchDeliver(ctx, b, recipients)
|
// concurrently deliver to recipients; for each delivery, buffer the error if it fails
|
||||||
|
wg := sync.WaitGroup{}
|
||||||
|
errCh := make(chan error, len(recipients))
|
||||||
|
for _, recipient := range recipients {
|
||||||
|
wg.Add(1)
|
||||||
|
go func(r *url.URL) {
|
||||||
|
defer wg.Done()
|
||||||
|
if err := t.Deliver(ctx, b, r); err != nil {
|
||||||
|
errCh <- err
|
||||||
|
}
|
||||||
|
}(recipient)
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait until all deliveries have succeeded or failed
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
// receive any buffered errors
|
||||||
|
errs := make([]string, 0, len(recipients))
|
||||||
|
outer:
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case e := <-errCh:
|
||||||
|
errs = append(errs, e.Error())
|
||||||
|
default:
|
||||||
|
break outer
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(errs) > 0 {
|
||||||
|
return fmt.Errorf("BatchDeliver: at least one failure: %s", strings.Join(errs, "; "))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *transport) Deliver(ctx context.Context, b []byte, to *url.URL) error {
|
func (t *transport) Deliver(ctx context.Context, b []byte, to *url.URL) error {
|
||||||
// if the 'to' host is our own, just skip this delivery since we by definition already have the message!
|
// if the 'to' host is our own, just skip this delivery since we by definition already have the message!
|
||||||
if to.Host == viper.GetString(config.Keys.Host) {
|
if to.Host == viper.GetString(config.Keys.Host) || to.Host == viper.GetString(config.Keys.AccountDomain) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
l := logrus.WithField("func", "Deliver")
|
logrus.Debugf("Deliver: posting as %s to %s", t.pubKeyID, to.String())
|
||||||
l.Debugf("performing POST to %s", to.String())
|
|
||||||
return t.sigTransport.Deliver(ctx, b, to)
|
return t.sigTransport.Deliver(ctx, b, to)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue