package main import ( "bytes" "fmt" "os" "strings" c "github.com/ipfs/go-cid" mb "github.com/multiformats/go-multibase" mh "github.com/multiformats/go-multihash" ) func usage() { fmt.Fprintf(os.Stderr, "usage: %s [-b multibase-code] ...\n\n", os.Args[0]) fmt.Fprintf(os.Stderr, " is either 'prefix' or a printf style format string:\n%s", fmtRef) os.Exit(1) } const fmtRef = ` %% literal % %b multibase name %B multibase code %v version string %V version number %c codec name %C codec code %h multihash name %H multihash code %L hash digest length %m multihash encoded in base %b (with multibase prefix) %M multihash encoded in base %b without multibase prefix %d hash digest encoded in base %b (with multibase prefix) %D hash digest encoded in base %b without multibase prefix %s cid string encoded in base %b (1) %s cid string encoded in base %b without multibase prefix %P cid prefix: %v-%c-%h-%L (1) For CID version 0 the multibase must be base58btc and no prefix is used. For Cid version 1 the multibase prefix is included. ` func main() { if len(os.Args) < 2 { usage() } newBase := mb.Encoding(-1) args := os.Args[1:] if args[0] == "-b" { if len(args) < 2 { usage() } if len(args[1]) != 1 { fmt.Fprintf(os.Stderr, "Error: Invalid multibase code: %s\n", args[1]) } newBase = mb.Encoding(args[1][0]) args = args[2:] } if len(args) < 2 { usage() } fmtStr := args[0] switch fmtStr { case "prefix": fmtStr = "%P" default: if strings.IndexByte(fmtStr, '%') == -1 { fmt.Fprintf(os.Stderr, "Error: Invalid format string: %s\n", fmtStr) } } for _, cidStr := range args[1:] { base, cid, err := decode(cidStr) if newBase != -1 { base = newBase } if err != nil { fmt.Fprintf(os.Stderr, "Error: %s: %v\n", cidStr, err) fmt.Fprintf(os.Stdout, "!INVALID_CID!\n") // Don't abort on a bad cid continue } str, err := fmtCid(fmtStr, base, cid) if err != nil { fmt.Fprintf(os.Stderr, "Error: %v\n", err) // An error here means a bad format string, no point in continuing os.Exit(1) } fmt.Fprintf(os.Stdout, "%s\n", str) } } func decode(v string) (mb.Encoding, *c.Cid, error) { if len(v) < 2 { return 0, nil, c.ErrCidTooShort } if len(v) == 46 && v[:2] == "Qm" { hash, err := mh.FromB58String(v) if err != nil { return 0, nil, err } return mb.Base58BTC, c.NewCidV0(hash), nil } base, data, err := mb.Decode(v) if err != nil { return 0, nil, err } cid, err := c.Cast(data) return base, cid, err } const ERR_STR = "!ERROR!" func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) { p := cid.Prefix() out := new(bytes.Buffer) for i := 0; i < len(fmtStr); i++ { if fmtStr[i] != '%' { out.WriteByte(fmtStr[i]) continue } i++ if i >= len(fmtStr) { return "", fmt.Errorf("premature end of format string") } switch fmtStr[i] { case '%': out.WriteByte('%') case 'b': // base name out.WriteString(baseToString(base)) case 'B': // base code out.WriteByte(byte(base)) case 'v': // version string fmt.Fprintf(out, "cidv%d", p.Version) case 'V': // version num fmt.Fprintf(out, "%d", p.Version) case 'c': // codec name out.WriteString(codecToString(p.Codec)) case 'C': // codec code fmt.Fprintf(out, "%d", p.Codec) case 'h': // hash fun name out.WriteString(hashToString(p.MhType)) case 'H': // hash fun code fmt.Fprintf(out, "%d", p.MhType) case 'L': // hash length fmt.Fprintf(out, "%d", p.MhLength) case 'm', 'M': // multihash encoded in base %b out.WriteString(encode(base, cid.Hash(), fmtStr[i] == 'M')) case 'd', 'D': // hash digest encoded in base %b dec, err := mh.Decode(cid.Hash()) if err != nil { out.WriteString(ERR_STR) fmt.Fprintf(os.Stderr, "Error: %v\n", err) continue } out.WriteString(encode(base, dec.Digest, fmtStr[i] == 'D')) case 's': // cid string encoded in base %b str, err := cid.StringOfBase(base) if err != nil { out.WriteString(ERR_STR) fmt.Fprintf(os.Stderr, "Error: %v\n", err) continue } out.WriteString(str) case 'S': // cid string without base prefix out.WriteString(encode(base, cid.Bytes(), true)) case 'P': // prefix fmt.Fprintf(out, "cidv%d-%s-%s-%d", p.Version, codecToString(p.Codec), hashToString(p.MhType), p.MhLength, ) default: return "", fmt.Errorf("unrecognized specifier in format string: %c\n", fmtStr[i]) } } return out.String(), nil } func baseToString(base mb.Encoding) string { // FIXME: Use lookup tables when they are added to go-multibase switch base { case mb.Base58BTC: return "base58btc" default: return fmt.Sprintf("base?%c", base) } } func codecToString(num uint64) string { name, ok := c.CodecToStr[num] if !ok { return fmt.Sprintf("codec?%d", num) } return name } func hashToString(num uint64) string { name, ok := mh.Codes[num] if !ok { return fmt.Sprintf("hash?%d", num) } return name } func encode(base mb.Encoding, data []byte, strip bool) string { str, err := mb.Encode(base, data) if err != nil { fmt.Fprintf(os.Stderr, "Error: %v\n", err) return ERR_STR } if strip { return str[1:] } return str }