2021-03-18 23:21:45 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/rand"
|
2021-04-07 21:16:29 +00:00
|
|
|
"encoding/binary"
|
2021-03-18 23:21:45 +00:00
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
|
2021-03-23 14:46:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2021-03-18 23:21:45 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/node"
|
|
|
|
"github.com/status-im/go-waku/waku/v2/protocol"
|
2021-03-22 16:45:13 +00:00
|
|
|
store "github.com/status-im/go-waku/waku/v2/protocol/waku_store"
|
2021-03-18 23:21:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func randomHex(n int) (string, error) {
|
|
|
|
bytes := make([]byte, n)
|
|
|
|
if _, err := rand.Read(bytes); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return hex.EncodeToString(bytes), nil
|
|
|
|
}
|
|
|
|
|
2021-03-22 16:45:13 +00:00
|
|
|
type DBStore struct {
|
|
|
|
store.MessageProvider
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dbStore *DBStore) Put(message *protocol.WakuMessage) error {
|
|
|
|
fmt.Println("TODO: Implement MessageProvider.Put")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dbStore *DBStore) GetAll() ([]*protocol.WakuMessage, error) {
|
|
|
|
fmt.Println("TODO: Implement MessageProvider.GetAll. Returning a sample message")
|
|
|
|
exampleMessage := new(protocol.WakuMessage)
|
2021-04-07 21:16:29 +00:00
|
|
|
exampleMessage.ContentTopic = 1
|
2021-03-22 16:45:13 +00:00
|
|
|
exampleMessage.Payload = []byte("Hello!")
|
2021-04-07 21:16:29 +00:00
|
|
|
exampleMessage.Version = 0
|
2021-03-22 16:45:13 +00:00
|
|
|
|
|
|
|
return []*protocol.WakuMessage{exampleMessage}, nil
|
|
|
|
}
|
|
|
|
|
2021-03-18 23:21:45 +00:00
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "waku",
|
|
|
|
Short: "Start a waku node",
|
|
|
|
Long: `Start a waku node...`,
|
|
|
|
// Uncomment the following line if your bare application
|
|
|
|
// has an action associated with it:
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
port, _ := cmd.Flags().GetInt("port")
|
|
|
|
relay, _ := cmd.Flags().GetBool("relay")
|
|
|
|
key, _ := cmd.Flags().GetString("nodekey")
|
|
|
|
store, _ := cmd.Flags().GetBool("store")
|
|
|
|
storenode, _ := cmd.Flags().GetString("storenode")
|
|
|
|
staticnodes, _ := cmd.Flags().GetStringSlice("staticnodes")
|
|
|
|
query, _ := cmd.Flags().GetBool("query")
|
|
|
|
|
2021-03-30 14:13:33 +00:00
|
|
|
hostAddr, _ := net.ResolveTCPAddr("tcp", fmt.Sprint("0.0.0.0:", port))
|
2021-03-18 23:21:45 +00:00
|
|
|
|
|
|
|
if key == "" {
|
|
|
|
var err error
|
|
|
|
key, err = randomHex(32)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Could not generate random key")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-23 14:46:16 +00:00
|
|
|
prvKey, err := crypto.HexToECDSA(key)
|
2021-03-18 23:21:45 +00:00
|
|
|
|
|
|
|
ctx := context.Background()
|
2021-03-30 14:13:33 +00:00
|
|
|
wakuNode, err := node.New(ctx, prvKey, []net.Addr{hostAddr})
|
2021-03-18 23:21:45 +00:00
|
|
|
if err != nil {
|
2021-04-08 18:49:03 +00:00
|
|
|
fmt.Println(err)
|
2021-03-18 23:21:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if relay {
|
|
|
|
wakuNode.MountRelay()
|
|
|
|
}
|
|
|
|
|
|
|
|
if store {
|
2021-04-08 18:49:03 +00:00
|
|
|
err := wakuNode.MountStore(new(DBStore))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2021-03-18 23:21:45 +00:00
|
|
|
wakuNode.StartStore()
|
|
|
|
}
|
|
|
|
|
|
|
|
if storenode != "" && !store {
|
|
|
|
fmt.Println("Store protocol was not started")
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
if storenode != "" {
|
|
|
|
wakuNode.AddStorePeer(storenode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(staticnodes) > 0 {
|
|
|
|
for _, n := range staticnodes {
|
|
|
|
go wakuNode.DialPeer(n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if query {
|
|
|
|
if !store {
|
|
|
|
fmt.Println("Store protocol was not started")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-07 21:16:29 +00:00
|
|
|
var DefaultContentTopic uint32 = binary.LittleEndian.Uint32([]byte("dingpu"))
|
|
|
|
|
|
|
|
response, err := wakuNode.Query(DefaultContentTopic, true, 10)
|
2021-03-18 23:21:45 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(fmt.Sprint("Page Size: ", response.PagingInfo.PageSize))
|
|
|
|
fmt.Println(fmt.Sprint("Direction: ", response.PagingInfo.Direction))
|
2021-04-04 18:42:08 +00:00
|
|
|
if response.PagingInfo.Cursor != nil {
|
|
|
|
fmt.Println(fmt.Sprint("Cursor - ReceivedTime: ", response.PagingInfo.Cursor.ReceivedTime))
|
|
|
|
fmt.Println(fmt.Sprint("Cursor - Digest: ", hex.EncodeToString(response.PagingInfo.Cursor.Digest)))
|
|
|
|
}
|
2021-03-18 23:21:45 +00:00
|
|
|
fmt.Println("Messages:")
|
|
|
|
for i, msg := range response.Messages {
|
|
|
|
fmt.Println(fmt.Sprint(i, "- ", string(msg.Payload))) // Normaly you'd have to decode these, but i'm using v0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2021-03-22 16:45:13 +00:00
|
|
|
wakuNode.Stop()
|
2021-03-18 23:21:45 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
|
|
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
|
|
|
func Execute() {
|
|
|
|
cobra.CheckErr(rootCmd.Execute())
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
|
|
|
|
rootCmd.Flags().Int("port", 9000, "Libp2p TCP listening port (0 for random)")
|
|
|
|
rootCmd.Flags().String("nodekey", "", "P2P node private key as hex (default random)")
|
|
|
|
rootCmd.Flags().StringSlice("staticnodes", []string{}, "Multiaddr of peer to directly connect with. Argument may be repeated")
|
|
|
|
rootCmd.Flags().Bool("store", false, "Enable store protocol")
|
|
|
|
rootCmd.Flags().String("storenode", "", "Multiaddr of peer to connect with for waku store protocol")
|
|
|
|
rootCmd.Flags().Bool("relay", true, "Enable relay protocol")
|
|
|
|
rootCmd.Flags().Bool("query", false, "Asks the storenode for stored messages")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
|
|
|
viper.AutomaticEnv() // read in environment variables that match
|
|
|
|
}
|