2019-07-12 10:17:16 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-08-02 14:09:54 +00:00
|
|
|
"strconv"
|
2019-07-16 16:07:08 +00:00
|
|
|
|
2019-08-02 14:09:54 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2019-09-13 21:00:36 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2019-08-02 14:09:54 +00:00
|
|
|
"golang.org/x/xerrors"
|
2019-07-12 10:17:16 +00:00
|
|
|
"gopkg.in/urfave/cli.v2"
|
2019-08-02 14:09:54 +00:00
|
|
|
|
2019-09-13 21:00:36 +00:00
|
|
|
actors "github.com/filecoin-project/go-lotus/chain/actors"
|
2019-08-02 14:09:54 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
2019-08-07 20:06:10 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
2019-07-12 10:17:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var clientCmd = &cli.Command{
|
|
|
|
Name: "client",
|
|
|
|
Usage: "Make deals, store data, retrieve data",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
clientImportCmd,
|
2019-07-12 10:44:01 +00:00
|
|
|
clientLocalCmd,
|
2019-08-02 14:09:54 +00:00
|
|
|
clientDealCmd,
|
2019-08-26 13:45:36 +00:00
|
|
|
clientFindCmd,
|
|
|
|
clientRetrieveCmd,
|
2019-09-13 21:00:36 +00:00
|
|
|
clientQueryAskCmd,
|
2019-07-12 10:17:16 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var clientImportCmd = &cli.Command{
|
2019-07-12 10:44:01 +00:00
|
|
|
Name: "import",
|
|
|
|
Usage: "Import data",
|
2019-07-12 10:17:16 +00:00
|
|
|
Action: func(cctx *cli.Context) error {
|
2019-08-02 16:18:44 +00:00
|
|
|
api, err := GetFullNodeAPI(cctx)
|
2019-07-12 10:17:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-07-18 23:16:23 +00:00
|
|
|
ctx := ReqContext(cctx)
|
2019-07-12 10:17:16 +00:00
|
|
|
|
|
|
|
c, err := api.ClientImport(ctx, cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(c.String())
|
|
|
|
return nil
|
|
|
|
},
|
2019-07-12 10:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var clientLocalCmd = &cli.Command{
|
|
|
|
Name: "local",
|
|
|
|
Usage: "List locally imported data",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
2019-08-02 16:18:44 +00:00
|
|
|
api, err := GetFullNodeAPI(cctx)
|
2019-07-12 10:44:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-07-18 23:16:23 +00:00
|
|
|
ctx := ReqContext(cctx)
|
2019-07-12 10:44:01 +00:00
|
|
|
|
|
|
|
list, err := api.ClientListImports(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, v := range list {
|
|
|
|
fmt.Printf("%s %s %d %s\n", v.Key, v.FilePath, v.Size, v.Status)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2019-08-02 14:09:54 +00:00
|
|
|
|
|
|
|
var clientDealCmd = &cli.Command{
|
|
|
|
Name: "deal",
|
|
|
|
Usage: "Initialize storage deal with a miner",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
2019-08-02 16:18:44 +00:00
|
|
|
api, err := GetFullNodeAPI(cctx)
|
2019-08-02 14:09:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
2019-08-07 20:06:10 +00:00
|
|
|
if cctx.NArg() != 4 {
|
|
|
|
return xerrors.New("expected 4 args: dataCid, miner, price, duration")
|
2019-08-02 14:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// [data, miner, dur]
|
|
|
|
|
|
|
|
data, err := cid.Parse(cctx.Args().Get(0))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
miner, err := address.NewFromString(cctx.Args().Get(1))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-07 20:06:10 +00:00
|
|
|
// TODO: parse bigint
|
|
|
|
price, err := strconv.ParseInt(cctx.Args().Get(2), 10, 32)
|
2019-08-02 14:09:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-07 20:06:10 +00:00
|
|
|
dur, err := strconv.ParseInt(cctx.Args().Get(3), 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
proposal, err := api.ClientStartDeal(ctx, data, miner, types.NewInt(uint64(price)), uint64(dur))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(proposal)
|
|
|
|
return nil
|
2019-08-02 14:09:54 +00:00
|
|
|
},
|
|
|
|
}
|
2019-08-26 13:45:36 +00:00
|
|
|
|
|
|
|
var clientFindCmd = &cli.Command{
|
|
|
|
Name: "find",
|
|
|
|
Usage: "find data in the network",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
if !cctx.Args().Present() {
|
2019-08-28 23:01:28 +00:00
|
|
|
fmt.Println("Usage: find [CID]")
|
2019-08-26 13:45:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := cid.Parse(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
api, err := GetFullNodeAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
|
|
|
// Check if we already have this data locally
|
|
|
|
|
|
|
|
has, err := api.ClientHasLocal(ctx, file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if has {
|
|
|
|
fmt.Println("LOCAL")
|
|
|
|
}
|
|
|
|
|
|
|
|
offers, err := api.ClientFindData(ctx, file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, offer := range offers {
|
|
|
|
if offer.Err != "" {
|
|
|
|
fmt.Printf("ERR %s@%s: %s\n", offer.Miner, offer.MinerPeerID, offer.Err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fmt.Printf("RETRIEVAL %s@%s-%sfil-%db\n", offer.Miner, offer.MinerPeerID, offer.MinPrice, offer.Size)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var clientRetrieveCmd = &cli.Command{
|
|
|
|
Name: "retrieve",
|
|
|
|
Usage: "retrieve data from network",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
2019-08-27 22:10:23 +00:00
|
|
|
if cctx.NArg() != 2 {
|
|
|
|
fmt.Println("Usage: retrieve [CID] [outfile]")
|
2019-08-26 13:45:36 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := cid.Parse(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
api, err := GetFullNodeAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
|
|
|
// Check if we already have this data locally
|
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
/*has, err := api.ClientHasLocal(ctx, file)
|
2019-08-26 13:45:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if has {
|
|
|
|
fmt.Println("Success: Already in local storage")
|
|
|
|
return nil
|
2019-08-27 22:10:23 +00:00
|
|
|
}*/ // TODO: fix
|
2019-08-26 13:45:36 +00:00
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
offers, err := api.ClientFindData(ctx, file)
|
2019-08-26 13:45:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
// TODO: parse offer strings from `client find`, make this smarter
|
2019-08-26 13:45:36 +00:00
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
order := offers[0].Order()
|
2019-08-27 22:10:23 +00:00
|
|
|
err = api.ClientRetrieve(ctx, order, cctx.Args().Get(1))
|
2019-08-27 18:45:21 +00:00
|
|
|
if err == nil {
|
|
|
|
fmt.Println("Success")
|
|
|
|
}
|
|
|
|
return err
|
2019-08-26 13:45:36 +00:00
|
|
|
},
|
|
|
|
}
|
2019-09-13 21:00:36 +00:00
|
|
|
|
|
|
|
var clientQueryAskCmd = &cli.Command{
|
|
|
|
Name: "query-ask",
|
|
|
|
Usage: "find a miners ask",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "peerid",
|
|
|
|
Usage: "specify peer ID of node to make query against",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
if cctx.NArg() != 1 {
|
|
|
|
fmt.Println("Usage: query-ask [address]")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
maddr, err := address.NewFromString(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
api, err := GetFullNodeAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
|
|
|
var pid peer.ID
|
|
|
|
if pidstr := cctx.String("peerid"); pidstr != "" {
|
|
|
|
p, err := peer.IDFromString(pidstr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
pid = p
|
|
|
|
} else {
|
|
|
|
ret, err := api.StateCall(ctx, &types.Message{
|
|
|
|
To: maddr,
|
|
|
|
From: maddr,
|
|
|
|
Method: actors.MAMethods.GetPeerID,
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("failed to get peerID for miner: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret.ExitCode != 0 {
|
|
|
|
return fmt.Errorf("call to GetPeerID was unsuccesful (exit code %d)", ret.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
p, err := peer.IDFromBytes(ret.Return)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
pid = p
|
|
|
|
}
|
|
|
|
|
|
|
|
ask, err := api.ClientQueryAsk(ctx, pid, maddr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Ask: %s\n", maddr)
|
|
|
|
fmt.Printf("Price: %s\n", ask.Ask.Price)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|