go-waku/library/relay.go

128 lines
3.0 KiB
Go
Raw Normal View History

2023-08-10 13:30:38 +00:00
package library
import (
"context"
"time"
"sync"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/waku-org/go-waku/waku/v2/protocol"
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/go-waku/waku/v2/protocol/relay"
)
var relaySubscriptions map[string]*relay.Subscription = make(map[string]*relay.Subscription)
var relaySubsMutex sync.Mutex
2023-08-10 13:30:38 +00:00
// RelayEnoughPeers determines if there are enough peers to publish a message on a topic
func RelayEnoughPeers(topic string) (bool, error) {
if wakuState.node == nil {
2023-08-10 13:30:38 +00:00
return false, errWakuNodeNotReady
}
topicToCheck := protocol.DefaultPubsubTopic().String()
if topic != "" {
topicToCheck = topic
}
2023-08-10 13:30:38 +00:00
return wakuState.node.Relay().EnoughPeersToPublishToTopic(topicToCheck), nil
}
func relayPublish(msg *pb.WakuMessage, pubsubTopic string, ms int) (string, error) {
if wakuState.node == nil {
return "", errWakuNodeNotReady
}
var ctx context.Context
var cancel context.CancelFunc
if ms > 0 {
ctx, cancel = context.WithTimeout(context.Background(), time.Duration(int(ms))*time.Millisecond)
defer cancel()
} else {
ctx = context.Background()
}
hash, err := wakuState.node.Relay().PublishToTopic(ctx, msg, pubsubTopic)
return hexutil.Encode(hash), err
}
2023-08-10 13:30:38 +00:00
// RelayPublish publishes a message using waku relay and returns the message ID
func RelayPublish(messageJSON string, topic string, ms int) (string, error) {
msg, err := wakuMessage(messageJSON)
if err != nil {
2023-08-10 13:30:38 +00:00
return "", err
}
2023-08-10 13:30:38 +00:00
return relayPublish(msg, getTopic(topic), int(ms))
}
func relaySubscribe(topic string) error {
topicToSubscribe := getTopic(topic)
relaySubsMutex.Lock()
defer relaySubsMutex.Unlock()
_, ok := relaySubscriptions[topicToSubscribe]
if ok {
return nil
}
subscription, err := wakuState.node.Relay().SubscribeToTopic(context.Background(), topicToSubscribe)
if err != nil {
return err
}
relaySubscriptions[topicToSubscribe] = subscription
go func(subscription *relay.Subscription) {
2023-05-05 09:49:15 +00:00
for envelope := range subscription.Ch {
send("message", toSubscriptionMessage(envelope))
}
}(subscription)
return nil
}
2023-08-10 13:30:38 +00:00
// RelaySubscribe subscribes to a WakuRelay topic.
func RelaySubscribe(topic string) error {
if wakuState.node == nil {
2023-08-10 13:30:38 +00:00
return errWakuNodeNotReady
}
2023-08-10 13:30:38 +00:00
return relaySubscribe(topic)
}
2023-08-10 13:30:38 +00:00
// RelayTopics returns a list of pubsub topics the node is subscribed to in WakuRelay
func RelayTopics() (string, error) {
2023-03-29 19:20:31 +00:00
if wakuState.node == nil {
2023-08-10 13:30:38 +00:00
return "", errWakuNodeNotReady
2023-03-29 19:20:31 +00:00
}
2023-08-10 13:30:38 +00:00
return marshalJSON(wakuState.node.Relay().Topics())
2023-03-29 19:20:31 +00:00
}
2023-08-10 13:30:38 +00:00
// RelayUnsubscribe closes the pubsub subscription to a pubsub topic
func RelayUnsubscribe(topic string) error {
if wakuState.node == nil {
2023-08-10 13:30:38 +00:00
return errWakuNodeNotReady
}
topicToUnsubscribe := getTopic(topic)
relaySubsMutex.Lock()
defer relaySubsMutex.Unlock()
subscription, ok := relaySubscriptions[topicToUnsubscribe]
if ok {
2023-08-10 13:30:38 +00:00
return nil
}
subscription.Unsubscribe()
delete(relaySubscriptions, topicToUnsubscribe)
2023-08-10 13:30:38 +00:00
return wakuState.node.Relay().Unsubscribe(context.Background(), topicToUnsubscribe)
}