|
| 1 | +import |
| 2 | + std/[tables, times, sequtils], |
| 3 | + stew/byteutils, |
| 4 | + stew/shims/net, |
| 5 | + chronicles, |
| 6 | + results, |
| 7 | + chronos, |
| 8 | + confutils, |
| 9 | + libp2p/crypto/crypto, |
| 10 | + eth/keys, |
| 11 | + eth/p2p/discoveryv5/enr |
| 12 | + |
| 13 | +import ../vendor/mix/src/entry_connection, |
| 14 | + ../vendor/mix/src/protocol |
| 15 | + |
| 16 | +import |
| 17 | + waku/[ |
| 18 | + common/logging, |
| 19 | + node/peer_manager, |
| 20 | + waku_core, |
| 21 | + waku_core/codecs, |
| 22 | + waku_node, |
| 23 | + waku_enr, |
| 24 | + discovery/waku_discv5, |
| 25 | + factory/builder, |
| 26 | + waku_lightpush/client |
| 27 | + ] |
| 28 | + |
| 29 | +proc now*(): Timestamp = |
| 30 | + getNanosecondTime(getTime().toUnixFloat()) |
| 31 | + |
| 32 | +# careful if running pub and sub in the same machine |
| 33 | +const wakuPort = 60000 |
| 34 | + |
| 35 | +const clusterId = 2 |
| 36 | +const shardId = @[0'u16] |
| 37 | + |
| 38 | +const |
| 39 | + LightpushPeer = |
| 40 | + "/ip4/127.0.0.1/tcp/60005/p2p/16Uiu2HAmRhxmCHBYdXt1RibXrjAUNJbduAhzaTHwFCZT4qWnqZAu" |
| 41 | + LightpushPubsubTopic = PubsubTopic("/waku/2/rs/2/0") |
| 42 | + LightpushContentTopic = ContentTopic("/examples/1/light-pubsub-mix-example/proto") |
| 43 | + |
| 44 | +proc setupAndPublish(rng: ref HmacDrbgContext) {.async.} = |
| 45 | + # use notice to filter all waku messaging |
| 46 | + setupLog(logging.LogLevel.DEBUG, logging.LogFormat.TEXT) |
| 47 | + |
| 48 | + notice "starting publisher", wakuPort = wakuPort |
| 49 | + |
| 50 | + let |
| 51 | + nodeKey = crypto.PrivateKey.random(Secp256k1, rng[]).get() |
| 52 | + ip = parseIpAddress("0.0.0.0") |
| 53 | + flags = CapabilitiesBitfield.init(relay = true) |
| 54 | + |
| 55 | + let relayShards = RelayShards.init(clusterId, shardId).valueOr: |
| 56 | + error "Relay shards initialization failed", error = error |
| 57 | + quit(QuitFailure) |
| 58 | + |
| 59 | + var enrBuilder = EnrBuilder.init(nodeKey) |
| 60 | + enrBuilder.withWakuRelaySharding(relayShards).expect( |
| 61 | + "Building ENR with relay sharding failed" |
| 62 | + ) |
| 63 | + |
| 64 | + let recordRes = enrBuilder.build() |
| 65 | + let record = |
| 66 | + if recordRes.isErr(): |
| 67 | + error "failed to create enr record", error = recordRes.error |
| 68 | + quit(QuitFailure) |
| 69 | + else: |
| 70 | + recordRes.get() |
| 71 | + |
| 72 | + var builder = WakuNodeBuilder.init() |
| 73 | + builder.withNodeKey(nodeKey) |
| 74 | + builder.withRecord(record) |
| 75 | + builder.withNetworkConfigurationDetails(ip, Port(wakuPort)).tryGet() |
| 76 | + let node = builder.build().tryGet() |
| 77 | + |
| 78 | + node.mountMetadata(clusterId).expect("failed to mount waku metadata protocol") |
| 79 | + node.mountLightPushClient() |
| 80 | + ( |
| 81 | + await node.mountMix("401dd1eb5582f6dc9488d424aa26ed1092becefcf8543172e6d92c17ed07265a") |
| 82 | + ).isOkOr: |
| 83 | + error "failed to mount waku mix protocol: ", error = $error |
| 84 | + return |
| 85 | + |
| 86 | + let conn = MixEntryConnection.newConn( |
| 87 | + "/ip4/127.0.0.1/tcp/60001/p2p/16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o", |
| 88 | + ProtocolType.fromString(WakuLightPushCodec), |
| 89 | + node.mix) |
| 90 | + |
| 91 | + await node.start() |
| 92 | + node.peerManager.start() |
| 93 | + |
| 94 | + notice "publisher service started" |
| 95 | + while true: |
| 96 | + let text = "hi there i'm a publisher" |
| 97 | + let message = WakuMessage( |
| 98 | + payload: toBytes(text), # content of the message |
| 99 | + contentTopic: LightpushContentTopic, # content topic to publish to |
| 100 | + ephemeral: true, # tell store nodes to not store it |
| 101 | + timestamp: now(), |
| 102 | + ) # current timestamp |
| 103 | + |
| 104 | + let res = |
| 105 | + await node.wakuLightpushClient.publishWithConn(LightpushPubsubTopic, message, conn) |
| 106 | + |
| 107 | + if res.isOk: |
| 108 | + notice "published message", |
| 109 | + text = text, |
| 110 | + timestamp = message.timestamp, |
| 111 | + psTopic = LightpushPubsubTopic, |
| 112 | + contentTopic = LightpushContentTopic |
| 113 | + else: |
| 114 | + error "failed to publish message", error = res.error |
| 115 | + |
| 116 | + await sleepAsync(5000) |
| 117 | + break |
| 118 | + |
| 119 | +when isMainModule: |
| 120 | + let rng = crypto.newRng() |
| 121 | + asyncSpawn setupAndPublish(rng) |
| 122 | + runForever() |
0 commit comments