get.go 6.3 KB
Newer Older
Matt Bell's avatar
Matt Bell committed
1 2 3
package commands

import (
4
	"compress/gzip"
5
	"errors"
6
	"fmt"
Matt Bell's avatar
Matt Bell committed
7
	"io"
8
	"os"
Dominic Della Valle's avatar
Dominic Della Valle committed
9
	"path/filepath"
10
	"strings"
Matt Bell's avatar
Matt Bell committed
11

12
	core "github.com/ipfs/go-ipfs/core"
13
	cmdenv "github.com/ipfs/go-ipfs/core/commands/cmdenv"
Jan Winkelmann's avatar
Jan Winkelmann committed
14 15
	e "github.com/ipfs/go-ipfs/core/commands/e"

16
	"gx/ipfs/QmPtj12fdwuAqj9sBSTNUxBNu8kCGNp8b3o8yUzMm5GHpq/pb"
17
	tar "gx/ipfs/QmQine7gvHncNevKtG9QXxf3nXcwSj6aDDmMm52mHofEEp/tar-utils"
18
	"gx/ipfs/QmSP88ryZkHSRn1fnngAaV2Vcn63WUJzAavnRM9CVdU1Ky/go-ipfs-cmdkit"
19 20
	dag "gx/ipfs/QmTGpm48qm4fUZ9E5hMXy4ZngJUYCMKu15rTMVR3BSEnPm/go-merkledag"
	path "gx/ipfs/QmV4QxScV9Y7LbaWhHazFfRd8uyeUd4pAH8a7fFFbi5odJ/go-path"
Steven Allen's avatar
Steven Allen committed
21
	"gx/ipfs/QmXTmUCBtDUrzDYVzASogLiNph7EBuYqEgPL7QoHNMzUnz/go-ipfs-cmds"
22
	uarchive "gx/ipfs/QmavvHwEZTkNShKWK1jRejv2Y8oF6ZYxdGxytL3Mwvices/go-unixfs/archive"
Matt Bell's avatar
Matt Bell committed
23 24
)

Łukasz Magiera's avatar
Łukasz Magiera committed
25
var ErrInvalidCompressionLevel = errors.New("compression level must be between 1 and 9")
26

