2019-10-09 14:22:53 +00:00
|
|
|
package gethbridge
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"time"
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
2019-12-09 10:36:14 +00:00
|
|
|
"github.com/status-im/status-go/whisper/v6"
|
2019-10-09 14:22:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type gethWhisperWrapper struct {
|
|
|
|
whisper *whisper.Whisper
|
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
// NewGethWhisperWrapper returns an object that wraps Geth's Whisper in a types interface
|
|
|
|
func NewGethWhisperWrapper(w *whisper.Whisper) types.Whisper {
|
2019-10-09 14:22:53 +00:00
|
|
|
if w == nil {
|
|
|
|
panic("w cannot be nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &gethWhisperWrapper{
|
|
|
|
whisper: w,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetGethWhisperFrom retrieves the underlying whisper Whisper struct from a wrapped Whisper interface
|
2019-11-23 17:57:05 +00:00
|
|
|
func GetGethWhisperFrom(m types.Whisper) *whisper.Whisper {
|
2019-10-09 14:22:53 +00:00
|
|
|
return m.(*gethWhisperWrapper).whisper
|
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) PublicWhisperAPI() types.PublicWhisperAPI {
|
2019-10-09 14:22:53 +00:00
|
|
|
return NewGethPublicWhisperAPIWrapper(whisper.NewPublicWhisperAPI(w.whisper))
|
|
|
|
}
|
|
|
|
|
2019-10-28 13:50:33 +00:00
|
|
|
func (w *gethWhisperWrapper) Poll() {
|
|
|
|
// noop
|
2019-10-09 14:22:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MinPow returns the PoW value required by this node.
|
|
|
|
func (w *gethWhisperWrapper) MinPow() float64 {
|
|
|
|
return w.whisper.MinPow()
|
|
|
|
}
|
|
|
|
|
|
|
|
// BloomFilter returns the aggregated bloom filter for all the topics of interest.
|
|
|
|
// The nodes are required to send only messages that match the advertised bloom filter.
|
|
|
|
// If a message does not match the bloom, it will tantamount to spam, and the peer will
|
|
|
|
// be disconnected.
|
|
|
|
func (w *gethWhisperWrapper) BloomFilter() []byte {
|
|
|
|
return w.whisper.BloomFilter()
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCurrentTime returns current time.
|
|
|
|
func (w *gethWhisperWrapper) GetCurrentTime() time.Time {
|
|
|
|
return w.whisper.GetCurrentTime()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTimeSource assigns a particular source of time to a whisper object.
|
|
|
|
func (w *gethWhisperWrapper) SetTimeSource(timesource func() time.Time) {
|
|
|
|
w.whisper.SetTimeSource(timesource)
|
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) SubscribeEnvelopeEvents(eventsProxy chan<- types.EnvelopeEvent) types.Subscription {
|
2019-10-09 14:22:53 +00:00
|
|
|
events := make(chan whisper.EnvelopeEvent, 100) // must be buffered to prevent blocking whisper
|
|
|
|
go func() {
|
|
|
|
for e := range events {
|
|
|
|
eventsProxy <- *NewGethEnvelopeEventWrapper(&e)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return NewGethSubscriptionWrapper(w.whisper.SubscribeEnvelopeEvents(events))
|
|
|
|
}
|
|
|
|
|
|
|
|
// SelectedKeyPairID returns the id of currently selected key pair.
|
|
|
|
// It helps distinguish between different users w/o exposing the user identity itself.
|
|
|
|
func (w *gethWhisperWrapper) SelectedKeyPairID() string {
|
|
|
|
return w.whisper.SelectedKeyPairID()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) GetPrivateKey(id string) (*ecdsa.PrivateKey, error) {
|
|
|
|
return w.whisper.GetPrivateKey(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddKeyPair imports a asymmetric private key and returns a deterministic identifier.
|
|
|
|
func (w *gethWhisperWrapper) AddKeyPair(key *ecdsa.PrivateKey) (string, error) {
|
|
|
|
return w.whisper.AddKeyPair(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteKeyPair deletes the specified key if it exists.
|
|
|
|
func (w *gethWhisperWrapper) DeleteKeyPair(key string) bool {
|
|
|
|
return w.whisper.DeleteKeyPair(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) AddSymKeyDirect(key []byte) (string, error) {
|
|
|
|
return w.whisper.AddSymKeyDirect(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) AddSymKeyFromPassword(password string) (string, error) {
|
|
|
|
return w.whisper.AddSymKeyFromPassword(password)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) DeleteSymKey(id string) bool {
|
|
|
|
return w.whisper.DeleteSymKey(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) GetSymKey(id string) ([]byte, error) {
|
|
|
|
return w.whisper.GetSymKey(id)
|
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) Subscribe(opts *types.SubscriptionOptions) (string, error) {
|
2019-10-28 13:50:33 +00:00
|
|
|
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.PoW, opts.Topics)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := w.whisper.Subscribe(GetGethFilterFrom(f))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
f.(*gethFilterWrapper).id = id
|
|
|
|
return id, nil
|
2019-10-09 14:22:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) GetFilter(id string) types.Filter {
|
2019-10-28 13:50:33 +00:00
|
|
|
return NewGethFilterWrapper(w.whisper.GetFilter(id), id)
|
2019-10-09 14:22:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w *gethWhisperWrapper) Unsubscribe(id string) error {
|
|
|
|
return w.whisper.Unsubscribe(id)
|
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) createFilterWrapper(id string, keyAsym *ecdsa.PrivateKey, keySym []byte, pow float64, topics [][]byte) (types.Filter, error) {
|
2019-10-09 14:22:53 +00:00
|
|
|
return NewGethFilterWrapper(&whisper.Filter{
|
|
|
|
KeyAsym: keyAsym,
|
|
|
|
KeySym: keySym,
|
|
|
|
PoW: pow,
|
|
|
|
AllowP2P: true,
|
|
|
|
Topics: topics,
|
2019-10-28 13:50:33 +00:00
|
|
|
Messages: whisper.NewMemoryMessageStore(),
|
|
|
|
}, id), nil
|
2019-10-09 14:22:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) SendMessagesRequest(peerID []byte, r types.MessagesRequest) error {
|
2019-11-06 16:23:11 +00:00
|
|
|
return w.whisper.SendMessagesRequest(peerID, whisper.MessagesRequest{
|
|
|
|
ID: r.ID,
|
|
|
|
From: r.From,
|
|
|
|
To: r.To,
|
|
|
|
Limit: r.Limit,
|
|
|
|
Cursor: r.Cursor,
|
|
|
|
Bloom: r.Bloom,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-10-09 14:22:53 +00:00
|
|
|
// RequestHistoricMessages sends a message with p2pRequestCode to a specific peer,
|
|
|
|
// which is known to implement MailServer interface, and is supposed to process this
|
|
|
|
// request and respond with a number of peer-to-peer messages (possibly expired),
|
|
|
|
// which are not supposed to be forwarded any further.
|
|
|
|
// The whisper protocol is agnostic of the format and contents of envelope.
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) RequestHistoricMessagesWithTimeout(peerID []byte, envelope types.Envelope, timeout time.Duration) error {
|
2019-10-09 14:22:53 +00:00
|
|
|
return w.whisper.RequestHistoricMessagesWithTimeout(peerID, GetGethEnvelopeFrom(envelope), timeout)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SyncMessages can be sent between two Mail Servers and syncs envelopes between them.
|
2019-11-23 17:57:05 +00:00
|
|
|
func (w *gethWhisperWrapper) SyncMessages(peerID []byte, req types.SyncMailRequest) error {
|
2019-10-09 14:22:53 +00:00
|
|
|
return w.whisper.SyncMessages(peerID, *GetGethSyncMailRequestFrom(&req))
|
|
|
|
}
|