mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
7f149f93c1
* Added function to get preffered network IP Also done some refactor work oon server package to make a lot more reusable * Added server.Option and simplified handler funcs * Added serial number deterministically generated from pk * Debugging TLS server connection * Implemented configurable server ip When accessing over the network the server needs to listen on the network port and not localhost or 127.0.0.1 . Also the cert can now have a dedicated IP * Refactor of URL funcs to use the url package * Removed redundant Options pattern in favour of config param * Added full server test using GetOutboundIP * Remove references and usage of Server.port The application does not need to set the port, we rely on the net.Listener to pick a port. * Version bump * Added ToECDSA func and improved cert testing * Added error check in test * Split Server types, embedding raw Server funcs into specialised server types * localhost * Implemented DNS and IP based cert gen ios doesn't allow for restricted ip addresses to be used in a valid tls cert * Replace listener handling with original port store Also added handlers as a parameter of the Server
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package stickers
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
|
ethRpc "github.com/ethereum/go-ethereum/rpc"
|
|
"github.com/status-im/status-go/account"
|
|
"github.com/status-im/status-go/ipfs"
|
|
"github.com/status-im/status-go/multiaccounts/accounts"
|
|
"github.com/status-im/status-go/params"
|
|
"github.com/status-im/status-go/rpc"
|
|
"github.com/status-im/status-go/server"
|
|
"github.com/status-im/status-go/services/rpcfilters"
|
|
)
|
|
|
|
// NewService initializes service instance.
|
|
func NewService(acc *accounts.Database, rpcClient *rpc.Client, accountsManager *account.GethManager, rpcFiltersSrvc *rpcfilters.Service, config *params.NodeConfig, downloader *ipfs.Downloader, httpServer *server.MediaServer) *Service {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
return &Service{
|
|
accountsDB: acc,
|
|
rpcClient: rpcClient,
|
|
accountsManager: accountsManager,
|
|
rpcFiltersSrvc: rpcFiltersSrvc,
|
|
keyStoreDir: config.KeyStoreDir,
|
|
downloader: downloader,
|
|
httpServer: httpServer,
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
}
|
|
}
|
|
|
|
// Service is a browsers service.
|
|
type Service struct {
|
|
accountsDB *accounts.Database
|
|
rpcClient *rpc.Client
|
|
accountsManager *account.GethManager
|
|
rpcFiltersSrvc *rpcfilters.Service
|
|
downloader *ipfs.Downloader
|
|
keyStoreDir string
|
|
httpServer *server.MediaServer
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
}
|
|
|
|
// Start a service.
|
|
func (s *Service) Start() error {
|
|
return nil
|
|
}
|
|
|
|
// Stop a service.
|
|
func (s *Service) Stop() error {
|
|
s.cancel()
|
|
return nil
|
|
}
|
|
|
|
// APIs returns list of available RPC APIs.
|
|
func (s *Service) APIs() []ethRpc.API {
|
|
return []ethRpc.API{
|
|
{
|
|
Namespace: "stickers",
|
|
Version: "0.1.0",
|
|
Service: NewAPI(s.ctx, s.accountsDB, s.rpcClient, s.accountsManager, s.rpcFiltersSrvc, s.keyStoreDir, s.downloader, s.httpServer),
|
|
},
|
|
}
|
|
}
|
|
|
|
// Protocols returns list of p2p protocols.
|
|
func (s *Service) Protocols() []p2p.Protocol {
|
|
return nil
|
|
}
|