| 
									
										
										
										
											2015-01-30 13:25:12 +01:00
										 |  |  | // QWhisper package. This package is temporarily on hold until QML DApp dev will reemerge. | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | package qwhisper | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2015-03-16 15:17:19 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2015-01-08 21:41:32 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/logger" | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/whisper" | 
					
						
							| 
									
										
										
										
											2015-01-28 14:51:54 +01:00
										 |  |  | 	"github.com/obscuren/qml" | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-08 21:41:32 +01:00
										 |  |  | var qlogger = logger.NewLogger("QSHH") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | type Whisper struct { | 
					
						
							|  |  |  | 	*whisper.Whisper | 
					
						
							| 
									
										
										
										
											2014-12-15 17:14:02 +01:00
										 |  |  | 	view qml.Object | 
					
						
							| 
									
										
										
										
											2014-12-16 19:55:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	watches map[int]*Watch | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func New(w *whisper.Whisper) *Whisper { | 
					
						
							| 
									
										
										
										
											2014-12-16 19:55:57 +01:00
										 |  |  | 	return &Whisper{w, nil, make(map[int]*Watch)} | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-15 17:14:02 +01:00
										 |  |  | func (self *Whisper) SetView(view qml.Object) { | 
					
						
							|  |  |  | 	self.view = view | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-22 14:59:52 +01:00
										 |  |  | func (self *Whisper) Post(payload []string, to, from string, topics []string, priority, ttl uint32) { | 
					
						
							|  |  |  | 	var data []byte | 
					
						
							|  |  |  | 	for _, d := range payload { | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		data = append(data, common.FromHex(d)...) | 
					
						
							| 
									
										
										
										
											2014-12-22 14:59:52 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	pk := crypto.ToECDSAPub(common.FromHex(from)) | 
					
						
							| 
									
										
										
										
											2015-01-14 18:12:18 +01:00
										 |  |  | 	if key := self.Whisper.GetIdentity(pk); key != nil { | 
					
						
							|  |  |  | 		msg := whisper.NewMessage(data) | 
					
						
							|  |  |  | 		envelope, err := msg.Seal(time.Duration(priority*100000), whisper.Opts{ | 
					
						
							|  |  |  | 			Ttl:    time.Duration(ttl) * time.Second, | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 			To:     crypto.ToECDSAPub(common.FromHex(to)), | 
					
						
							| 
									
										
										
										
											2015-01-14 18:12:18 +01:00
										 |  |  | 			From:   key, | 
					
						
							|  |  |  | 			Topics: whisper.TopicsFromString(topics...), | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			qlogger.Infoln(err) | 
					
						
							|  |  |  | 			// handle error | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 18:12:18 +01:00
										 |  |  | 		if err := self.Whisper.Send(envelope); err != nil { | 
					
						
							|  |  |  | 			qlogger.Infoln(err) | 
					
						
							|  |  |  | 			// handle error | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		qlogger.Infoln("unmatched pub / priv for seal") | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-14 18:12:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Whisper) NewIdentity() string { | 
					
						
							| 
									
										
										
										
											2015-01-14 18:12:18 +01:00
										 |  |  | 	key := self.Whisper.NewIdentity() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 15:17:19 +01:00
										 |  |  | 	return common.ToHex(crypto.FromECDSAPub(&key.PublicKey)) | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-15 17:28:51 +01:00
										 |  |  | func (self *Whisper) HasIdentity(key string) bool { | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	return self.Whisper.HasIdentity(crypto.ToECDSAPub(common.FromHex(key))) | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-21 15:06:35 +01:00
										 |  |  | func (self *Whisper) Watch(opts map[string]interface{}, view *qml.Common) int { | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	filter := filterFromMap(opts) | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 	var i int | 
					
						
							| 
									
										
										
										
											2014-12-12 22:38:54 +01:00
										 |  |  | 	filter.Fn = func(msg *whisper.Message) { | 
					
						
							| 
									
										
										
										
											2014-12-21 15:06:35 +01:00
										 |  |  | 		if view != nil { | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 			view.Call("onShhMessage", ToQMessage(msg), i) | 
					
						
							| 
									
										
										
										
											2014-12-21 15:06:35 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-21 15:06:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 	i = self.Whisper.Watch(filter) | 
					
						
							| 
									
										
										
										
											2014-12-16 19:55:57 +01:00
										 |  |  | 	self.watches[i] = &Watch{} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-21 15:06:35 +01:00
										 |  |  | 	return i | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | func (self *Whisper) Messages(id int) (messages *common.List) { | 
					
						
							| 
									
										
										
										
											2015-01-13 13:36:44 +01:00
										 |  |  | 	msgs := self.Whisper.Messages(id) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	messages = common.EmptyList() | 
					
						
							| 
									
										
										
										
											2015-01-13 13:36:44 +01:00
										 |  |  | 	for _, message := range msgs { | 
					
						
							|  |  |  | 		messages.Append(ToQMessage(message)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return | 
					
						
							| 
									
										
										
										
											2015-01-12 20:36:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 22:38:54 +01:00
										 |  |  | func filterFromMap(opts map[string]interface{}) (f whisper.Filter) { | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	if to, ok := opts["to"].(string); ok { | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		f.To = crypto.ToECDSAPub(common.FromHex(to)) | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if from, ok := opts["from"].(string); ok { | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		f.From = crypto.ToECDSAPub(common.FromHex(from)) | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-16 19:55:57 +01:00
										 |  |  | 	if topicList, ok := opts["topics"].(*qml.List); ok { | 
					
						
							|  |  |  | 		var topics []string | 
					
						
							|  |  |  | 		topicList.Convert(&topics) | 
					
						
							|  |  |  | 		f.Topics = whisper.TopicsFromString(topics...) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 22:38:54 +01:00
										 |  |  | 	return | 
					
						
							| 
									
										
										
										
											2014-12-12 22:24:41 +01:00
										 |  |  | } |