2019-06-21 02:56:11 +03:00
|
|
|
// +build watchtowerrpc
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/lightningnetwork/lnd/lnrpc/watchtowerrpc"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func watchtowerCommands() []cli.Command {
|
|
|
|
return []cli.Command{
|
|
|
|
{
|
|
|
|
Name: "tower",
|
|
|
|
Usage: "Interact with the watchtower.",
|
|
|
|
Category: "Watchtower",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
towerInfoCommand,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getWatchtowerClient(ctx *cli.Context) (watchtowerrpc.WatchtowerClient, func()) {
|
|
|
|
conn := getClientConn(ctx, false)
|
|
|
|
cleanup := func() {
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
return watchtowerrpc.NewWatchtowerClient(conn), cleanup
|
|
|
|
}
|
|
|
|
|
|
|
|
var towerInfoCommand = cli.Command{
|
|
|
|
Name: "info",
|
|
|
|
Usage: "Returns basic information related to the active watchtower.",
|
|
|
|
Action: actionDecorator(towerInfo),
|
|
|
|
}
|
|
|
|
|
|
|
|
func towerInfo(ctx *cli.Context) error {
|
2020-07-18 18:46:16 +03:00
|
|
|
ctxc := getContext()
|
2019-06-21 02:56:11 +03:00
|
|
|
if ctx.NArg() != 0 || ctx.NumFlags() > 0 {
|
|
|
|
return cli.ShowCommandHelp(ctx, "info")
|
|
|
|
}
|
|
|
|
|
|
|
|
client, cleanup := getWatchtowerClient(ctx)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
req := &watchtowerrpc.GetInfoRequest{}
|
2020-07-18 18:46:16 +03:00
|
|
|
resp, err := client.GetInfo(ctxc, req)
|
2019-06-21 02:56:11 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-12-20 12:05:08 +03:00
|
|
|
printRespJSON(resp)
|
2019-06-21 02:56:11 +03:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|