| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- // Copyright 2015 The go-ethereum Authors
- // This file is part of go-ethereum.
- //
- // go-ethereum is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // go-ethereum is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
- package api
- import (
- "math/big"
- "github.com/ethereum/go-ethereum/eth"
- "github.com/ethereum/go-ethereum/rpc/codec"
- "github.com/ethereum/go-ethereum/rpc/shared"
- "github.com/ethereum/go-ethereum/xeth"
- )
- const (
- ShhApiVersion = "1.0"
- )
- var (
- // mapping between methods and handlers
- shhMapping = map[string]shhhandler{
- "shh_version": (*shhApi).Version,
- "shh_post": (*shhApi).Post,
- "shh_hasIdentity": (*shhApi).HasIdentity,
- "shh_newIdentity": (*shhApi).NewIdentity,
- "shh_newFilter": (*shhApi).NewFilter,
- "shh_uninstallFilter": (*shhApi).UninstallFilter,
- "shh_getFilterChanges": (*shhApi).GetFilterChanges,
- }
- )
- func newWhisperOfflineError(method string) error {
- return shared.NewNotAvailableError(method, "whisper offline")
- }
- // net callback handler
- type shhhandler func(*shhApi, *shared.Request) (interface{}, error)
- // shh api provider
- type shhApi struct {
- xeth *xeth.XEth
- ethereum *eth.Ethereum
- methods map[string]shhhandler
- codec codec.ApiCoder
- }
- // create a new whisper api instance
- func NewShhApi(xeth *xeth.XEth, eth *eth.Ethereum, coder codec.Codec) *shhApi {
- return &shhApi{
- xeth: xeth,
- ethereum: eth,
- methods: shhMapping,
- codec: coder.New(nil),
- }
- }
- // collection with supported methods
- func (self *shhApi) Methods() []string {
- methods := make([]string, len(self.methods))
- i := 0
- for k := range self.methods {
- methods[i] = k
- i++
- }
- return methods
- }
- // Execute given request
- func (self *shhApi) Execute(req *shared.Request) (interface{}, error) {
- if callback, ok := self.methods[req.Method]; ok {
- return callback(self, req)
- }
- return nil, shared.NewNotImplementedError(req.Method)
- }
- func (self *shhApi) Name() string {
- return shared.ShhApiName
- }
- func (self *shhApi) ApiVersion() string {
- return ShhApiVersion
- }
- func (self *shhApi) Version(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- return w.Version(), nil
- }
- func (self *shhApi) Post(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- args := new(WhisperMessageArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- err := w.Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
- if err != nil {
- return false, err
- }
- return true, nil
- }
- func (self *shhApi) HasIdentity(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- args := new(WhisperIdentityArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- return w.HasIdentity(args.Identity), nil
- }
- func (self *shhApi) NewIdentity(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- return w.NewIdentity(), nil
- }
- func (self *shhApi) NewFilter(req *shared.Request) (interface{}, error) {
- args := new(WhisperFilterArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- id := self.xeth.NewWhisperFilter(args.To, args.From, args.Topics)
- return newHexNum(big.NewInt(int64(id)).Bytes()), nil
- }
- func (self *shhApi) UninstallFilter(req *shared.Request) (interface{}, error) {
- args := new(FilterIdArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- return self.xeth.UninstallWhisperFilter(args.Id), nil
- }
- func (self *shhApi) GetFilterChanges(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- // Retrieve all the new messages arrived since the last request
- args := new(FilterIdArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- return self.xeth.WhisperMessagesChanged(args.Id), nil
- }
- func (self *shhApi) GetMessages(req *shared.Request) (interface{}, error) {
- w := self.xeth.Whisper()
- if w == nil {
- return nil, newWhisperOfflineError(req.Method)
- }
- // Retrieve all the cached messages matching a specific, existing filter
- args := new(FilterIdArgs)
- if err := self.codec.Decode(req.Params, &args); err != nil {
- return nil, err
- }
- return self.xeth.WhisperMessages(args.Id), nil
- }
|