2019-07-18 23:18:26 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-09-17 14:23:08 +00:00
|
|
|
"context"
|
2019-10-23 09:18:22 +00:00
|
|
|
"encoding/json"
|
2019-07-18 23:18:26 +00:00
|
|
|
"net/http"
|
2019-09-30 23:25:45 +00:00
|
|
|
_ "net/http/pprof"
|
2019-09-17 14:23:08 +00:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
2019-07-18 23:18:26 +00:00
|
|
|
|
2020-02-23 22:35:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/api/apistruct"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/lib/auth"
|
|
|
|
"github.com/filecoin-project/lotus/lib/jsonrpc"
|
|
|
|
"github.com/filecoin-project/lotus/node"
|
2019-10-23 09:18:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/impl"
|
2019-10-22 17:18:06 +00:00
|
|
|
|
|
|
|
"github.com/ipfs/go-cid"
|
2020-01-08 19:10:57 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
2019-10-22 17:18:06 +00:00
|
|
|
"github.com/multiformats/go-multiaddr"
|
|
|
|
manet "github.com/multiformats/go-multiaddr-net"
|
|
|
|
"golang.org/x/xerrors"
|
2020-02-23 22:35:29 +00:00
|
|
|
|
2020-02-26 00:40:07 +00:00
|
|
|
"contrib.go.opencensus.io/exporter/prometheus"
|
2019-07-18 23:18:26 +00:00
|
|
|
)
|
|
|
|
|
2019-09-17 14:23:08 +00:00
|
|
|
var log = logging.Logger("main")
|
|
|
|
|
2019-10-22 17:18:06 +00:00
|
|
|
func serveRPC(a api.FullNode, stop node.StopFunc, addr multiaddr.Multiaddr) error {
|
2019-07-18 23:18:26 +00:00
|
|
|
rpcServer := jsonrpc.NewServer()
|
2019-12-09 17:08:32 +00:00
|
|
|
rpcServer.Register("Filecoin", apistruct.PermissionedFullAPI(a))
|
2019-07-24 13:40:42 +00:00
|
|
|
|
|
|
|
ah := &auth.Handler{
|
|
|
|
Verify: a.AuthVerify,
|
2019-07-25 12:54:19 +00:00
|
|
|
Next: rpcServer.ServeHTTP,
|
2019-07-24 13:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
http.Handle("/rpc/v0", ah)
|
2019-09-17 14:23:08 +00:00
|
|
|
|
2019-10-23 09:18:22 +00:00
|
|
|
importAH := &auth.Handler{
|
|
|
|
Verify: a.AuthVerify,
|
|
|
|
Next: handleImport(a.(*impl.FullNodeAPI)),
|
|
|
|
}
|
|
|
|
|
|
|
|
http.Handle("/rest/v0/import", importAH)
|
|
|
|
|
2020-02-26 00:40:07 +00:00
|
|
|
exporter, err := prometheus.NewExporter(prometheus.Options{
|
|
|
|
Namespace: "lotus",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("could not create the prometheus stats exporter: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-02-26 00:49:32 +00:00
|
|
|
http.Handle("/debug/metrics", exporter)
|
2020-02-23 22:54:49 +00:00
|
|
|
|
2019-10-22 17:18:06 +00:00
|
|
|
lst, err := manet.Listen(addr)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("could not listen: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
srv := &http.Server{Handler: http.DefaultServeMux}
|
2019-09-17 14:23:08 +00:00
|
|
|
|
|
|
|
sigChan := make(chan os.Signal, 2)
|
|
|
|
go func() {
|
|
|
|
<-sigChan
|
|
|
|
if err := srv.Shutdown(context.TODO()); err != nil {
|
|
|
|
log.Errorf("shutting down RPC server failed: %s", err)
|
|
|
|
}
|
2019-10-20 06:17:03 +00:00
|
|
|
if err := stop(context.TODO()); err != nil {
|
|
|
|
log.Errorf("graceful shutting down failed: %s", err)
|
|
|
|
}
|
2019-09-17 14:23:08 +00:00
|
|
|
}()
|
|
|
|
signal.Notify(sigChan, syscall.SIGTERM, syscall.SIGINT)
|
|
|
|
|
2019-10-22 17:18:06 +00:00
|
|
|
return srv.Serve(manet.NetListener(lst))
|
2019-07-18 23:18:26 +00:00
|
|
|
}
|
2019-10-23 09:18:22 +00:00
|
|
|
|
|
|
|
func handleImport(a *impl.FullNodeAPI) func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "PUT" {
|
|
|
|
w.WriteHeader(404)
|
|
|
|
return
|
|
|
|
}
|
2019-12-09 17:08:32 +00:00
|
|
|
if !apistruct.HasPerm(r.Context(), apistruct.PermWrite) {
|
2019-10-23 09:18:22 +00:00
|
|
|
w.WriteHeader(401)
|
|
|
|
json.NewEncoder(w).Encode(struct{ Error string }{"unauthorized: missing write permission"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err := a.ClientImportLocal(r.Context(), r.Body)
|
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(500)
|
|
|
|
json.NewEncoder(w).Encode(struct{ Error string }{err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.WriteHeader(200)
|
|
|
|
err = json.NewEncoder(w).Encode(struct{ Cid cid.Cid }{c})
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("/rest/v0/import: Writing response failed: %+v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|