Skip to content

Commit

Permalink
"ipfs key list": add option to also list the hash of the key
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Kevin Atkinson <k@kevina.org>
  • Loading branch information
kevina committed Jan 11, 2017
1 parent c6ce6d3 commit 4dbb084
Showing 1 changed file with 55 additions and 3 deletions.
58 changes: 55 additions & 3 deletions core/commands/keystore.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
package commands

import (
"bytes"
"crypto/rand"
"errors"
"fmt"
"io"
"sort"
"strings"
"text/tabwriter"

cmds "github.com/ipfs/go-ipfs/commands"

Expand All @@ -28,6 +31,10 @@ type KeyOutput struct {
Id string
}

type KeyOutputList struct {
Keys []KeyOutput
}

var KeyGenCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Create a new keypair",
Expand Down Expand Up @@ -135,6 +142,9 @@ var KeyListCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "List all local keypairs",
},
Options: []cmds.Option{
cmds.BoolOption("show-ids", "l", "also show key ids"),
},
Run: func(req cmds.Request, res cmds.Response) {
n, err := req.InvocContext().GetNode()
if err != nil {
Expand All @@ -149,10 +159,52 @@ var KeyListCmd = &cmds.Command{
}

sort.Strings(keys)
res.SetOutput(&stringList{keys})

list := make([]KeyOutput, 0, len(keys))

for _, key := range keys {
privKey, err := n.Repo.Keystore().Get(key)
if err != nil {
res.SetError(err, cmds.ErrNormal)
return
}

pubKey := privKey.GetPublic()

pid, err := peer.IDFromPublicKey(pubKey)
if err != nil {
res.SetError(err, cmds.ErrNormal)
return
}

list = append(list, KeyOutput{Name: key, Id: pid.Pretty()})
}

res.SetOutput(&KeyOutputList{list})
},
Marshalers: cmds.MarshalerMap{
cmds.Text: stringListMarshaler,
cmds.Text: keyOutputListMarshaler,
},
Type: stringList{},
Type: KeyOutputList{},
}

func keyOutputListMarshaler(res cmds.Response) (io.Reader, error) {
withId, _, _ := res.Request().Option("show-ids").Bool()

list, ok := res.Output().(*KeyOutputList)
if !ok {
return nil, errors.New("failed to cast []KeyOutput")
}

buf := new(bytes.Buffer)
w := tabwriter.NewWriter(buf, 1, 2, 1, ' ', 0)
for _, s := range list.Keys {
if withId {
fmt.Fprintf(w, "%s\t%s\t\n", s.Id, s.Name)
} else {
fmt.Fprintf(w, "%s\n", s.Name)
}
}
w.Flush()
return buf, nil
}

0 comments on commit 4dbb084

Please sign in to comment.