You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
4.3 KiB
171 lines
4.3 KiB
package node
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
|
|
"github.com/harmony-one/harmony/hmy"
|
|
nodeconfig "github.com/harmony-one/harmony/internal/configs/node"
|
|
"github.com/harmony-one/harmony/internal/hmyapi"
|
|
"github.com/harmony-one/harmony/internal/hmyapi/filters"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
)
|
|
|
|
const (
|
|
rpcHTTPPortOffset = 500
|
|
rpcWSPortOffset = 800
|
|
)
|
|
|
|
var (
|
|
// HTTP RPC
|
|
rpcAPIs []rpc.API
|
|
httpListener net.Listener
|
|
httpHandler *rpc.Server
|
|
|
|
wsListener net.Listener
|
|
wsHandler *rpc.Server
|
|
|
|
httpEndpoint = ""
|
|
wsEndpoint = ""
|
|
|
|
httpModules = []string{"hmy", "net", "explorer"}
|
|
httpVirtualHosts = []string{"*"}
|
|
httpTimeouts = rpc.DefaultHTTPTimeouts
|
|
httpOrigins = []string{"*"}
|
|
|
|
wsModules = []string{"net", "web3"}
|
|
wsOrigins = []string{"*"}
|
|
|
|
harmony *hmy.Harmony
|
|
)
|
|
|
|
// StartRPC start RPC service
|
|
func (node *Node) StartRPC(nodePort string) error {
|
|
// Gather all the possible APIs to surface
|
|
harmony, _ = hmy.New(node, node.TxPool, node.CxPool, new(event.TypeMux), node.Consensus.ShardID)
|
|
|
|
apis := node.APIs()
|
|
|
|
for _, service := range node.serviceManager.GetServices() {
|
|
apis = append(apis, service.APIs()...)
|
|
}
|
|
|
|
port, _ := strconv.Atoi(nodePort)
|
|
|
|
ip := ""
|
|
if !nodeconfig.GetPublicRPC() {
|
|
ip = "127.0.0.1"
|
|
}
|
|
httpEndpoint = fmt.Sprintf("%v:%v", ip, port+rpcHTTPPortOffset)
|
|
|
|
if err := node.startHTTP(httpEndpoint, apis, httpModules, httpOrigins, httpVirtualHosts, httpTimeouts); err != nil {
|
|
return err
|
|
}
|
|
|
|
wsEndpoint = fmt.Sprintf("%v:%v", ip, port+rpcWSPortOffset)
|
|
if err := node.startWS(wsEndpoint, apis, wsModules, wsOrigins, true); err != nil {
|
|
node.stopHTTP()
|
|
return err
|
|
}
|
|
|
|
rpcAPIs = apis
|
|
return nil
|
|
}
|
|
|
|
// startHTTP initializes and starts the HTTP RPC endpoint.
|
|
func (node *Node) startHTTP(endpoint string, apis []rpc.API, modules []string, cors []string, vhosts []string, timeouts rpc.HTTPTimeouts) error {
|
|
// Short circuit if the HTTP endpoint isn't being exposed
|
|
if endpoint == "" {
|
|
return nil
|
|
}
|
|
|
|
listener, handler, err := rpc.StartHTTPEndpoint(endpoint, apis, modules, cors, vhosts, timeouts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
utils.Logger().Info().
|
|
Str("url", fmt.Sprintf("http://%s", endpoint)).
|
|
Str("cors", strings.Join(cors, ",")).
|
|
Str("vhosts", strings.Join(vhosts, ",")).
|
|
Msg("HTTP endpoint opened")
|
|
// All listeners booted successfully
|
|
httpListener = listener
|
|
httpHandler = handler
|
|
|
|
return nil
|
|
}
|
|
|
|
// stopHTTP terminates the HTTP RPC endpoint.
|
|
func (node *Node) stopHTTP() {
|
|
if httpListener != nil {
|
|
httpListener.Close()
|
|
httpListener = nil
|
|
|
|
utils.Logger().Info().Str("url", fmt.Sprintf("http://%s", httpEndpoint)).Msg("HTTP endpoint closed")
|
|
}
|
|
if httpHandler != nil {
|
|
httpHandler.Stop()
|
|
httpHandler = nil
|
|
}
|
|
}
|
|
|
|
// startWS initializes and starts the websocket RPC endpoint.
|
|
func (node *Node) startWS(endpoint string, apis []rpc.API, modules []string, wsOrigins []string, exposeAll bool) error {
|
|
// Short circuit if the WS endpoint isn't being exposed
|
|
if endpoint == "" {
|
|
return nil
|
|
}
|
|
listener, handler, err := rpc.StartWSEndpoint(endpoint, apis, modules, wsOrigins, exposeAll)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
utils.Logger().Info().Str("url", fmt.Sprintf("ws://%s", listener.Addr())).Msg("WebSocket endpoint opened")
|
|
// All listeners booted successfully
|
|
wsListener = listener
|
|
wsHandler = handler
|
|
|
|
return nil
|
|
}
|
|
|
|
// stopWS terminates the websocket RPC endpoint.
|
|
func (node *Node) stopWS() {
|
|
if wsListener != nil {
|
|
wsListener.Close()
|
|
wsListener = nil
|
|
|
|
utils.Logger().Info().Str("url", fmt.Sprintf("ws://%s", wsEndpoint)).Msg("WebSocket endpoint closed")
|
|
}
|
|
if wsHandler != nil {
|
|
wsHandler.Stop()
|
|
wsHandler = nil
|
|
}
|
|
}
|
|
|
|
// APIs return the collection of RPC services the ethereum package offers.
|
|
// NOTE, some of these services probably need to be moved to somewhere else.
|
|
func (node *Node) APIs() []rpc.API {
|
|
// Gather all the possible APIs to surface
|
|
apis := hmyapi.GetAPIs(harmony.APIBackend)
|
|
|
|
// Append all the local APIs and return
|
|
return append(apis, []rpc.API{
|
|
{
|
|
Namespace: "hmy",
|
|
Version: "1.0",
|
|
Service: filters.NewPublicFilterAPI(harmony.APIBackend, false),
|
|
Public: true,
|
|
},
|
|
{
|
|
Namespace: "net",
|
|
Version: "1.0",
|
|
Service: hmyapi.NewPublicNetAPI(node.host, harmony.APIBackend.NetVersion()),
|
|
Public: true,
|
|
},
|
|
}...)
|
|
}
|
|
|