2020-03-11 01:57:52 +00:00
|
|
|
package advmgr
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
storage2 "github.com/filecoin-project/specs-storage/storage"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/api/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
type remote struct {
|
|
|
|
api.WorkerApi
|
|
|
|
}
|
|
|
|
|
2020-03-17 20:19:52 +00:00
|
|
|
func (r *remote) NewSector(ctx context.Context, sector abi.SectorID) error {
|
|
|
|
return xerrors.New("unsupported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *remote) AddPiece(ctx context.Context, sector abi.SectorID, pieceSizes []abi.UnpaddedPieceSize, newPieceSize abi.UnpaddedPieceSize, pieceData storage2.Data) (abi.PieceInfo, error) {
|
2020-03-13 11:59:19 +00:00
|
|
|
return abi.PieceInfo{}, xerrors.New("unsupported")
|
2020-03-11 01:57:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 23:23:28 +00:00
|
|
|
func ConnectRemote(ctx context.Context, fa api.Common, url string) (*remote, error) {
|
2020-03-11 05:49:17 +00:00
|
|
|
token, err := fa.AuthNew(ctx, []api.Permission{"admin"})
|
2020-03-11 01:57:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("creating auth token for remote connection: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
headers := http.Header{}
|
|
|
|
headers.Add("Authorization", "Bearer "+string(token))
|
|
|
|
|
|
|
|
wapi, close, err := client.NewWorkerRPC(url, headers)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("creating jsonrpc client: %w", err)
|
|
|
|
}
|
|
|
|
_ = close // TODO
|
|
|
|
|
|
|
|
return &remote{wapi}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Worker = &remote{}
|