pin.go 3.77 KB
Newer Older
1 2 3 4 5 6
package commands

import (
	"fmt"

	cmds "github.com/jbenet/go-ipfs/commands"
Brian Tiger Chow's avatar
Brian Tiger Chow committed
7 8
	"github.com/jbenet/go-ipfs/core"
	"github.com/jbenet/go-ipfs/merkledag"
9 10 11
)

var pinCmd = &cmds.Command{
12
	Helptext: cmds.HelpText{
Brian Tiger Chow's avatar
Brian Tiger Chow committed
13
		Tagline: "Pin (and unpin) objects to local storage",
14
	},
15

Brian Tiger Chow's avatar
Brian Tiger Chow committed
16 17 18
	Subcommands: map[string]*cmds.Command{
		"add": addPinCmd,
		"rm":  rmPinCmd,
19
		"ls":  listPinCmd,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
20 21 22 23
	},
}

var addPinCmd = &cmds.Command{
24 25 26 27
	Helptext: cmds.HelpText{
		Tagline: "Pins objects to local storage",
		ShortDescription: `
Retrieves the object named by <ipfs-path> and stores it locally
28
on disk.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
29
`,
30
	},
31

32
	Arguments: []cmds.Argument{
33
		cmds.StringArg("ipfs-path", true, true, "Path to object(s) to be pinned"),
34 35
	},
	Options: []cmds.Option{
36
		cmds.BoolOption("recursive", "r", "Recursively pin the object linked to by the specified object(s)"),
37
	},
38
	Run: func(req cmds.Request) (interface{}, error) {
39 40 41 42
		n, err := req.Context().GetNode()
		if err != nil {
			return nil, err
		}
43 44

		// set recursive flag
45 46 47 48 49 50 51
		recursive, found, err := req.Option("recursive").Bool()
		if err != nil {
			return nil, err
		}
		if !found {
			recursive = false
		}
52

53
		_, err = pin(n, req.Arguments(), recursive)
54
		if err != nil {
55
			return nil, err
56 57 58
		}

		// TODO: create some output to show what got pinned
59
		return nil, nil
60 61 62
	},
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
63
var rmPinCmd = &cmds.Command{
64 65 66 67
	Helptext: cmds.HelpText{
		Tagline: "Unpin an object from local storage",
		ShortDescription: `
Removes the pin from the given object allowing it to be garbage
68
collected if needed.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
69
`,
70
	},
71

72
	Arguments: []cmds.Argument{
73
		cmds.StringArg("ipfs-path", true, true, "Path to object(s) to be unpinned"),
74 75
	},
	Options: []cmds.Option{
76
		cmds.BoolOption("recursive", "r", "Recursively unpin the object linked to by the specified object(s)"),
77
	},
78
	Run: func(req cmds.Request) (interface{}, error) {
79 80 81 82
		n, err := req.Context().GetNode()
		if err != nil {
			return nil, err
		}
83 84

		// set recursive flag
85 86 87 88 89 90 91
		recursive, found, err := req.Option("recursive").Bool()
		if err != nil {
			return nil, err
		}
		if !found {
			recursive = false // default
		}
92

93
		_, err = unpin(n, req.Arguments(), recursive)
94
		if err != nil {
95
			return nil, err
96 97 98
		}

		// TODO: create some output to show what got unpinned
99
		return nil, nil
100 101
	},
}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
102

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
var listPinCmd = &cmds.Command{
	Helptext: cmds.HelpText{
		Tagline: "List objects pinned to local storage",
		ShortDescription: `
Returns a list of hashes of objects being pinned. Objects that are indirectly
or recursively pinned are not included in the list.
`,
	},

	Run: func(req cmds.Request) (interface{}, error) {
		n, err := req.Context().GetNode()
		if err != nil {
			return nil, err
		}

118 119 120 121 122 123 124
		return &KeyList{
			Keys: n.Pinning.Set().GetKeys(),
		}, nil
	},
	Type: &KeyList{},
	Marshalers: cmds.MarshalerMap{
		cmds.Text: KeyListTextMarshaler,
125 126 127
	},
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
func pin(n *core.IpfsNode, paths []string, recursive bool) ([]*merkledag.Node, error) {

	dagnodes := make([]*merkledag.Node, 0)
	for _, path := range paths {
		dagnode, err := n.Resolver.ResolvePath(path)
		if err != nil {
			return nil, fmt.Errorf("pin error: %v", err)
		}
		dagnodes = append(dagnodes, dagnode)
	}

	for _, dagnode := range dagnodes {
		err := n.Pinning.Pin(dagnode, recursive)
		if err != nil {
			return nil, fmt.Errorf("pin: %v", err)
		}
	}

	err := n.Pinning.Flush()
	if err != nil {
		return nil, err
	}

	return dagnodes, nil
}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

func unpin(n *core.IpfsNode, paths []string, recursive bool) ([]*merkledag.Node, error) {

	dagnodes := make([]*merkledag.Node, 0)
	for _, path := range paths {
		dagnode, err := n.Resolver.ResolvePath(path)
		if err != nil {
			return nil, err
		}
		dagnodes = append(dagnodes, dagnode)
	}

	for _, dagnode := range dagnodes {
		k, _ := dagnode.Key()
		err := n.Pinning.Unpin(k, recursive)
		if err != nil {
			return nil, err
		}
	}

	err := n.Pinning.Flush()
	if err != nil {
		return nil, err
	}
	return dagnodes, nil
}