lotus/api/client/client.go

134 lines
4.1 KiB
Go
Raw Normal View History

package client
import (
"context"
2019-07-23 18:49:09 +00:00
"net/http"
2020-08-14 14:06:53 +00:00
"net/url"
"path"
2020-08-14 21:24:41 +00:00
"time"
2019-07-23 18:49:09 +00:00
2020-05-20 17:43:22 +00:00
"github.com/filecoin-project/go-jsonrpc"
"github.com/filecoin-project/lotus/api"
2021-03-23 18:15:44 +00:00
"github.com/filecoin-project/lotus/api/v0api"
"github.com/filecoin-project/lotus/api/v1api"
2020-08-14 14:06:53 +00:00
"github.com/filecoin-project/lotus/lib/rpcenc"
)
2021-03-25 14:39:48 +00:00
// NewCommonRPCV0 creates a new http jsonrpc client.
func NewCommonRPCV0(ctx context.Context, addr string, requestHeader http.Header) (api.CommonNet, jsonrpc.ClientCloser, error) {
var res v0api.CommonNetStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
2022-07-18 16:36:51 +00:00
api.GetInternalStructs(&res), requestHeader, jsonrpc.WithErrors(api.RPCErrors))
2019-08-02 16:25:10 +00:00
2019-10-03 18:12:30 +00:00
return &res, closer, err
2019-08-02 16:25:10 +00:00
}
2021-03-25 14:39:48 +00:00
// NewFullNodeRPCV0 creates a new http jsonrpc client.
2021-04-01 12:17:22 +00:00
func NewFullNodeRPCV0(ctx context.Context, addr string, requestHeader http.Header) (v0api.FullNode, jsonrpc.ClientCloser, error) {
2021-03-25 14:39:48 +00:00
var res v0api.FullNodeStruct
2021-03-25 14:39:48 +00:00
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
2022-07-18 16:36:51 +00:00
api.GetInternalStructs(&res), requestHeader, jsonrpc.WithErrors(api.RPCErrors))
2021-03-25 14:39:48 +00:00
return &res, closer, err
}
// NewFullNodeRPCV1 creates a new http jsonrpc client.
2023-01-16 14:28:55 +00:00
func NewFullNodeRPCV1(ctx context.Context, addr string, requestHeader http.Header, opts ...jsonrpc.Option) (api.FullNode, jsonrpc.ClientCloser, error) {
2021-03-23 18:15:44 +00:00
var res v1api.FullNodeStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
2023-01-16 14:28:55 +00:00
api.GetInternalStructs(&res), requestHeader, append([]jsonrpc.Option{jsonrpc.WithErrors(api.RPCErrors)}, opts...)...)
2019-10-03 18:12:30 +00:00
return &res, closer, err
}
func getPushUrl(addr string) (string, error) {
pushUrl, err := url.Parse(addr)
if err != nil {
return "", err
}
switch pushUrl.Scheme {
case "ws":
pushUrl.Scheme = "http"
case "wss":
pushUrl.Scheme = "https"
}
///rpc/v0 -> /rpc/streams/v0/push
pushUrl.Path = path.Join(pushUrl.Path, "../streams/v0/push")
return pushUrl.String(), nil
}
2021-03-25 14:39:48 +00:00
// NewStorageMinerRPCV0 creates a new http jsonrpc client for miner
func NewStorageMinerRPCV0(ctx context.Context, addr string, requestHeader http.Header, opts ...jsonrpc.Option) (v0api.StorageMiner, jsonrpc.ClientCloser, error) {
pushUrl, err := getPushUrl(addr)
if err != nil {
return nil, nil, err
}
2021-03-23 18:15:44 +00:00
var res v0api.StorageMinerStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
api.GetInternalStructs(&res), requestHeader,
append([]jsonrpc.Option{
rpcenc.ReaderParamEncoder(pushUrl),
2022-07-18 16:36:51 +00:00
jsonrpc.WithErrors(api.RPCErrors),
}, opts...)...)
2019-10-03 18:12:30 +00:00
return &res, closer, err
2019-07-24 01:10:26 +00:00
}
2020-03-11 01:57:52 +00:00
func NewWorkerRPCV0(ctx context.Context, addr string, requestHeader http.Header) (v0api.Worker, jsonrpc.ClientCloser, error) {
pushUrl, err := getPushUrl(addr)
2020-08-14 14:06:53 +00:00
if err != nil {
return nil, nil, err
}
2021-03-25 14:09:50 +00:00
var res api.WorkerStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
api.GetInternalStructs(&res),
2020-08-14 21:24:41 +00:00
requestHeader,
rpcenc.ReaderParamEncoder(pushUrl),
2020-08-14 21:24:41 +00:00
jsonrpc.WithNoReconnect(),
jsonrpc.WithTimeout(30*time.Second),
2022-07-18 16:36:51 +00:00
jsonrpc.WithErrors(api.RPCErrors),
2020-03-24 18:00:08 +00:00
)
2020-03-11 01:57:52 +00:00
return &res, closer, err
}
2020-09-05 19:36:32 +00:00
2021-04-05 19:34:03 +00:00
// NewGatewayRPCV1 creates a new http jsonrpc client for a gateway node.
func NewGatewayRPCV1(ctx context.Context, addr string, requestHeader http.Header, opts ...jsonrpc.Option) (api.Gateway, jsonrpc.ClientCloser, error) {
2021-03-25 14:09:50 +00:00
var res api.GatewayStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
api.GetInternalStructs(&res),
requestHeader,
2022-07-18 16:36:51 +00:00
append(opts, jsonrpc.WithErrors(api.RPCErrors))...,
)
return &res, closer, err
}
2021-04-20 16:42:12 +00:00
// NewGatewayRPCV0 creates a new http jsonrpc client for a gateway node.
func NewGatewayRPCV0(ctx context.Context, addr string, requestHeader http.Header, opts ...jsonrpc.Option) (v0api.Gateway, jsonrpc.ClientCloser, error) {
var res v0api.GatewayStruct
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
api.GetInternalStructs(&res),
2021-04-20 16:42:12 +00:00
requestHeader,
2022-07-18 16:36:51 +00:00
append(opts, jsonrpc.WithErrors(api.RPCErrors))...,
2021-04-20 16:42:12 +00:00
)
return &res, closer, err
}
2021-03-25 14:39:48 +00:00
func NewWalletRPCV0(ctx context.Context, addr string, requestHeader http.Header) (api.Wallet, jsonrpc.ClientCloser, error) {
2021-03-25 14:09:50 +00:00
var res api.WalletStruct
2020-09-05 19:36:32 +00:00
closer, err := jsonrpc.NewMergeClient(ctx, addr, "Filecoin",
api.GetInternalStructs(&res),
2020-09-05 19:36:32 +00:00
requestHeader,
2022-07-18 16:36:51 +00:00
jsonrpc.WithErrors(api.RPCErrors),
2020-09-05 19:36:32 +00:00
)
return &res, closer, err
}