mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
// Package mux provides the way to listen for updates from the cloud
|
|
package mux
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync/atomic"
|
|
|
|
"github.com/cenkalti/backoff/v4"
|
|
"github.com/hashicorp/go-multierror"
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/pomerium/pomerium/internal/zero/apierror"
|
|
"github.com/pomerium/pomerium/pkg/fanout"
|
|
"github.com/pomerium/pomerium/pkg/zero/connect"
|
|
)
|
|
|
|
// Mux is the service that listens for updates from the cloud
|
|
type Mux struct {
|
|
client connect.ConnectClient
|
|
mux *fanout.FanOut[message]
|
|
|
|
ready chan struct{}
|
|
|
|
connected atomic.Bool
|
|
}
|
|
|
|
// New creates a new mux service that listens for updates from the cloud
|
|
func New(client connect.ConnectClient) *Mux {
|
|
svc := &Mux{
|
|
client: client,
|
|
ready: make(chan struct{}),
|
|
}
|
|
return svc
|
|
}
|
|
|
|
// Run starts the service
|
|
func (svc *Mux) Run(ctx context.Context, opts ...fanout.Option) error {
|
|
ctx, cancel := context.WithCancelCause(ctx)
|
|
defer func() { cancel(ctx.Err()) }()
|
|
|
|
svc.mux = fanout.Start[message](ctx, opts...)
|
|
close(svc.ready)
|
|
|
|
err := svc.run(ctx)
|
|
if err != nil {
|
|
cancel(err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (svc *Mux) run(ctx context.Context) error {
|
|
b := backoff.NewExponentialBackOff()
|
|
b.MaxElapsedTime = 0
|
|
|
|
return backoff.Retry(func() error {
|
|
err := svc.subscribeAndDispatch(ctx, b.Reset)
|
|
if apierror.IsTerminalError(err) {
|
|
return backoff.Permanent(err)
|
|
}
|
|
return err
|
|
}, backoff.WithContext(b, ctx))
|
|
}
|
|
|
|
func (svc *Mux) subscribeAndDispatch(ctx context.Context, onConnected func()) (err error) {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
defer cancel()
|
|
|
|
stream, err := svc.client.Subscribe(ctx, &connect.SubscribeRequest{})
|
|
if err != nil {
|
|
return fmt.Errorf("subscribe: %w", err)
|
|
}
|
|
onConnected()
|
|
|
|
if err = svc.onConnected(ctx); err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
err = multierror.Append(err, svc.onDisconnected(ctx)).ErrorOrNil()
|
|
}()
|
|
|
|
log.Ctx(ctx).Info().Msg("subscribed to connect service")
|
|
for {
|
|
msg, err := stream.Recv()
|
|
log.Ctx(ctx).Info().Interface("msg", msg).Err(err).Msg("receive")
|
|
if err != nil {
|
|
return fmt.Errorf("receive: %w", err)
|
|
}
|
|
err = svc.onMessage(ctx, msg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|