2021-06-30 11:40:54 +00:00
|
|
|
package node
|
|
|
|
|
|
|
|
import (
|
2021-07-09 13:19:33 +00:00
|
|
|
"encoding/json"
|
2021-06-30 11:40:54 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2021-07-09 13:19:33 +00:00
|
|
|
"reflect"
|
2021-06-30 11:40:54 +00:00
|
|
|
|
2022-06-25 07:20:02 +00:00
|
|
|
"github.com/status-im/status-go/server"
|
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2021-07-09 13:19:33 +00:00
|
|
|
gethrpc "github.com/ethereum/go-ethereum/rpc"
|
2021-06-30 11:40:54 +00:00
|
|
|
|
|
|
|
"github.com/status-im/status-go/appmetrics"
|
|
|
|
"github.com/status-im/status-go/common"
|
|
|
|
gethbridge "github.com/status-im/status-go/eth-node/bridge/geth"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
|
|
"github.com/status-im/status-go/logutils"
|
|
|
|
"github.com/status-im/status-go/mailserver"
|
|
|
|
"github.com/status-im/status-go/multiaccounts/accounts"
|
|
|
|
"github.com/status-im/status-go/params"
|
|
|
|
"github.com/status-im/status-go/rpc"
|
|
|
|
accountssvc "github.com/status-im/status-go/services/accounts"
|
|
|
|
appmetricsservice "github.com/status-im/status-go/services/appmetrics"
|
|
|
|
"github.com/status-im/status-go/services/browsers"
|
2022-02-10 15:15:27 +00:00
|
|
|
"github.com/status-im/status-go/services/chat"
|
2021-12-21 15:05:09 +00:00
|
|
|
"github.com/status-im/status-go/services/ens"
|
2021-06-30 11:40:54 +00:00
|
|
|
"github.com/status-im/status-go/services/ext"
|
2022-01-31 12:58:03 +00:00
|
|
|
"github.com/status-im/status-go/services/gif"
|
2021-06-30 11:40:54 +00:00
|
|
|
localnotifications "github.com/status-im/status-go/services/local-notifications"
|
|
|
|
"github.com/status-im/status-go/services/mailservers"
|
|
|
|
"github.com/status-im/status-go/services/peer"
|
|
|
|
"github.com/status-im/status-go/services/permissions"
|
|
|
|
"github.com/status-im/status-go/services/personal"
|
|
|
|
"github.com/status-im/status-go/services/rpcfilters"
|
|
|
|
"github.com/status-im/status-go/services/rpcstats"
|
2021-08-05 13:27:47 +00:00
|
|
|
"github.com/status-im/status-go/services/status"
|
2022-02-02 22:50:55 +00:00
|
|
|
"github.com/status-im/status-go/services/stickers"
|
2021-06-30 11:40:54 +00:00
|
|
|
"github.com/status-im/status-go/services/subscriptions"
|
2022-06-08 12:38:26 +00:00
|
|
|
"github.com/status-im/status-go/services/updates"
|
2021-06-30 11:40:54 +00:00
|
|
|
"github.com/status-im/status-go/services/wakuext"
|
|
|
|
"github.com/status-im/status-go/services/wakuv2ext"
|
|
|
|
"github.com/status-im/status-go/services/wallet"
|
2021-12-21 15:44:37 +00:00
|
|
|
"github.com/status-im/status-go/services/web3provider"
|
2021-06-30 11:40:54 +00:00
|
|
|
"github.com/status-im/status-go/timesource"
|
|
|
|
"github.com/status-im/status-go/waku"
|
|
|
|
wakucommon "github.com/status-im/status-go/waku/common"
|
|
|
|
"github.com/status-im/status-go/wakuv2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrWakuClearIdentitiesFailure clearing whisper identities has failed.
|
|
|
|
ErrWakuClearIdentitiesFailure = errors.New("failed to clear waku identities")
|
2021-07-09 13:19:33 +00:00
|
|
|
// ErrRPCClientUnavailable is returned if an RPC client can't be retrieved.
|
|
|
|
// This is a normal situation when a node is stopped.
|
|
|
|
ErrRPCClientUnavailable = errors.New("JSON-RPC client is unavailable")
|
2022-03-02 14:19:40 +00:00
|
|
|
// OpenseaKeyFromEnv passed from on env var during build time
|
|
|
|
OpenseaKeyFromEnv string
|
2021-06-30 11:40:54 +00:00
|
|
|
)
|
|
|
|
|
2022-06-25 07:20:02 +00:00
|
|
|
func (b *StatusNode) initServices(config *params.NodeConfig, mediaServer *server.MediaServer) error {
|
2021-06-30 11:40:54 +00:00
|
|
|
accountsFeed := &event.Feed{}
|
2022-03-23 18:47:00 +00:00
|
|
|
accDB, err := accounts.NewDB(b.appDB)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-06-30 11:40:54 +00:00
|
|
|
|
|
|
|
services := []common.StatusService{}
|
|
|
|
services = appendIf(config.UpstreamConfig.Enabled, services, b.rpcFiltersService())
|
|
|
|
services = append(services, b.subscriptionService())
|
|
|
|
services = append(services, b.rpcStatsService())
|
|
|
|
services = append(services, b.appmetricsService())
|
|
|
|
services = append(services, b.peerService())
|
|
|
|
services = append(services, b.personalService())
|
2021-08-05 13:27:47 +00:00
|
|
|
services = append(services, b.statusPublicService())
|
2022-01-26 11:45:04 +00:00
|
|
|
services = append(services, b.ensService())
|
2022-03-23 18:47:00 +00:00
|
|
|
services = append(services, b.stickersService(accDB))
|
2022-06-08 12:38:26 +00:00
|
|
|
services = append(services, b.updatesService())
|
2021-06-30 11:40:54 +00:00
|
|
|
services = appendIf(config.EnableNTPSync, services, b.timeSource())
|
2022-06-25 07:20:02 +00:00
|
|
|
services = appendIf(b.appDB != nil && b.multiaccountsDB != nil, services, b.accountsService(accountsFeed, accDB, mediaServer))
|
2021-06-30 11:40:54 +00:00
|
|
|
services = appendIf(config.BrowsersConfig.Enabled, services, b.browsersService())
|
|
|
|
services = appendIf(config.PermissionsConfig.Enabled, services, b.permissionsService())
|
|
|
|
services = appendIf(config.MailserversConfig.Enabled, services, b.mailserversService())
|
2022-03-23 18:47:00 +00:00
|
|
|
services = appendIf(config.Web3ProviderConfig.Enabled, services, b.providerService(accDB))
|
|
|
|
services = append(services, b.gifService(accDB))
|
|
|
|
services = append(services, b.ChatService(accDB))
|
2021-12-21 15:44:37 +00:00
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
if config.WakuConfig.Enabled {
|
|
|
|
wakuService, err := b.wakuService(&config.WakuConfig, &config.ClusterConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
services = append(services, wakuService)
|
|
|
|
|
|
|
|
wakuext, err := b.wakuExtService(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
b.wakuExtSrvc = wakuext
|
|
|
|
|
|
|
|
services = append(services, wakuext)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.WakuV2Config.Enabled {
|
2021-10-06 16:08:54 +00:00
|
|
|
waku2Service, err := b.wakuV2Service(config)
|
2021-06-30 11:40:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
services = append(services, waku2Service)
|
|
|
|
|
|
|
|
wakuext, err := b.wakuV2ExtService(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
b.wakuV2ExtSrvc = wakuext
|
|
|
|
|
|
|
|
services = append(services, wakuext)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.WalletConfig.Enabled {
|
2022-03-02 14:19:40 +00:00
|
|
|
openseaKey := config.WalletConfig.OpenseaAPIKey
|
|
|
|
if len(openseaKey) == 0 {
|
|
|
|
openseaKey = OpenseaKeyFromEnv
|
|
|
|
}
|
2022-05-10 07:48:05 +00:00
|
|
|
walletService := b.walletService(accDB, accountsFeed, openseaKey)
|
2021-06-30 11:40:54 +00:00
|
|
|
services = append(services, walletService)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We ignore for now local notifications flag as users who are upgrading have no mean to enable it
|
2022-03-23 18:47:00 +00:00
|
|
|
lns, err := b.localNotificationsService(config.NetworkID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
services = append(services, lns)
|
2021-06-30 11:40:54 +00:00
|
|
|
|
|
|
|
b.peerSrvc.SetDiscoverer(b)
|
|
|
|
|
|
|
|
for i := range services {
|
2021-07-09 13:19:33 +00:00
|
|
|
b.RegisterLifecycle(services[i])
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-09 13:19:33 +00:00
|
|
|
b.services = services
|
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-07-09 13:19:33 +00:00
|
|
|
func (b *StatusNode) RegisterLifecycle(s common.StatusService) {
|
|
|
|
b.addPublicMethods(s.APIs())
|
|
|
|
b.gethNode.RegisterAPIs(s.APIs())
|
|
|
|
b.gethNode.RegisterProtocols(s.Protocols())
|
|
|
|
b.gethNode.RegisterLifecycle(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add through reflection a list of public methods so we can check when the
|
|
|
|
// user makes a call if they are allowed
|
|
|
|
func (b *StatusNode) addPublicMethods(apis []gethrpc.API) {
|
|
|
|
for _, api := range apis {
|
|
|
|
if api.Public {
|
|
|
|
addSuitableCallbacks(reflect.ValueOf(api.Service), api.Namespace, b.publicMethods)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
func (b *StatusNode) nodeBridge() types.Node {
|
|
|
|
return gethbridge.NewNodeBridge(b.gethNode, b.wakuSrvc, b.wakuV2Srvc)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) wakuExtService(config *params.NodeConfig) (*wakuext.Service, error) {
|
|
|
|
if b.gethNode == nil {
|
|
|
|
return nil, errors.New("geth node not initialized")
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.wakuExtSrvc == nil {
|
2022-06-02 12:17:52 +00:00
|
|
|
b.wakuExtSrvc = wakuext.New(*config, b.nodeBridge(), b.rpcClient, ext.EnvelopeSignalHandler{}, b.db)
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.wakuExtSrvc.SetP2PServer(b.gethNode.Server())
|
|
|
|
return b.wakuExtSrvc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) wakuV2ExtService(config *params.NodeConfig) (*wakuv2ext.Service, error) {
|
|
|
|
if b.gethNode == nil {
|
|
|
|
return nil, errors.New("geth node not initialized")
|
|
|
|
}
|
|
|
|
if b.wakuV2ExtSrvc == nil {
|
2022-06-02 12:17:52 +00:00
|
|
|
b.wakuV2ExtSrvc = wakuv2ext.New(*config, b.nodeBridge(), b.rpcClient, ext.EnvelopeSignalHandler{}, b.db)
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.wakuV2ExtSrvc.SetP2PServer(b.gethNode.Server())
|
|
|
|
return b.wakuV2ExtSrvc, nil
|
|
|
|
}
|
|
|
|
|
2021-08-05 13:27:47 +00:00
|
|
|
func (b *StatusNode) statusPublicService() *status.Service {
|
|
|
|
if b.statusPublicSrvc == nil {
|
|
|
|
b.statusPublicSrvc = status.New()
|
|
|
|
}
|
|
|
|
return b.statusPublicSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) StatusPublicService() *status.Service {
|
|
|
|
return b.statusPublicSrvc
|
|
|
|
}
|
|
|
|
|
2022-07-06 16:12:49 +00:00
|
|
|
func (b *StatusNode) AccountService() *accountssvc.Service {
|
|
|
|
return b.accountsSrvc
|
|
|
|
}
|
|
|
|
|
2023-01-06 12:21:14 +00:00
|
|
|
func (b *StatusNode) BrowserService() *browsers.Service {
|
|
|
|
return b.browsersSrvc
|
|
|
|
}
|
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
func (b *StatusNode) WakuService() *waku.Waku {
|
|
|
|
return b.wakuSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) WakuExtService() *wakuext.Service {
|
|
|
|
return b.wakuExtSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) WakuV2ExtService() *wakuv2ext.Service {
|
|
|
|
return b.wakuV2ExtSrvc
|
|
|
|
}
|
|
|
|
func (b *StatusNode) WakuV2Service() *wakuv2.Waku {
|
|
|
|
return b.wakuV2Srvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) wakuService(wakuCfg *params.WakuConfig, clusterCfg *params.ClusterConfig) (*waku.Waku, error) {
|
|
|
|
if b.wakuSrvc == nil {
|
|
|
|
cfg := &waku.Config{
|
|
|
|
MaxMessageSize: wakucommon.DefaultMaxMessageSize,
|
|
|
|
BloomFilterMode: wakuCfg.BloomFilterMode,
|
|
|
|
FullNode: wakuCfg.FullNode,
|
|
|
|
SoftBlacklistedPeerIDs: wakuCfg.SoftBlacklistedPeerIDs,
|
|
|
|
MinimumAcceptedPoW: params.WakuMinimumPoW,
|
|
|
|
EnableConfirmations: wakuCfg.EnableConfirmations,
|
|
|
|
}
|
|
|
|
|
|
|
|
if wakuCfg.MaxMessageSize > 0 {
|
|
|
|
cfg.MaxMessageSize = wakuCfg.MaxMessageSize
|
|
|
|
}
|
|
|
|
if wakuCfg.MinimumPoW > 0 {
|
|
|
|
cfg.MinimumAcceptedPoW = wakuCfg.MinimumPoW
|
|
|
|
}
|
|
|
|
|
|
|
|
w := waku.New(cfg, logutils.ZapLogger())
|
|
|
|
|
|
|
|
if wakuCfg.EnableRateLimiter {
|
|
|
|
r := wakuRateLimiter(wakuCfg, clusterCfg)
|
|
|
|
w.RegisterRateLimiter(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
if timesource := b.timeSource(); timesource != nil {
|
|
|
|
w.SetTimeSource(timesource.Now)
|
|
|
|
}
|
|
|
|
|
|
|
|
// enable mail service
|
|
|
|
if wakuCfg.EnableMailServer {
|
|
|
|
if err := registerWakuMailServer(w, wakuCfg); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to register WakuMailServer: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if wakuCfg.LightClient {
|
|
|
|
emptyBloomFilter := make([]byte, 64)
|
|
|
|
if err := w.SetBloomFilter(emptyBloomFilter); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.wakuSrvc = w
|
|
|
|
}
|
|
|
|
return b.wakuSrvc, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-10-06 16:08:54 +00:00
|
|
|
func (b *StatusNode) wakuV2Service(nodeConfig *params.NodeConfig) (*wakuv2.Waku, error) {
|
2021-06-30 11:40:54 +00:00
|
|
|
if b.wakuV2Srvc == nil {
|
|
|
|
cfg := &wakuv2.Config{
|
2022-01-12 20:04:43 +00:00
|
|
|
MaxMessageSize: wakucommon.DefaultMaxMessageSize,
|
|
|
|
Host: nodeConfig.WakuV2Config.Host,
|
|
|
|
Port: nodeConfig.WakuV2Config.Port,
|
|
|
|
LightClient: nodeConfig.WakuV2Config.LightClient,
|
|
|
|
KeepAliveInterval: nodeConfig.WakuV2Config.KeepAliveInterval,
|
2021-11-22 15:27:05 +00:00
|
|
|
Rendezvous: nodeConfig.Rendezvous,
|
|
|
|
WakuNodes: nodeConfig.ClusterConfig.WakuNodes,
|
2022-01-12 20:04:43 +00:00
|
|
|
PeerExchange: nodeConfig.WakuV2Config.PeerExchange,
|
2022-08-19 16:34:07 +00:00
|
|
|
EnableStore: nodeConfig.WakuV2Config.EnableStore,
|
|
|
|
StoreCapacity: nodeConfig.WakuV2Config.StoreCapacity,
|
|
|
|
StoreSeconds: nodeConfig.WakuV2Config.StoreSeconds,
|
2022-01-12 20:04:43 +00:00
|
|
|
DiscoveryLimit: nodeConfig.WakuV2Config.DiscoveryLimit,
|
|
|
|
DiscV5BootstrapNodes: nodeConfig.ClusterConfig.DiscV5BootstrapNodes,
|
2023-01-03 14:14:59 +00:00
|
|
|
Nameserver: nodeConfig.WakuV2Config.Nameserver,
|
2022-01-12 20:04:43 +00:00
|
|
|
EnableDiscV5: nodeConfig.WakuV2Config.EnableDiscV5,
|
2022-03-30 00:51:51 +00:00
|
|
|
UDPPort: nodeConfig.WakuV2Config.UDPPort,
|
|
|
|
AutoUpdate: nodeConfig.WakuV2Config.AutoUpdate,
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 16:08:54 +00:00
|
|
|
if nodeConfig.WakuV2Config.MaxMessageSize > 0 {
|
|
|
|
cfg.MaxMessageSize = nodeConfig.WakuV2Config.MaxMessageSize
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lvl, err := logging.LevelFromString("info")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
logging.SetAllLoggers(lvl)
|
|
|
|
|
2022-12-06 15:24:01 +00:00
|
|
|
w, err := wakuv2.New(nodeConfig.NodeKey, nodeConfig.ClusterConfig.Fleet, cfg, logutils.ZapLogger(), b.appDB, b.timeSource())
|
2021-06-30 11:40:54 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
b.wakuV2Srvc = w
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.wakuV2Srvc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func wakuRateLimiter(wakuCfg *params.WakuConfig, clusterCfg *params.ClusterConfig) *wakucommon.PeerRateLimiter {
|
|
|
|
enodes := append(
|
|
|
|
parseNodes(clusterCfg.StaticNodes),
|
|
|
|
parseNodes(clusterCfg.TrustedMailServers)...,
|
|
|
|
)
|
|
|
|
var (
|
|
|
|
ips []string
|
|
|
|
peerIDs []enode.ID
|
|
|
|
)
|
|
|
|
for _, item := range enodes {
|
|
|
|
ips = append(ips, item.IP().String())
|
|
|
|
peerIDs = append(peerIDs, item.ID())
|
|
|
|
}
|
|
|
|
return wakucommon.NewPeerRateLimiter(
|
|
|
|
&wakucommon.PeerRateLimiterConfig{
|
|
|
|
PacketLimitPerSecIP: wakuCfg.PacketRateLimitIP,
|
|
|
|
PacketLimitPerSecPeerID: wakuCfg.PacketRateLimitPeerID,
|
|
|
|
BytesLimitPerSecIP: wakuCfg.BytesRateLimitIP,
|
|
|
|
BytesLimitPerSecPeerID: wakuCfg.BytesRateLimitPeerID,
|
|
|
|
WhitelistedIPs: ips,
|
|
|
|
WhitelistedPeerIDs: peerIDs,
|
|
|
|
},
|
|
|
|
&wakucommon.MetricsRateLimiterHandler{},
|
|
|
|
&wakucommon.DropPeerRateLimiterHandler{
|
|
|
|
Tolerance: wakuCfg.RateLimitTolerance,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) rpcFiltersService() *rpcfilters.Service {
|
|
|
|
if b.rpcFiltersSrvc == nil {
|
|
|
|
b.rpcFiltersSrvc = rpcfilters.New(b)
|
|
|
|
}
|
|
|
|
return b.rpcFiltersSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) subscriptionService() *subscriptions.Service {
|
|
|
|
if b.subscriptionsSrvc == nil {
|
|
|
|
|
2021-07-09 13:19:33 +00:00
|
|
|
b.subscriptionsSrvc = subscriptions.New(func() *rpc.Client { return b.RPCClient() })
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
return b.subscriptionsSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) rpcStatsService() *rpcstats.Service {
|
|
|
|
if b.rpcStatsSrvc == nil {
|
|
|
|
b.rpcStatsSrvc = rpcstats.New()
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.rpcStatsSrvc
|
|
|
|
}
|
|
|
|
|
2022-06-25 07:20:02 +00:00
|
|
|
func (b *StatusNode) accountsService(accountsFeed *event.Feed, accDB *accounts.Database, mediaServer *server.MediaServer) *accountssvc.Service {
|
2021-06-30 11:40:54 +00:00
|
|
|
if b.accountsSrvc == nil {
|
2022-01-24 09:29:18 +00:00
|
|
|
b.accountsSrvc = accountssvc.NewService(
|
2022-03-23 18:47:00 +00:00
|
|
|
accDB,
|
2022-01-24 09:29:18 +00:00
|
|
|
b.multiaccountsDB,
|
|
|
|
b.gethAccountManager,
|
|
|
|
b.config,
|
|
|
|
accountsFeed,
|
2022-06-25 07:20:02 +00:00
|
|
|
mediaServer,
|
2022-01-24 09:29:18 +00:00
|
|
|
)
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return b.accountsSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) browsersService() *browsers.Service {
|
|
|
|
if b.browsersSrvc == nil {
|
|
|
|
b.browsersSrvc = browsers.NewService(browsers.NewDB(b.appDB))
|
|
|
|
}
|
|
|
|
return b.browsersSrvc
|
|
|
|
}
|
|
|
|
|
2021-12-21 15:05:09 +00:00
|
|
|
func (b *StatusNode) ensService() *ens.Service {
|
|
|
|
if b.ensSrvc == nil {
|
2022-01-14 11:17:31 +00:00
|
|
|
b.ensSrvc = ens.NewService(b.rpcClient, b.gethAccountManager, b.rpcFiltersSrvc, b.config)
|
2021-12-21 15:05:09 +00:00
|
|
|
}
|
|
|
|
return b.ensSrvc
|
|
|
|
}
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
func (b *StatusNode) stickersService(accountDB *accounts.Database) *stickers.Service {
|
2022-02-02 22:50:55 +00:00
|
|
|
if b.stickersSrvc == nil {
|
2022-05-09 13:07:57 +00:00
|
|
|
b.stickersSrvc = stickers.NewService(accountDB, b.rpcClient, b.gethAccountManager, b.rpcFiltersSrvc, b.config, b.downloader, b.httpServer)
|
2022-02-02 22:50:55 +00:00
|
|
|
}
|
|
|
|
return b.stickersSrvc
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:38:26 +00:00
|
|
|
func (b *StatusNode) updatesService() *updates.Service {
|
|
|
|
if b.updatesSrvc == nil {
|
|
|
|
b.updatesSrvc = updates.NewService(b.ensService())
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.updatesSrvc
|
|
|
|
}
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
func (b *StatusNode) gifService(accountsDB *accounts.Database) *gif.Service {
|
2022-01-31 12:58:03 +00:00
|
|
|
if b.gifSrvc == nil {
|
2022-03-23 18:47:00 +00:00
|
|
|
b.gifSrvc = gif.NewService(accountsDB)
|
2022-01-31 12:58:03 +00:00
|
|
|
}
|
|
|
|
return b.gifSrvc
|
|
|
|
}
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
func (b *StatusNode) ChatService(accountsDB *accounts.Database) *chat.Service {
|
2022-02-10 15:15:27 +00:00
|
|
|
if b.chatSrvc == nil {
|
2022-03-23 18:47:00 +00:00
|
|
|
b.chatSrvc = chat.NewService(accountsDB)
|
2022-02-10 15:15:27 +00:00
|
|
|
}
|
|
|
|
return b.chatSrvc
|
|
|
|
}
|
|
|
|
|
2021-06-30 11:40:54 +00:00
|
|
|
func (b *StatusNode) permissionsService() *permissions.Service {
|
|
|
|
if b.permissionsSrvc == nil {
|
|
|
|
b.permissionsSrvc = permissions.NewService(permissions.NewDB(b.appDB))
|
|
|
|
}
|
|
|
|
return b.permissionsSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) mailserversService() *mailservers.Service {
|
|
|
|
if b.mailserversSrvc == nil {
|
|
|
|
|
|
|
|
b.mailserversSrvc = mailservers.NewService(mailservers.NewDB(b.appDB))
|
|
|
|
}
|
|
|
|
return b.mailserversSrvc
|
|
|
|
}
|
2021-12-21 15:44:37 +00:00
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
func (b *StatusNode) providerService(accountsDB *accounts.Database) *web3provider.Service {
|
|
|
|
web3S := web3provider.NewService(b.appDB, accountsDB, b.rpcClient, b.config, b.gethAccountManager, b.rpcFiltersSrvc, b.transactor)
|
2021-12-21 15:44:37 +00:00
|
|
|
if b.providerSrvc == nil {
|
2022-03-23 18:47:00 +00:00
|
|
|
b.providerSrvc = web3S
|
2021-12-21 15:44:37 +00:00
|
|
|
}
|
|
|
|
return b.providerSrvc
|
|
|
|
}
|
2021-06-30 11:40:54 +00:00
|
|
|
|
|
|
|
func (b *StatusNode) appmetricsService() common.StatusService {
|
|
|
|
if b.appMetricsSrvc == nil {
|
|
|
|
b.appMetricsSrvc = appmetricsservice.NewService(appmetrics.NewDB(b.appDB))
|
|
|
|
}
|
|
|
|
return b.appMetricsSrvc
|
|
|
|
}
|
|
|
|
|
2022-05-10 07:48:05 +00:00
|
|
|
func (b *StatusNode) walletService(accountsDB *accounts.Database, accountsFeed *event.Feed, openseaAPIKey string) common.StatusService {
|
2021-06-30 11:40:54 +00:00
|
|
|
if b.walletSrvc == nil {
|
2022-09-13 07:10:59 +00:00
|
|
|
b.walletSrvc = wallet.NewService(
|
|
|
|
b.appDB, accountsDB, b.rpcClient, accountsFeed, openseaAPIKey, b.gethAccountManager, b.transactor, b.config,
|
|
|
|
b.ensService(),
|
|
|
|
b.stickersService(accountsDB),
|
|
|
|
)
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
return b.walletSrvc
|
|
|
|
}
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
func (b *StatusNode) localNotificationsService(network uint64) (*localnotifications.Service, error) {
|
|
|
|
var err error
|
2021-06-30 11:40:54 +00:00
|
|
|
if b.localNotificationsSrvc == nil {
|
2022-03-23 18:47:00 +00:00
|
|
|
b.localNotificationsSrvc, err = localnotifications.NewService(b.appDB, network)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
2022-03-23 18:47:00 +00:00
|
|
|
return b.localNotificationsSrvc, nil
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) peerService() *peer.Service {
|
|
|
|
if b.peerSrvc == nil {
|
|
|
|
b.peerSrvc = peer.New()
|
|
|
|
}
|
|
|
|
return b.peerSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func registerWakuMailServer(wakuService *waku.Waku, config *params.WakuConfig) (err error) {
|
|
|
|
var mailServer mailserver.WakuMailServer
|
|
|
|
wakuService.RegisterMailServer(&mailServer)
|
|
|
|
|
|
|
|
return mailServer.Init(wakuService, config)
|
|
|
|
}
|
|
|
|
|
|
|
|
func appendIf(condition bool, services []common.StatusService, service common.StatusService) []common.StatusService {
|
|
|
|
if !condition {
|
|
|
|
return services
|
|
|
|
}
|
|
|
|
return append(services, service)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) RPCFiltersService() *rpcfilters.Service {
|
|
|
|
return b.rpcFiltersSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) StopLocalNotifications() error {
|
|
|
|
if b.localNotificationsSrvc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.localNotificationsSrvc.IsStarted() {
|
|
|
|
err := b.localNotificationsSrvc.Stop()
|
|
|
|
if err != nil {
|
|
|
|
b.log.Error("LocalNotifications service stop failed on StopLocalNotifications", "error", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) StartLocalNotifications() error {
|
|
|
|
if b.localNotificationsSrvc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.walletSrvc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !b.localNotificationsSrvc.IsStarted() {
|
|
|
|
err := b.localNotificationsSrvc.Start()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
b.log.Error("LocalNotifications service start failed on StartLocalNotifications", "error", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err := b.localNotificationsSrvc.SubscribeWallet(b.walletSrvc.GetFeed())
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
b.log.Error("LocalNotifications service could not subscribe to wallet on StartLocalNotifications", "error", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// `personal_sign` and `personal_ecRecover` methods are important to
|
|
|
|
// keep DApps working.
|
|
|
|
// Usually, they are provided by an ETH or a LES service, but when using
|
|
|
|
// upstream, we don't start any of these, so we need to start our own
|
|
|
|
// implementation.
|
|
|
|
|
|
|
|
func (b *StatusNode) personalService() *personal.Service {
|
|
|
|
if b.personalSrvc == nil {
|
|
|
|
b.personalSrvc = personal.New(b.accountsManager)
|
|
|
|
}
|
|
|
|
return b.personalSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) timeSource() *timesource.NTPTimeSource {
|
|
|
|
|
|
|
|
if b.timeSourceSrvc == nil {
|
|
|
|
b.timeSourceSrvc = timesource.Default()
|
|
|
|
}
|
|
|
|
return b.timeSourceSrvc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) Cleanup() error {
|
|
|
|
if b.wakuSrvc != nil {
|
|
|
|
if err := b.wakuSrvc.DeleteKeyPairs(); err != nil {
|
|
|
|
return fmt.Errorf("%s: %v", ErrWakuClearIdentitiesFailure, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-12 09:44:26 +00:00
|
|
|
if b.Config() != nil && b.Config().WalletConfig.Enabled {
|
2021-06-30 11:40:54 +00:00
|
|
|
if b.walletSrvc != nil {
|
|
|
|
if b.walletSrvc.IsStarted() {
|
|
|
|
err := b.walletSrvc.Stop()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-23 12:29:30 +00:00
|
|
|
err := b.ensSrvc.Stop()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-09 13:07:57 +00:00
|
|
|
return nil
|
2021-06-30 11:40:54 +00:00
|
|
|
}
|
2021-07-09 13:19:33 +00:00
|
|
|
|
|
|
|
type RPCCall struct {
|
|
|
|
Method string `json:"method"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *StatusNode) CallPrivateRPC(inputJSON string) (string, error) {
|
|
|
|
b.mu.Lock()
|
|
|
|
defer b.mu.Unlock()
|
|
|
|
if b.rpcClient == nil {
|
|
|
|
return "", ErrRPCClientUnavailable
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.rpcClient.CallRaw(inputJSON), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CallRPC calls public methods on the node, we register public methods
|
|
|
|
// in a map and check if they can be called in this function
|
|
|
|
func (b *StatusNode) CallRPC(inputJSON string) (string, error) {
|
|
|
|
b.mu.Lock()
|
|
|
|
defer b.mu.Unlock()
|
|
|
|
if b.rpcClient == nil {
|
|
|
|
return "", ErrRPCClientUnavailable
|
|
|
|
}
|
|
|
|
|
|
|
|
rpcCall := &RPCCall{}
|
|
|
|
err := json.Unmarshal([]byte(inputJSON), rpcCall)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if rpcCall.Method == "" || !b.publicMethods[rpcCall.Method] {
|
|
|
|
return ErrRPCMethodUnavailable, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.rpcClient.CallRaw(inputJSON), nil
|
|
|
|
}
|