Files
nostrlib/subscription.go

78 lines
1.6 KiB
Go

package nostr
import (
"context"
"sync"
)
type Subscription struct {
id string
conn *Connection
mutex sync.Mutex
Relay *Relay
Filters Filters
Events chan *Event
EndOfStoredEvents chan struct{}
Context context.Context
stopped bool
emitEose sync.Once
}
type EventMessage struct {
Event Event
Relay string
}
// Unsub closes the subscription, sending "CLOSE" to relay as in NIP-01.
// Unsub() also closes the channel sub.Events.
func (sub *Subscription) Unsub() {
sub.mutex.Lock()
defer sub.mutex.Unlock()
sub.conn.WriteJSON([]interface{}{"CLOSE", sub.id})
if sub.stopped == false && sub.Events != nil {
close(sub.Events)
}
sub.stopped = true
}
// Sub sets sub.Filters and then calls sub.Fire(ctx).
func (sub *Subscription) Sub(ctx context.Context, filters Filters) {
sub.Filters = filters
sub.Fire(ctx)
}
// Fire sends the "REQ" command to the relay.
// When ctx is cancelled, sub.Unsub() is called, closing the subscription.
func (sub *Subscription) Fire(ctx context.Context) {
ctx, cancel := context.WithCancel(ctx)
sub.Context = ctx
message := []interface{}{"REQ", sub.id}
for _, filter := range sub.Filters {
message = append(message, filter)
}
sub.conn.WriteJSON(message)
// the subscription ends once the context is canceled
go func() {
<-ctx.Done()
sub.Unsub()
}()
// or when the relay connection is closed
go func() {
<-sub.Relay.ConnectionContext.Done()
// this will close the Events channel,
// which can be used by an external reader to learn the subscription has stopped
sub.Unsub()
// we also cancel the context
cancel()
}()
}