Matt Bell's avatar
Matt Bell committed
27
var GetCmd = &cmds.Command{
Jan Winkelmann's avatar
Jan Winkelmann committed
28
	Helptext: cmdkit.HelpText{
rht's avatar
rht committed
29
		Tagline: "Download IPFS objects.",
Matt Bell's avatar
Matt Bell committed
30
		ShortDescription: `
Richard Littauer's avatar
Richard Littauer committed
31
Stores to disk the data contained an IPFS or IPNS object(s) at the given path.
Matt Bell's avatar
Matt Bell committed
32

33 34
By default, the output will be stored at './<ipfs-path>', but an alternate
path can be specified with '--output=<path>' or '-o=<path>'.
Matt Bell's avatar
Matt Bell committed
35 36

To output a TAR archive instead of unpacked files, use '--archive' or '-a'.
37 38 39

To compress the output with GZIP compression, use '--compress' or '-C'. You
may also specify the level of compression by specifying '-l=<1-9>'.
Matt Bell's avatar
Matt Bell committed
40 41 42
`,
	},

Jan Winkelmann's avatar
Jan Winkelmann committed
43 44
	Arguments: []cmdkit.Argument{
		cmdkit.StringArg("ipfs-path", true, false, "The path to the IPFS object(s) to be outputted.").EnableStdin(),
Matt Bell's avatar
Matt Bell committed
45
	},
Jan Winkelmann's avatar
Jan Winkelmann committed
46 47
	Options: []cmdkit.Option{
		cmdkit.StringOption("output", "o", "The path where the output should be stored."),
48 49
		cmdkit.BoolOption("archive", "a", "Output a TAR archive."),
		cmdkit.BoolOption("compress", "C", "Compress the output with GZIP compression."),
Steven Allen's avatar
Steven Allen committed
50
		cmdkit.IntOption("compression-level", "l", "The level of compression (1-9)."),
Matt Bell's avatar
Matt Bell committed
51
	},
Jeromy's avatar
Jeromy committed
52
	PreRun: func(req *cmds.Request, env cmds.Environment) error {
53 54 55
		_, err := getCompressOptions(req)
		return err
	},
keks's avatar
keks committed
56
	Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
57
		cmplvl, err := getCompressOptions(req)
58
		if err != nil {
keks's avatar
keks committed
59
			return err
60 61
		}

62
		node, err := cmdenv.GetNode(env)
Matt Bell's avatar
Matt Bell committed
63
		if err != nil {
keks's avatar
keks committed
64
			return err
Matt Bell's avatar
Matt Bell committed
65
		}
66 67
		p := path.Path(req.Arguments[0])
		ctx := req.Context
68
		dn, err := core.Resolve(ctx, node.Namesys, node.Resolver, p)
rht's avatar
rht committed
69
		if err != nil {
keks's avatar
keks committed
70
			return err
rht's avatar
rht committed
71
		}
rht's avatar
rht committed
72

Jeromy's avatar
Jeromy committed
73 74 75 76
		switch dn := dn.(type) {
		case *dag.ProtoNode:
			size, err := dn.Size()
			if err != nil {
keks's avatar
keks committed
77
				return err
Jeromy's avatar
Jeromy committed
78
			}
79

Jeromy's avatar
Jeromy committed
80 81 82 83
			res.SetLength(size)
		case *dag.RawNode:
			res.SetLength(uint64(len(dn.RawData())))
		default:
keks's avatar
keks committed
84
			return err
85 86
		}

87
		archive, _ := req.Options["archive"].(bool)
Jeromy's avatar
Jeromy committed
88
		reader, err := uarchive.DagArchive(ctx, dn, p.String(), node.DAG, archive, cmplvl)
Matt Bell's avatar
Matt Bell committed
89
		if err != nil {
keks's avatar
keks committed
90
			return err
91
		}
92

keks's avatar
keks committed
93
		return res.Emit(reader)
Jan Winkelmann's avatar
Jan Winkelmann committed
94
	},
95
	PostRun: cmds.PostRunMap{
keks's avatar
keks committed
96 97 98 99 100 101 102 103 104 105
		cmds.CLI: func(res cmds.Response, re cmds.ResponseEmitter) error {
			req := res.Request()

			v, err := res.Next()
			if err != nil {
				return err
			}

			outReader, ok := v.(io.Reader)
			if !ok {
keks's avatar
keks committed
106
				return e.New(e.TypeErr(outReader, v))
keks's avatar
keks committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
			}

			outPath := getOutPath(req)

			cmplvl, err := getCompressOptions(req)
			if err != nil {
				return err
			}

			archive, _ := req.Options["archive"].(bool)

			gw := getWriter{
				Out:         os.Stdout,
				Err:         os.Stderr,
				Archive:     archive,
				Compression: cmplvl,
				Size:        int64(res.Length()),
			}

			return gw.Write(outReader, outPath)
Jan Winkelmann's avatar
Jan Winkelmann committed
127
		},
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
128 129
	},
}
130

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
type clearlineReader struct {
	io.Reader
	out io.Writer
}

func (r *clearlineReader) Read(p []byte) (n int, err error) {
	n, err = r.Reader.Read(p)
	if err == io.EOF {
		// callback
		fmt.Fprintf(r.out, "\033[2K\r") // clear progress bar line on EOF
	}
	return
}

func progressBarForReader(out io.Writer, r io.Reader, l int64) (*pb.ProgressBar, io.Reader) {
Jeromy's avatar
Jeromy committed
146 147 148 149 150 151
	bar := makeProgressBar(out, l)
	barR := bar.NewProxyReader(r)
	return bar, &clearlineReader{barR, out}
}

