summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/rsc/s3get/main.go
blob: 579e8bb5f6a3cf00fdba1533d57e15848605e4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2012 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// S3get fetches a single object from or lists the objects in an S3 bucket.
package main

import (
	"flag"
	"fmt"
	"log"
	"os"

	"github.com/mattermost/rsc/keychain"
	"launchpad.net/goamz/aws"
	"launchpad.net/goamz/s3"
)

var list = flag.Bool("l", false, "list buckets")
var delim = flag.String("d", "", "list delimiter")

func usage() {
	fmt.Fprintf(os.Stderr, `usage: s3get [-l] bucket path

s3get fetches a single object from or lists the objects
in an S3 bucket.

The -l flag causes s3get to list available paths.
When using -l, path may be omitted.
Otherwise the listing begins at path.

s3get uses the user name and password in the local
keychain for the server 's3.amazonaws.com' as the S3
access key (user name) and secret key (password).
`)
	os.Exit(2)
}

func main() {
	flag.Usage = usage
	flag.Parse()
	var buck, obj string
	args := flag.Args()
	switch len(args) {
	case 1:
		buck = args[0]
		if !*list {
			fmt.Fprintf(os.Stderr, "must specify path when not using -l")
			os.Exit(2)
		}
	case 2:
		buck = args[0]
		obj = args[1]
	default:
		usage()
	}

	access, secret, err := keychain.UserPasswd("s3.amazonaws.com", "")
	if err != nil {
		log.Fatal(err)
	}

	auth := aws.Auth{AccessKey: access, SecretKey: secret}

	b := s3.New(auth, aws.USEast).Bucket(buck)
	if *list {
		objs, prefixes, err := b.List("", *delim, obj, 0)
		if err != nil {
			log.Fatal(err)
		}
		for _, p := range prefixes {
			fmt.Printf("%s\n", p)
		}
		for _, obj := range objs {
			fmt.Printf("%s\n", obj.Key)
		}
		return
	}

	data, err := b.Get(obj)
	if err != nil {
		log.Fatal(err)
	}
	os.Stdout.Write(data)
}