-
Notifications
You must be signed in to change notification settings - Fork 9
/
aws_s3.go
222 lines (182 loc) · 5.85 KB
/
aws_s3.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package goutils
import (
"bytes"
"encoding/base64"
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
"mime/multipart"
"os"
"strings"
"time"
)
func UpdloadInS3(file multipart.File, path, fileName string) string {
// The session the S3 Uploader will use
sess := ConnectAws()
fileName = fmt.Sprint(time.Now().Format(LAYOUT_YYYYMMDDHHMMSS), fileName)
// Caso tenha om PATH ai ele concatena
if path != "" {
fileName = fmt.Sprint(path, "/", fileName)
}
// Create an uploader with the session and default options
uploader := s3manager.NewUploader(sess)
myBucket := Godotenv("BUCKET_NAME")
//file, header, err := c.Request.FormFile("photo")
//upload to the s3 bucket
up, err := uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(myBucket),
ACL: aws.String("public-read"),
Key: aws.String(fileName),
Body: file,
})
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
CreateFileDay(Message{Info: fmt.Sprint("Upload do Arquivo: ", up.UploadID)})
return "https://" + myBucket + "." + "s3.amazonaws.com/" + fileName
}
func UpdloadInS3NotTime(file multipart.File, path, fileName string) string {
// The session the S3 Uploader will use
sess := ConnectAws()
// Caso tenha om PATH ai ele concatena
if path != "" {
fileName = fmt.Sprint(path, "/", fileName)
}
// Create an uploader with the session and default options
uploader := s3manager.NewUploader(sess)
myBucket := Godotenv("BUCKET_NAME")
//file, header, err := c.Request.FormFile("photo")
//upload to the s3 bucket
up, err := uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(myBucket),
Key: aws.String(fileName),
Body: file,
})
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
CreateFileDay(Message{Info: fmt.Sprint("Upload do Arquivo: ", up.UploadID)})
return "https://" + myBucket + "." + "s3.amazonaws.com/" + fileName
}
func UpdloadInS3Base64(b64 string, path, fileName string) string {
// The session the S3 Uploader will use
sess := ConnectAws()
fileName = fmt.Sprint(time.Now().Format(LAYOUT_YYYYMMDDHHMMSS), fileName)
// Caso tenha om PATH ai ele concatena
if path != "" {
fileName = fmt.Sprint(path, "/", fileName)
}
// Create an uploader with the session and default options
uploader := s3manager.NewUploader(sess)
myBucket := Godotenv("BUCKET_NAME")
dec, err := base64.StdEncoding.DecodeString(b64)
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
//file, header, err := c.Request.FormFile("photo")
//upload to the s3 bucket
up, err := uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(myBucket),
ACL: aws.String("public-read"),
Key: aws.String(fileName),
Body: bytes.NewBuffer(dec),
})
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
CreateFileDay(Message{Info: fmt.Sprint("Upload do Arquivo: ", up.UploadID)})
return "https://" + myBucket + "." + "s3.amazonaws.com/" + fileName
}
func UpdloadInS3Base64Byte(b64 []byte, path, fileName string) string {
// The session the S3 Uploader will use
sess := ConnectAws()
fileName = fmt.Sprint(time.Now().Format(LAYOUT_YYYYMMDDHHMMSS), fileName)
// Caso tenha om PATH ai ele concatena
if path != "" {
fileName = fmt.Sprint(path, "/", fileName)
}
// Create an uploader with the session and default options
uploader := s3manager.NewUploader(sess)
myBucket := Godotenv("BUCKET_NAME")
//upload to the s3 bucket
up, err := uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(myBucket),
ACL: aws.String("public-read"),
Key: aws.String(fileName),
Body: bytes.NewBuffer(b64),
})
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
CreateFileDay(Message{Info: fmt.Sprint("Upload do Arquivo: ", up.UploadID)})
return "https://" + myBucket + "." + "s3.amazonaws.com/" + fileName
}
func UpdloadInS3ArqTxt(texto string, path, fileName string) string {
// The session the S3 Uploader will use
sess := ConnectAws()
// Caso tenha om PATH ai ele concatena
if path != "" {
fileName = fmt.Sprint(path, "/", fileName)
}
// Create an uploader with the session and default options
uploader := s3manager.NewUploader(sess)
myBucket := Godotenv("BUCKET_NAME")
//upload to the s3 bucket
up, err := uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(myBucket),
ACL: aws.String("public-read"),
Key: aws.String(fileName),
Body: strings.NewReader(texto),
})
if err != nil {
CreateFileDay(Message{Error: err.Error()})
return ""
}
CreateFileDay(Message{Info: fmt.Sprint("Upload do Arquivo: ", up.UploadID)})
return "https://" + myBucket + "." + "s3.amazonaws.com/" + fileName
}
func DownloadFromS3Public(fileName, localFilePath string) error {
sess := ConnectAws()
downloader := s3.New(sess)
file, err := os.Create(localFilePath)
if err != nil {
return err
}
defer file.Close()
bucketName := Godotenv("BUCKET_NAME")
_, err = downloader.GetObject(&s3.GetObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(fileName),
})
return err
}
func DownloadFromS3NotPublic(fileName, localFilePath string) error {
accessKey := Godotenv("AWS_ACCESS_KEY_ID")
secretKey := Godotenv("AWS_SECRET_ACCESS_KEY")
// Configuração das credenciais
creds := credentials.NewStaticCredentials(accessKey, secretKey, "")
sess, err := session.NewSession(&aws.Config{
Region: aws.String(Godotenv("AWS_REGION")), // Substitua pela sua região AWS
Credentials: creds,
})
downloader := s3.New(sess)
file, err := os.Create(localFilePath)
if err != nil {
return err
}
defer file.Close()
bucketName := Godotenv("BUCKET_NAME")
_, err = downloader.GetObject(&s3.GetObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(fileName),
})
return err
}