2020-11-09 16:29:04 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2020 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-10-19 15:00:55 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2021-02-19 20:23:45 +00:00
|
|
|
"fmt"
|
2021-02-24 16:50:26 +00:00
|
|
|
|
2021-02-19 20:23:45 +00:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
|
|
"github.com/ethereum/go-ethereum/node"
|
2020-10-19 15:00:55 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2022-12-23 20:07:24 +00:00
|
|
|
|
|
|
|
"github.com/cerc-io/ipld-eth-server/v4/pkg/prom"
|
2020-10-19 15:00:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// StartHTTPEndpoint starts the HTTP RPC endpoint, configured with cors/vhosts/modules.
|
2021-02-19 20:23:45 +00:00
|
|
|
func StartHTTPEndpoint(endpoint string, apis []rpc.API, modules []string, cors []string, vhosts []string, timeouts rpc.HTTPTimeouts) (*rpc.Server, error) {
|
|
|
|
|
|
|
|
srv := rpc.NewServer()
|
2022-08-01 17:27:29 +00:00
|
|
|
err := node.RegisterApis(apis, modules, srv)
|
2021-02-19 20:23:45 +00:00
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Could not register HTTP API: %w", err)
|
2020-10-19 15:00:55 +00:00
|
|
|
}
|
2022-12-23 20:07:24 +00:00
|
|
|
handler := prom.HTTPMiddleware(node.NewHTTPHandlerStack(srv, cors, vhosts, nil))
|
2021-02-19 20:23:45 +00:00
|
|
|
|
|
|
|
// start http server
|
|
|
|
_, addr, err := node.StartHTTPEndpoint(endpoint, rpc.DefaultHTTPTimeouts, handler)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Could not start RPC api: %v", err)
|
2020-10-19 15:00:55 +00:00
|
|
|
}
|
2021-02-19 20:23:45 +00:00
|
|
|
extapiURL := fmt.Sprintf("http://%v/", addr)
|
2021-04-16 13:02:04 +00:00
|
|
|
log.Infof("HTTP endpoint opened %s", extapiURL)
|
2021-02-19 20:23:45 +00:00
|
|
|
|
|
|
|
return srv, err
|
2020-10-19 15:00:55 +00:00
|
|
|
}
|