381 lines
11 KiB
Go
381 lines
11 KiB
Go
package gethbridge
|
|
|
|
import (
|
|
"context"
|
|
"crypto/ecdsa"
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
"github.com/multiformats/go-multiaddr"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/waku-org/go-waku/waku/v2/api/history"
|
|
"github.com/waku-org/go-waku/waku/v2/protocol"
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/store"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
|
|
gocommon "github.com/status-im/status-go/common"
|
|
"github.com/status-im/status-go/connection"
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
"github.com/status-im/status-go/wakuv2"
|
|
wakucommon "github.com/status-im/status-go/wakuv2/common"
|
|
)
|
|
|
|
type gethWakuV2Wrapper struct {
|
|
waku *wakuv2.Waku
|
|
}
|
|
|
|
// NewGethWakuWrapper returns an object that wraps Geth's Waku in a types interface
|
|
func NewGethWakuV2Wrapper(w *wakuv2.Waku) types.Waku {
|
|
if w == nil {
|
|
panic("waku cannot be nil")
|
|
}
|
|
|
|
return &gethWakuV2Wrapper{
|
|
waku: w,
|
|
}
|
|
}
|
|
|
|
// GetGethWhisperFrom retrieves the underlying whisper Whisper struct from a wrapped Whisper interface
|
|
func GetGethWakuV2From(m types.Waku) *wakuv2.Waku {
|
|
return m.(*gethWakuV2Wrapper).waku
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) PublicWakuAPI() types.PublicWakuAPI {
|
|
return NewGethPublicWakuV2APIWrapper(wakuv2.NewPublicWakuAPI(w.waku))
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) Version() uint {
|
|
return 2
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) PeerCount() int {
|
|
return w.waku.PeerCount()
|
|
}
|
|
|
|
// DEPRECATED: Not used in WakuV2
|
|
func (w *gethWakuV2Wrapper) MinPow() float64 {
|
|
return 0
|
|
}
|
|
|
|
// MaxMessageSize returns the MaxMessageSize set
|
|
func (w *gethWakuV2Wrapper) MaxMessageSize() uint32 {
|
|
return w.waku.MaxMessageSize()
|
|
}
|
|
|
|
// DEPRECATED: not used in WakuV2
|
|
func (w *gethWakuV2Wrapper) BloomFilter() []byte {
|
|
return nil
|
|
}
|
|
|
|
// GetCurrentTime returns current time.
|
|
func (w *gethWakuV2Wrapper) GetCurrentTime() time.Time {
|
|
return w.waku.CurrentTime()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) SubscribeEnvelopeEvents(eventsProxy chan<- types.EnvelopeEvent) types.Subscription {
|
|
events := make(chan wakucommon.EnvelopeEvent, 100) // must be buffered to prevent blocking whisper
|
|
go func() {
|
|
defer gocommon.LogOnPanic()
|
|
for e := range events {
|
|
eventsProxy <- *NewWakuV2EnvelopeEventWrapper(&e)
|
|
}
|
|
}()
|
|
|
|
return NewGethSubscriptionWrapper(w.waku.SubscribeEnvelopeEvents(events))
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) GetPrivateKey(id string) (*ecdsa.PrivateKey, error) {
|
|
return w.waku.GetPrivateKey(id)
|
|
}
|
|
|
|
// AddKeyPair imports a asymmetric private key and returns a deterministic identifier.
|
|
func (w *gethWakuV2Wrapper) AddKeyPair(key *ecdsa.PrivateKey) (string, error) {
|
|
return w.waku.AddKeyPair(key)
|
|
}
|
|
|
|
// DeleteKeyPair deletes the key with the specified ID if it exists.
|
|
func (w *gethWakuV2Wrapper) DeleteKeyPair(keyID string) bool {
|
|
return w.waku.DeleteKeyPair(keyID)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) AddSymKeyDirect(key []byte) (string, error) {
|
|
return w.waku.AddSymKeyDirect(key)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) AddSymKeyFromPassword(password string) (string, error) {
|
|
return w.waku.AddSymKeyFromPassword(password)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) DeleteSymKey(id string) bool {
|
|
return w.waku.DeleteSymKey(id)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) GetSymKey(id string) ([]byte, error) {
|
|
return w.waku.GetSymKey(id)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) Subscribe(opts *types.SubscriptionOptions) (string, error) {
|
|
var (
|
|
err error
|
|
keyAsym *ecdsa.PrivateKey
|
|
keySym []byte
|
|
)
|
|
|
|
if opts.SymKeyID != "" {
|
|
keySym, err = w.GetSymKey(opts.SymKeyID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
if opts.PrivateKeyID != "" {
|
|
keyAsym, err = w.GetPrivateKey(opts.PrivateKeyID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
f, err := w.createFilterWrapper("", keyAsym, keySym, opts.PubsubTopic, opts.Topics)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
id, err := w.waku.Subscribe(GetWakuV2FilterFrom(f))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
f.(*wakuV2FilterWrapper).id = id
|
|
return id, nil
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) GetStats() types.StatsSummary {
|
|
return w.waku.GetStats()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) GetFilter(id string) types.Filter {
|
|
return NewWakuV2FilterWrapper(w.waku.GetFilter(id), id)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) Unsubscribe(ctx context.Context, id string) error {
|
|
return w.waku.Unsubscribe(ctx, id)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) UnsubscribeMany(ids []string) error {
|
|
return w.waku.UnsubscribeMany(ids)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) createFilterWrapper(id string, keyAsym *ecdsa.PrivateKey, keySym []byte, pubsubTopic string, topics [][]byte) (types.Filter, error) {
|
|
return NewWakuV2FilterWrapper(&wakucommon.Filter{
|
|
KeyAsym: keyAsym,
|
|
KeySym: keySym,
|
|
ContentTopics: wakucommon.NewTopicSetFromBytes(topics),
|
|
PubsubTopic: pubsubTopic,
|
|
Messages: wakucommon.NewMemoryMessageStore(),
|
|
}, id), nil
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) StartDiscV5() error {
|
|
return w.waku.StartDiscV5()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) StopDiscV5() error {
|
|
return w.waku.StopDiscV5()
|
|
}
|
|
|
|
// Subscribe to a pubsub topic, passing an optional public key if the pubsub topic is protected
|
|
func (w *gethWakuV2Wrapper) SubscribeToPubsubTopic(topic string, optPublicKey *ecdsa.PublicKey) error {
|
|
return w.waku.SubscribeToPubsubTopic(topic, optPublicKey)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) UnsubscribeFromPubsubTopic(topic string) error {
|
|
return w.waku.UnsubscribeFromPubsubTopic(topic)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) RetrievePubsubTopicKey(topic string) (*ecdsa.PrivateKey, error) {
|
|
return w.waku.RetrievePubsubTopicKey(topic)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) StorePubsubTopicKey(topic string, privKey *ecdsa.PrivateKey) error {
|
|
return w.waku.StorePubsubTopicKey(topic, privKey)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) RemovePubsubTopicKey(topic string) error {
|
|
return w.waku.RemovePubsubTopicKey(topic)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) AddStorePeer(address multiaddr.Multiaddr) (peer.ID, error) {
|
|
return w.waku.AddStorePeer(address)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) AddRelayPeer(address multiaddr.Multiaddr) (peer.ID, error) {
|
|
return w.waku.AddRelayPeer(address)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) Peers() types.PeerStats {
|
|
return w.waku.Peers()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) DialPeer(address multiaddr.Multiaddr) error {
|
|
return w.waku.DialPeer(address)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) DialPeerByID(peerID peer.ID) error {
|
|
return w.waku.DialPeerByID(peerID)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ListenAddresses() ([]multiaddr.Multiaddr, error) {
|
|
return w.waku.ListenAddresses()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) RelayPeersByTopic(topic string) (*types.PeerList, error) {
|
|
return w.waku.RelayPeersByTopic(topic)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ENR() (*enode.Node, error) {
|
|
return w.waku.ENR()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) DropPeer(peerID peer.ID) error {
|
|
return w.waku.DropPeer(peerID)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ProcessingP2PMessages() bool {
|
|
return w.waku.ProcessingP2PMessages()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) MarkP2PMessageAsProcessed(hash common.Hash) {
|
|
w.waku.MarkP2PMessageAsProcessed(hash)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) SubscribeToConnStatusChanges() (*types.ConnStatusSubscription, error) {
|
|
return w.waku.SubscribeToConnStatusChanges(), nil
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) SetCriteriaForMissingMessageVerification(peerID peer.ID, pubsubTopic string, contentTopics []types.TopicType) error {
|
|
var cTopics []string
|
|
for _, ct := range contentTopics {
|
|
cTopics = append(cTopics, wakucommon.BytesToTopic(ct.Bytes()).ContentTopic())
|
|
}
|
|
pubsubTopic = w.waku.GetPubsubTopic(pubsubTopic)
|
|
w.waku.SetTopicsToVerifyForMissingMessages(peerID, pubsubTopic, cTopics)
|
|
|
|
// No err can be be generated by this function. The function returns an error
|
|
// Just so there's compatibility with GethWakuWrapper from V1
|
|
return nil
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ConnectionChanged(state connection.State) {
|
|
w.waku.ConnectionChanged(state)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ClearEnvelopesCache() {
|
|
w.waku.ClearEnvelopesCache()
|
|
}
|
|
|
|
type wakuV2FilterWrapper struct {
|
|
filter *wakucommon.Filter
|
|
id string
|
|
}
|
|
|
|
// NewWakuFilterWrapper returns an object that wraps Geth's Filter in a types interface
|
|
func NewWakuV2FilterWrapper(f *wakucommon.Filter, id string) types.Filter {
|
|
if f.Messages == nil {
|
|
panic("Messages should not be nil")
|
|
}
|
|
|
|
return &wakuV2FilterWrapper{
|
|
filter: f,
|
|
id: id,
|
|
}
|
|
}
|
|
|
|
// GetWakuFilterFrom retrieves the underlying whisper Filter struct from a wrapped Filter interface
|
|
func GetWakuV2FilterFrom(f types.Filter) *wakucommon.Filter {
|
|
return f.(*wakuV2FilterWrapper).filter
|
|
}
|
|
|
|
// ID returns the filter ID
|
|
func (w *wakuV2FilterWrapper) ID() string {
|
|
return w.id
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ConfirmMessageDelivered(hashes []common.Hash) {
|
|
w.waku.ConfirmMessageDelivered(hashes)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) PeerID() peer.ID {
|
|
return w.waku.PeerID()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) GetActiveStorenode() peer.ID {
|
|
return w.waku.StorenodeCycle.GetActiveStorenode()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) OnStorenodeAvailableOneShot() <-chan struct{} {
|
|
return w.waku.StorenodeCycle.StorenodeAvailableOneshotEmitter.Subscribe()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) OnStorenodeChanged() <-chan peer.ID {
|
|
return w.waku.StorenodeCycle.StorenodeChangedEmitter.Subscribe()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) OnStorenodeNotWorking() <-chan struct{} {
|
|
return w.waku.StorenodeCycle.StorenodeNotWorkingEmitter.Subscribe()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) OnStorenodeAvailable() <-chan peer.ID {
|
|
return w.waku.StorenodeCycle.StorenodeAvailableEmitter.Subscribe()
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) WaitForAvailableStoreNode(timeout time.Duration) bool {
|
|
return w.waku.StorenodeCycle.WaitForAvailableStoreNode(context.TODO(), timeout)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) SetStorenodeConfigProvider(c history.StorenodeConfigProvider) {
|
|
w.waku.StorenodeCycle.SetStorenodeConfigProvider(c)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) ProcessMailserverBatch(
|
|
ctx context.Context,
|
|
batch types.MailserverBatch,
|
|
storenodeID peer.ID,
|
|
pageLimit uint64,
|
|
shouldProcessNextPage func(int) (bool, uint64),
|
|
processEnvelopes bool,
|
|
) error {
|
|
pubsubTopic := w.waku.GetPubsubTopic(batch.PubsubTopic)
|
|
contentTopics := []string{}
|
|
for _, topic := range batch.Topics {
|
|
contentTopics = append(contentTopics, wakucommon.BytesToTopic(topic.Bytes()).ContentTopic())
|
|
}
|
|
|
|
criteria := store.FilterCriteria{
|
|
TimeStart: proto.Int64(int64(batch.From) * int64(time.Second)),
|
|
TimeEnd: proto.Int64(int64(batch.To) * int64(time.Second)),
|
|
ContentFilter: protocol.NewContentFilter(pubsubTopic, contentTopics...),
|
|
}
|
|
|
|
return w.waku.HistoryRetriever.Query(ctx, criteria, storenodeID, pageLimit, shouldProcessNextPage, processEnvelopes)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) IsStorenodeAvailable(peerID peer.ID) bool {
|
|
return w.waku.StorenodeCycle.IsStorenodeAvailable(peerID)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) PerformStorenodeTask(fn func() error, opts ...history.StorenodeTaskOption) error {
|
|
return w.waku.StorenodeCycle.PerformStorenodeTask(fn, opts...)
|
|
}
|
|
|
|
func (w *gethWakuV2Wrapper) DisconnectActiveStorenode(ctx context.Context, backoff time.Duration, shouldCycle bool) {
|
|
w.waku.StorenodeCycle.Lock()
|
|
defer w.waku.StorenodeCycle.Unlock()
|
|
|
|
w.waku.StorenodeCycle.DisconnectActiveStorenode(backoff)
|
|
if shouldCycle {
|
|
w.waku.StorenodeCycle.Cycle(ctx)
|
|
}
|
|
}
|