2022-04-12 12:12:14 +00:00
|
|
|
package gowaku
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/protocol"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/protocol/pb"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/protocol/relay"
|
|
|
|
)
|
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
var relaySubscriptions map[string]*relay.Subscription = make(map[string]*relay.Subscription)
|
|
|
|
var relaySubsMutex sync.Mutex
|
2022-04-12 12:12:14 +00:00
|
|
|
|
|
|
|
func RelayEnoughPeers(topic string) string {
|
|
|
|
if wakuNode == nil {
|
|
|
|
return makeJSONResponse(errWakuNodeNotReady)
|
|
|
|
}
|
|
|
|
|
|
|
|
topicToCheck := protocol.DefaultPubsubTopic().String()
|
|
|
|
if topic != "" {
|
|
|
|
topicToCheck = topic
|
|
|
|
}
|
|
|
|
|
|
|
|
return prepareJSONResponse(wakuNode.Relay().EnoughPeersToPublishToTopic(topicToCheck), nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func relayPublish(msg pb.WakuMessage, pubsubTopic string, ms int) (string, error) {
|
|
|
|
if wakuNode == 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 := wakuNode.Relay().PublishToTopic(ctx, &msg, pubsubTopic)
|
|
|
|
return hexutil.Encode(hash), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func RelayPublish(messageJSON string, topic string, ms int) string {
|
|
|
|
msg, err := wakuMessage(messageJSON)
|
|
|
|
if err != nil {
|
|
|
|
return makeJSONResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hash, err := relayPublish(msg, getTopic(topic), int(ms))
|
|
|
|
return prepareJSONResponse(hash, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RelayPublishEncodeAsymmetric(messageJSON string, topic string, publicKey string, optionalSigningKey string, ms int) string {
|
|
|
|
msg, err := wakuMessageAsymmetricEncoding(messageJSON, publicKey, optionalSigningKey)
|
|
|
|
if err != nil {
|
|
|
|
return makeJSONResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hash, err := relayPublish(msg, getTopic(topic), int(ms))
|
|
|
|
|
|
|
|
return prepareJSONResponse(hash, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RelayPublishEncodeSymmetric(messageJSON string, topic string, symmetricKey string, optionalSigningKey string, ms int) string {
|
|
|
|
msg, err := wakuMessageSymmetricEncoding(messageJSON, symmetricKey, optionalSigningKey)
|
|
|
|
if err != nil {
|
|
|
|
return makeJSONResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hash, err := relayPublish(msg, getTopic(topic), int(ms))
|
|
|
|
|
|
|
|
return prepareJSONResponse(hash, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RelaySubscribe(topic string) string {
|
|
|
|
if wakuNode == nil {
|
|
|
|
return makeJSONResponse(errWakuNodeNotReady)
|
|
|
|
}
|
|
|
|
|
|
|
|
topicToSubscribe := getTopic(topic)
|
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
relaySubsMutex.Lock()
|
|
|
|
defer relaySubsMutex.Unlock()
|
2022-04-12 12:12:14 +00:00
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
_, ok := relaySubscriptions[topicToSubscribe]
|
2022-04-12 12:12:14 +00:00
|
|
|
if ok {
|
|
|
|
return makeJSONResponse(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
subscription, err := wakuNode.Relay().SubscribeToTopic(context.Background(), topicToSubscribe)
|
|
|
|
if err != nil {
|
|
|
|
return makeJSONResponse(err)
|
|
|
|
}
|
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
relaySubscriptions[topicToSubscribe] = subscription
|
2022-04-12 12:12:14 +00:00
|
|
|
|
2022-04-25 19:31:26 +00:00
|
|
|
go func(subscription *relay.Subscription) {
|
2022-04-12 12:12:14 +00:00
|
|
|
for envelope := range subscription.C {
|
|
|
|
send("message", toSubscriptionMessage(envelope))
|
|
|
|
}
|
2022-04-25 19:31:26 +00:00
|
|
|
}(subscription)
|
2022-04-12 12:12:14 +00:00
|
|
|
|
|
|
|
return makeJSONResponse(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RelayUnsubscribe(topic string) string {
|
|
|
|
if wakuNode == nil {
|
|
|
|
return makeJSONResponse(errWakuNodeNotReady)
|
|
|
|
}
|
|
|
|
|
|
|
|
topicToUnsubscribe := getTopic(topic)
|
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
relaySubsMutex.Lock()
|
|
|
|
defer relaySubsMutex.Unlock()
|
2022-04-12 12:12:14 +00:00
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
subscription, ok := relaySubscriptions[topicToUnsubscribe]
|
2022-04-12 12:12:14 +00:00
|
|
|
if ok {
|
|
|
|
return makeJSONResponse(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
subscription.Unsubscribe()
|
|
|
|
|
2022-08-09 13:48:23 +00:00
|
|
|
delete(relaySubscriptions, topicToUnsubscribe)
|
2022-04-12 12:12:14 +00:00
|
|
|
|
|
|
|
err := wakuNode.Relay().Unsubscribe(context.Background(), topicToUnsubscribe)
|
|
|
|
if err != nil {
|
|
|
|
return makeJSONResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeJSONResponse(nil)
|
|
|
|
}
|