2021-04-06 19:39:02 +00:00
|
|
|
// Copyright (c) 2021 The Srpmproc Authors
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
2020-12-20 09:36:13 +00:00
|
|
|
package s3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2021-02-19 15:22:36 +00:00
|
|
|
"github.com/aws/aws-sdk-go/service/s3"
|
2020-12-20 09:36:13 +00:00
|
|
|
"github.com/aws/aws-sdk-go/service/s3/s3manager"
|
2021-02-19 15:22:36 +00:00
|
|
|
"io/ioutil"
|
2020-12-20 09:36:13 +00:00
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type S3 struct {
|
|
|
|
bucket string
|
|
|
|
uploader *s3manager.Uploader
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(name string) *S3 {
|
|
|
|
sess := session.Must(session.NewSession())
|
|
|
|
uploader := s3manager.NewUploader(sess)
|
|
|
|
|
|
|
|
return &S3{
|
|
|
|
bucket: name,
|
|
|
|
uploader: uploader,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *S3) Write(path string, content []byte) {
|
|
|
|
buf := bytes.NewBuffer(content)
|
|
|
|
|
|
|
|
_, err := s.uploader.Upload(&s3manager.UploadInput{
|
|
|
|
Bucket: aws.String(s.bucket),
|
|
|
|
Key: aws.String(path),
|
|
|
|
Body: buf,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("failed to upload file to s3, %v", err)
|
|
|
|
}
|
|
|
|
}
|
2021-02-19 15:22:36 +00:00
|
|
|
|
|
|
|
func (s *S3) Read(path string) []byte {
|
|
|
|
obj, err := s.uploader.S3.GetObject(&s3.GetObjectInput{
|
|
|
|
Bucket: aws.String(s.bucket),
|
|
|
|
Key: aws.String(path),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(obj.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return body
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *S3) Exists(path string) bool {
|
|
|
|
_, err := s.uploader.S3.GetObject(&s3.GetObjectInput{
|
|
|
|
Bucket: aws.String(s.bucket),
|
|
|
|
Key: aws.String(path),
|
|
|
|
})
|
|
|
|
return err == nil
|
|
|
|
}
|