plugeth/ui/qt/qwhisper/whisper.go

81 lines
1.7 KiB
Go
Raw Normal View History

2014-12-12 21:24:41 +00:00
package qwhisper
import (
"fmt"
2014-12-12 21:24:41 +00:00
"time"
2014-12-12 21:38:54 +00:00
"github.com/ethereum/go-ethereum/crypto"
2014-12-12 21:29:29 +00:00
"github.com/ethereum/go-ethereum/ethutil"
2014-12-12 21:24:41 +00:00
"github.com/ethereum/go-ethereum/whisper"
"gopkg.in/qml.v1"
2014-12-12 21:24:41 +00:00
)
func fromHex(s string) []byte {
if len(s) > 1 {
return ethutil.Hex2Bytes(s[2:])
}
return nil
}
func toHex(b []byte) string { return "0x" + ethutil.Bytes2Hex(b) }
type Whisper struct {
*whisper.Whisper
view qml.Object
2014-12-12 21:24:41 +00:00
}
func New(w *whisper.Whisper) *Whisper {
return &Whisper{w, nil}
2014-12-12 21:24:41 +00:00
}
func (self *Whisper) SetView(view qml.Object) {
self.view = view
}
func (self *Whisper) Post(data string, to, from string, topics []string, pow, ttl uint32) {
2014-12-12 21:24:41 +00:00
msg := whisper.NewMessage(fromHex(data))
envelope, err := msg.Seal(time.Duration(pow), whisper.Opts{
Ttl: time.Duration(ttl),
To: crypto.ToECDSAPub(fromHex(to)),
From: crypto.ToECDSA(fromHex(from)),
Topics: whisper.TopicsFromString(topics),
2014-12-12 21:24:41 +00:00
})
if err != nil {
fmt.Println(err)
2014-12-12 21:24:41 +00:00
// handle error
return
}
2014-12-12 21:38:54 +00:00
if err := self.Whisper.Send(envelope); err != nil {
fmt.Println(err)
2014-12-12 21:24:41 +00:00
// handle error
return
}
}
func (self *Whisper) NewIdentity() string {
return toHex(self.Whisper.NewIdentity().D.Bytes())
}
func (self *Whisper) HasIdentify(key string) bool {
return self.Whisper.HasIdentity(crypto.ToECDSA(fromHex(key)))
}
func (self *Whisper) Watch(opts map[string]interface{}) {
filter := filterFromMap(opts)
2014-12-12 21:38:54 +00:00
filter.Fn = func(msg *whisper.Message) {
2014-12-12 21:24:41 +00:00
// TODO POST TO QT WINDOW
}
2014-12-12 21:38:54 +00:00
self.Whisper.Watch(filter)
2014-12-12 21:24:41 +00:00
}
2014-12-12 21:38:54 +00:00
func filterFromMap(opts map[string]interface{}) (f whisper.Filter) {
2014-12-12 21:24:41 +00:00
if to, ok := opts["to"].(string); ok {
2014-12-12 21:38:54 +00:00
f.To = crypto.ToECDSA(fromHex(to))
2014-12-12 21:24:41 +00:00
}
if from, ok := opts["from"].(string); ok {
2014-12-12 21:38:54 +00:00
f.From = crypto.ToECDSAPub(fromHex(from))
2014-12-12 21:24:41 +00:00
}
2014-12-12 21:38:54 +00:00
return
2014-12-12 21:24:41 +00:00
}