-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
64 lines (52 loc) · 1.24 KB
/
main.go
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
package main
import (
"bytes"
"flag"
"fmt"
"io/ioutil"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
)
func main() {
var bucketName = flag.String("bucket", "", "bucket name")
var artifactName = flag.String("name", "", "object name")
var acl = flag.String("acl", "", "S3 ACL to set on object")
var contentType = flag.String("content-type", "", "Content Type of Object")
flag.Parse()
if len(*bucketName) == 0 {
fmt.Fprintln(os.Stderr, "Must pass a bucket name")
os.Exit(1)
}
if len(*artifactName) == 0 {
fmt.Fprintln(os.Stderr, "Must pass name of artifact")
os.Exit(1)
}
var body []byte
if len(flag.Args()) > 0 {
var err error
body, err = ioutil.ReadFile(flag.Arg(0))
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
}
svc := s3.New(session.New())
params := &s3.PutObjectInput{
Bucket: aws.String(*bucketName),
Key: aws.String(*artifactName),
Body: bytes.NewReader(body),
}
if len(*contentType) > 0 {
params.ContentType = aws.String(*contentType)
}
if len(*acl) > 0 {
params.ACL = aws.String(*acl)
}
_, err := svc.PutObject(params)
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
}