mirror of https://github.com/status-im/go-waku.git
225 lines
5.6 KiB
Go
225 lines
5.6 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/multiformats/go-multiaddr"
|
|
cli "github.com/urfave/cli/v2"
|
|
"github.com/urfave/cli/v2/altsrc"
|
|
"github.com/waku-org/go-waku/logging"
|
|
"github.com/waku-org/go-waku/waku/v2/node"
|
|
"github.com/waku-org/go-waku/waku/v2/payload"
|
|
wps "github.com/waku-org/go-waku/waku/v2/peerstore"
|
|
"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"
|
|
"github.com/waku-org/go-waku/waku/v2/utils"
|
|
"go.uber.org/zap"
|
|
"go.uber.org/zap/zapcore"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
var log = utils.Logger().Named("basic-relay")
|
|
|
|
var ClusterID = altsrc.NewUintFlag(&cli.UintFlag{
|
|
Name: "cluster-id",
|
|
Value: 1,
|
|
Usage: "Cluster id that the node is running in. Node in a different cluster id is disconnected.",
|
|
Destination: &clusterID,
|
|
})
|
|
|
|
var Shard = altsrc.NewUintFlag(&cli.UintFlag{
|
|
Name: "shard",
|
|
Value: 0,
|
|
Usage: "shard that the node wants to subscribe and publish to.",
|
|
Destination: &shard,
|
|
})
|
|
|
|
var StaticNode = altsrc.NewStringFlag(&cli.StringFlag{
|
|
Name: "maddr",
|
|
Usage: "multiaddress of static node to connect to.",
|
|
Destination: &multiaddress,
|
|
})
|
|
|
|
var clusterID, shard uint
|
|
var pubsubTopicStr string
|
|
var multiaddress string
|
|
|
|
func main() {
|
|
|
|
cliFlags := []cli.Flag{
|
|
ClusterID,
|
|
Shard,
|
|
StaticNode,
|
|
}
|
|
|
|
app := &cli.App{
|
|
Name: "basic-relay-example",
|
|
Flags: cliFlags,
|
|
Action: func(c *cli.Context) error {
|
|
err := Execute()
|
|
if err != nil {
|
|
utils.Logger().Error("failure while executing wakunode", zap.Error(err))
|
|
switch e := err.(type) {
|
|
case cli.ExitCoder:
|
|
return e
|
|
case error:
|
|
return cli.Exit(err.Error(), 1)
|
|
}
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
}
|
|
|
|
func Execute() error {
|
|
|
|
var cTopic, err = protocol.NewContentTopic("basic-relay", "1", "test", "proto")
|
|
if err != nil {
|
|
fmt.Println("Invalid contentTopic")
|
|
return errors.New("invalid contentTopic")
|
|
}
|
|
contentTopic := cTopic.String()
|
|
hostAddr, _ := net.ResolveTCPAddr("tcp", "0.0.0.0:0")
|
|
key, err := randomHex(32)
|
|
if err != nil {
|
|
log.Error("Could not generate random key", zap.Error(err))
|
|
return err
|
|
}
|
|
prvKey, err := crypto.HexToECDSA(key)
|
|
if err != nil {
|
|
log.Error("Could not convert hex into ecdsa key", zap.Error(err))
|
|
return err
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
wakuNode, err := node.New(
|
|
node.WithPrivateKey(prvKey),
|
|
node.WithHostAddress(hostAddr),
|
|
node.WithNTP(),
|
|
node.WithWakuRelay(),
|
|
node.WithClusterID(uint16(clusterID)),
|
|
node.WithLogLevel(zapcore.DebugLevel),
|
|
)
|
|
if err != nil {
|
|
log.Error("Error creating wakunode", zap.Error(err))
|
|
return err
|
|
}
|
|
|
|
if err := wakuNode.Start(ctx); err != nil {
|
|
log.Error("Error starting wakunode", zap.Error(err))
|
|
return err
|
|
}
|
|
|
|
//Populate pubsubTopic if shard is specified. Otherwise it is derived via autosharing algorithm
|
|
if shard != 0 {
|
|
pubsubTopic := protocol.NewStaticShardingPubsubTopic(uint16(clusterID), uint16(shard))
|
|
pubsubTopicStr = pubsubTopic.String()
|
|
}
|
|
|
|
if multiaddress != "" {
|
|
maddr, err := multiaddr.NewMultiaddr(multiaddress)
|
|
if err != nil {
|
|
log.Info("Error decoding multiaddr ", zap.Error(err))
|
|
}
|
|
_, err = wakuNode.AddPeer(maddr, wps.Static,
|
|
[]string{pubsubTopicStr}, relay.WakuRelayID_v200)
|
|
if err != nil {
|
|
log.Info("Error adding filter peer on light node ", zap.Error(err))
|
|
}
|
|
}
|
|
|
|
go writeLoop(ctx, wakuNode, contentTopic)
|
|
go readLoop(ctx, wakuNode, contentTopic)
|
|
|
|
// Wait for a SIGINT or SIGTERM signal
|
|
ch := make(chan os.Signal, 1)
|
|
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM)
|
|
<-ch
|
|
fmt.Println("\n\n\nReceived signal, shutting down...")
|
|
|
|
// shut the node down
|
|
wakuNode.Stop()
|
|
return nil
|
|
}
|
|
|
|
func randomHex(n int) (string, error) {
|
|
bytes := make([]byte, n)
|
|
if _, err := rand.Read(bytes); err != nil {
|
|
return "", err
|
|
}
|
|
return hex.EncodeToString(bytes), nil
|
|
}
|
|
|
|
func write(ctx context.Context, wakuNode *node.WakuNode, contentTopic string, msgContent string) {
|
|
var version uint32 = 0
|
|
|
|
p := new(payload.Payload)
|
|
p.Data = []byte(wakuNode.ID() + ": " + msgContent)
|
|
p.Key = &payload.KeyInfo{Kind: payload.None}
|
|
|
|
payload, err := p.Encode(version)
|
|
if err != nil {
|
|
log.Error("Error encoding the payload", zap.Error(err))
|
|
return
|
|
}
|
|
|
|
msg := &pb.WakuMessage{
|
|
Payload: payload,
|
|
Version: proto.Uint32(version),
|
|
ContentTopic: contentTopic,
|
|
Timestamp: utils.GetUnixEpoch(wakuNode.Timesource()),
|
|
}
|
|
|
|
hash, err := wakuNode.Relay().Publish(ctx, msg, relay.WithPubSubTopic(pubsubTopicStr))
|
|
if err != nil {
|
|
log.Error("Error sending a message", zap.Error(err))
|
|
}
|
|
log.Info("Published msg,", zap.String("data", string(msg.Payload)), logging.HexBytes("hash", hash))
|
|
}
|
|
|
|
func writeLoop(ctx context.Context, wakuNode *node.WakuNode, contentTopic string) {
|
|
for {
|
|
time.Sleep(2 * time.Second)
|
|
write(ctx, wakuNode, contentTopic, "Hello world!")
|
|
}
|
|
}
|
|
|
|
func readLoop(ctx context.Context, wakuNode *node.WakuNode, contentTopic string) {
|
|
sub, err := wakuNode.Relay().Subscribe(ctx, protocol.NewContentFilter(pubsubTopicStr, contentTopic))
|
|
if err != nil {
|
|
log.Error("Could not subscribe", zap.Error(err))
|
|
return
|
|
}
|
|
|
|
for envelope := range sub[0].Ch {
|
|
if envelope.Message().ContentTopic != contentTopic {
|
|
continue
|
|
}
|
|
|
|
payload, err := payload.DecodePayload(envelope.Message(), &payload.KeyInfo{Kind: payload.None})
|
|
if err != nil {
|
|
log.Error("Error decoding payload", zap.Error(err))
|
|
continue
|
|
}
|
|
|
|
log.Info("Received msg, ", zap.String("data", string(payload.Data)))
|
|
}
|
|
}
|