mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 19:07:48 +08:00
164 lines
3.5 KiB
Go
164 lines
3.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
e "github.com/ipfs/go-ipfs/core/commands/e"
|
|
ns "github.com/ipfs/go-ipfs/namesys"
|
|
|
|
"gx/ipfs/QmceUdzxkimdYsgtX733uNgzf1DLHyBKN6ehGSp85ayppM/go-ipfs-cmdkit"
|
|
)
|
|
|
|
type ipnsPubsubState struct {
|
|
Enabled bool
|
|
}
|
|
|
|
type ipnsPubsubCancel struct {
|
|
Canceled bool
|
|
}
|
|
|
|
// IpnsPubsubCmd is the subcommand that allows us to manage the IPNS pubsub system
|
|
var IpnsPubsubCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "IPNS pubsub management",
|
|
ShortDescription: `
|
|
Manage and inspect the state of the IPNS pubsub resolver.
|
|
|
|
Note: this command is experimental and subject to change as the system is refined
|
|
`,
|
|
},
|
|
Subcommands: map[string]*cmds.Command{
|
|
"state": ipnspsStateCmd,
|
|
"subs": ipnspsSubsCmd,
|
|
"cancel": ipnspsCancelCmd,
|
|
},
|
|
}
|
|
|
|
var ipnspsStateCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Query the state of IPNS pubsub",
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
_, ok := n.Namesys.GetResolver("pubsub")
|
|
res.SetOutput(&ipnsPubsubState{ok})
|
|
},
|
|
Type: ipnsPubsubState{},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: func(res cmds.Response) (io.Reader, error) {
|
|
v, err := unwrapOutput(res.Output())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
output, ok := v.(*ipnsPubsubState)
|
|
if !ok {
|
|
return nil, e.TypeErr(output, v)
|
|
}
|
|
|
|
var state string
|
|
if output.Enabled {
|
|
state = "enabled"
|
|
} else {
|
|
state = "disabled"
|
|
}
|
|
|
|
return strings.NewReader(state + "\n"), nil
|
|
},
|
|
},
|
|
}
|
|
|
|
var ipnspsSubsCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Show current name subscriptions",
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
r, ok := n.Namesys.GetResolver("pubsub")
|
|
if !ok {
|
|
res.SetError(errors.New("IPNS pubsub subsystem is not enabled"), cmdkit.ErrClient)
|
|
return
|
|
}
|
|
|
|
psr, ok := r.(*ns.PubsubResolver)
|
|
if !ok {
|
|
res.SetError(fmt.Errorf("unexpected resolver type: %v", r), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(&stringList{psr.GetSubscriptions()})
|
|
},
|
|
Type: stringList{},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: stringListMarshaler,
|
|
},
|
|
}
|
|
|
|
var ipnspsCancelCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Cancel a name subscription",
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
r, ok := n.Namesys.GetResolver("pubsub")
|
|
if !ok {
|
|
res.SetError(errors.New("IPNS pubsub subsystem is not enabled"), cmdkit.ErrClient)
|
|
return
|
|
}
|
|
|
|
psr, ok := r.(*ns.PubsubResolver)
|
|
if !ok {
|
|
res.SetError(fmt.Errorf("unexpected resolver type: %v", r), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
ok = psr.Cancel(req.Arguments()[0])
|
|
res.SetOutput(&ipnsPubsubCancel{ok})
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("name", true, false, "Name to cancel the subscription for."),
|
|
},
|
|
Type: ipnsPubsubCancel{},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: func(res cmds.Response) (io.Reader, error) {
|
|
v, err := unwrapOutput(res.Output())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
output, ok := v.(*ipnsPubsubCancel)
|
|
if !ok {
|
|
return nil, e.TypeErr(output, v)
|
|
}
|
|
|
|
var state string
|
|
if output.Canceled {
|
|
state = "canceled"
|
|
} else {
|
|
state = "no subscription"
|
|
}
|
|
|
|
return strings.NewReader(state + "\n"), nil
|
|
},
|
|
},
|
|
}
|