func makeProgressBar(out io.Writer, l int64) *pb.ProgressBar {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
152 153
	// setup bar reader
	// TODO: get total length of files
154
	bar := pb.New64(l).SetUnits(pb.U_BYTES)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
155
	bar.Output = out
156 157 158 159 160 161 162 163

	// the progress bar lib doesn't give us a way to get the width of the output,
	// so as a hack we just use a callback to measure the output, then git rid of it
	bar.Callback = func(line string) {
		terminalWidth := len(line)
		bar.Callback = nil
		log.Infof("terminal width: %v\n", terminalWidth)
	}
Jeromy's avatar
Jeromy committed
164
	return bar
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
165
}
166

167 168
func getOutPath(req *cmds.Request) string {
	outPath, _ := req.Options["output"].(string)
169
	if outPath == "" {
170
		trimmed := strings.TrimRight(req.Arguments[0], "/")
Dominic Della Valle's avatar
Dominic Della Valle committed
171 172
		_, outPath = filepath.Split(trimmed)
		outPath = filepath.Clean(outPath)
173 174 175 176
	}
	return outPath
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
177 178 179
type getWriter struct {
	Out io.Writer // for output to user
	Err io.Writer // for progress bar output
180

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
181 182
	Archive     bool
	Compression int
Jeromy's avatar
Jeromy committed
183
	Size        int64
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
184
}
185

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
186 187 188 189 190 191 192 193 194 195 196 197
func (gw *getWriter) Write(r io.Reader, fpath string) error {
	if gw.Archive || gw.Compression != gzip.NoCompression {
		return gw.writeArchive(r, fpath)
	}
	return gw.writeExtracted(r, fpath)
}

func (gw *getWriter) writeArchive(r io.Reader, fpath string) error {
	// adjust file name if tar
	if gw.Archive {
		if !strings.HasSuffix(fpath, ".tar") && !strings.HasSuffix(fpath, ".tar.gz") {
			fpath += ".tar"
198
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	}

	// adjust file name if gz
	if gw.Compression != gzip.NoCompression {
		if !strings.HasSuffix(fpath, ".gz") {
			fpath += ".gz"
		}
	}

	// create file
	file, err := os.Create(fpath)
	if err != nil {
		return err
	}
	defer file.Close()

	fmt.Fprintf(gw.Out, "Saving archive to %s\n", fpath)
Jeromy's avatar
Jeromy committed
216
	bar, barR := progressBarForReader(gw.Err, r, gw.Size)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
217 218 219 220 221 222 223 224 225
	bar.Start()
	defer bar.Finish()

	_, err = io.Copy(file, barR)
	return err
}

func (gw *getWriter) writeExtracted(r io.Reader, fpath string) error {
	fmt.Fprintf(gw.Out, "Saving file(s) to %s\n", fpath)
Jeromy's avatar
Jeromy committed
226
	bar := makeProgressBar(gw.Err, gw.Size)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
227 228
	bar.Start()
	defer bar.Finish()
Jeromy's avatar
Jeromy committed
229
	defer bar.Set64(gw.Size)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
230

Steven Allen's avatar
Steven Allen committed
231
	extractor := &tar.Extractor{Path: fpath, Progress: bar.Add64}
Jeromy's avatar
Jeromy committed
232
	return extractor.Extract(r)
Matt Bell's avatar
Matt Bell committed
233 234
}

235 236
func getCompressOptions(req *cmds.Request) (int, error) {
	cmprs, _ := req.Options["compress"].(bool)
Steven Allen's avatar
Steven Allen committed
237
	cmplvl, cmplvlFound := req.Options["compression-level"].(int)
238 239 240
	switch {
	case !cmprs:
		return gzip.NoCompression, nil
Steven Allen's avatar
Steven Allen committed
241
	case cmprs && !cmplvlFound:
242
		return gzip.DefaultCompression, nil
keks's avatar
keks committed
243
	case cmprs && (cmplvl < 1 || cmplvl > 9):
244
		return gzip.NoCompression, ErrInvalidCompressionLevel
245
	}
246
	return cmplvl, nil
247
}