2023-08-10 13:30:38 +00:00
|
|
|
package library
|
2022-04-12 12:12:14 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
2022-11-09 19:53:01 +00:00
|
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
|
2022-04-12 12:12:14 +00:00
|
|
|
|
2022-10-19 19:39:32 +00:00
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
2022-11-09 19:53:01 +00:00
|
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/lightpush"
|
2022-04-12 12:12:14 +00:00
|
|
|
)
|
|
|
|
|
2023-12-15 14:46:21 +00:00
|
|
|
func lightpushPublish(instance *WakuInstance, msg *pb.WakuMessage, pubsubTopic string, peerID string, ms int) (string, error) {
|
|
|
|
if err := validateInstance(instance, MustBeStarted); err != nil {
|
|
|
|
return "", err
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ctx context.Context
|
|
|
|
var cancel context.CancelFunc
|
|
|
|
|
|
|
|
if ms > 0 {
|
2023-12-15 14:46:21 +00:00
|
|
|
ctx, cancel = context.WithTimeout(instance.ctx, time.Duration(int(ms))*time.Millisecond)
|
2022-04-12 12:12:14 +00:00
|
|
|
defer cancel()
|
|
|
|
} else {
|
2023-12-15 14:46:21 +00:00
|
|
|
ctx = instance.ctx
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|
|
|
|
|
2024-02-05 12:53:15 +00:00
|
|
|
var lpOptions []lightpush.RequestOption
|
2022-04-12 12:12:14 +00:00
|
|
|
if peerID != "" {
|
|
|
|
p, err := peer.Decode(peerID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
lpOptions = append(lpOptions, lightpush.WithPeer(p))
|
|
|
|
} else {
|
2022-08-15 17:13:45 +00:00
|
|
|
lpOptions = append(lpOptions, lightpush.WithAutomaticPeerSelection())
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|
|
|
|
|
2023-09-29 05:13:25 +00:00
|
|
|
if pubsubTopic != "" {
|
|
|
|
lpOptions = append(lpOptions, lightpush.WithPubSubTopic(pubsubTopic))
|
|
|
|
}
|
|
|
|
|
2023-12-15 14:46:21 +00:00
|
|
|
hash, err := instance.node.Lightpush().Publish(ctx, msg, lpOptions...)
|
2024-05-03 16:07:03 +00:00
|
|
|
|
|
|
|
return hash.String(), err
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|
|
|
|
|
2023-08-10 13:30:38 +00:00
|
|
|
// LightpushPublish is used to publish a WakuMessage in a pubsub topic using Lightpush protocol
|
2023-12-15 14:46:21 +00:00
|
|
|
func LightpushPublish(instance *WakuInstance, messageJSON string, pubsubTopic string, peerID string, ms int) (string, error) {
|
2022-04-12 12:12:14 +00:00
|
|
|
msg, err := wakuMessage(messageJSON)
|
|
|
|
if err != nil {
|
2023-08-10 13:30:38 +00:00
|
|
|
return "", err
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|
|
|
|
|
2023-12-15 14:46:21 +00:00
|
|
|
return lightpushPublish(instance, msg, pubsubTopic, peerID, ms)
|
2022-04-12 12:12:14 +00:00
|
|
|
}
|