2023-02-13 19:36:48 +08:00
|
|
|
package s3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go-v2/aws"
|
2023-02-24 00:02:51 +08:00
|
|
|
s3config "github.com/aws/aws-sdk-go-v2/config"
|
2023-02-13 19:36:48 +08:00
|
|
|
"github.com/aws/aws-sdk-go-v2/credentials"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/feature/s3/manager"
|
|
|
|
awss3 "github.com/aws/aws-sdk-go-v2/service/s3"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/service/s3/types"
|
|
|
|
)
|
|
|
|
|
2023-02-24 00:02:51 +08:00
|
|
|
type Config struct {
|
|
|
|
AccessKey string
|
|
|
|
SecretKey string
|
|
|
|
Bucket string
|
|
|
|
EndPoint string
|
|
|
|
Region string
|
|
|
|
URLPrefix string
|
2023-04-01 15:28:00 +08:00
|
|
|
URLSuffix string
|
2023-02-24 00:02:51 +08:00
|
|
|
}
|
|
|
|
|
2023-02-13 19:36:48 +08:00
|
|
|
type Client struct {
|
2023-02-24 00:02:51 +08:00
|
|
|
Client *awss3.Client
|
|
|
|
Config *Config
|
2023-02-13 19:36:48 +08:00
|
|
|
}
|
|
|
|
|
2023-02-24 00:02:51 +08:00
|
|
|
func NewClient(ctx context.Context, config *Config) (*Client, error) {
|
2023-03-18 22:34:22 +08:00
|
|
|
resolver := aws.EndpointResolverWithOptionsFunc(func(service, region string, options ...any) (aws.Endpoint, error) {
|
2023-02-13 19:36:48 +08:00
|
|
|
return aws.Endpoint{
|
2023-02-24 00:02:51 +08:00
|
|
|
URL: config.EndPoint,
|
|
|
|
SigningRegion: config.Region,
|
2023-04-15 00:17:48 +08:00
|
|
|
// For some s3-compatible object stores, converting the hostname is not required,
|
|
|
|
// and not setting this option will result in not being able to access the corresponding object store address.
|
|
|
|
HostnameImmutable: true,
|
2023-02-13 19:36:48 +08:00
|
|
|
}, nil
|
|
|
|
})
|
|
|
|
|
2023-02-27 21:26:50 +08:00
|
|
|
awsConfig, err := s3config.LoadDefaultConfig(ctx,
|
2023-02-24 00:02:51 +08:00
|
|
|
s3config.WithEndpointResolverWithOptions(resolver),
|
|
|
|
s3config.WithCredentialsProvider(credentials.NewStaticCredentialsProvider(config.AccessKey, config.SecretKey, "")),
|
2023-02-13 19:36:48 +08:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-02-27 21:26:50 +08:00
|
|
|
client := awss3.NewFromConfig(awsConfig)
|
2023-02-13 19:36:48 +08:00
|
|
|
|
|
|
|
return &Client{
|
2023-02-24 00:02:51 +08:00
|
|
|
Client: client,
|
|
|
|
Config: config,
|
2023-02-13 19:36:48 +08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2023-02-24 00:02:51 +08:00
|
|
|
func (client *Client) UploadFile(ctx context.Context, filename string, fileType string, src io.Reader) (string, error) {
|
2023-02-13 19:36:48 +08:00
|
|
|
uploader := manager.NewUploader(client.Client)
|
2023-02-27 21:26:50 +08:00
|
|
|
uploadOutput, err := uploader.Upload(ctx, &awss3.PutObjectInput{
|
2023-02-24 00:02:51 +08:00
|
|
|
Bucket: aws.String(client.Config.Bucket),
|
2023-03-06 20:04:19 +08:00
|
|
|
Key: aws.String(filename),
|
2023-02-13 19:36:48 +08:00
|
|
|
Body: src,
|
|
|
|
ContentType: aws.String(fileType),
|
|
|
|
ACL: types.ObjectCannedACL(*aws.String("public-read")),
|
|
|
|
})
|
|
|
|
if err != nil {
|
2023-02-15 22:54:46 +08:00
|
|
|
return "", err
|
2023-02-13 19:36:48 +08:00
|
|
|
}
|
2023-02-27 21:26:50 +08:00
|
|
|
|
|
|
|
link := uploadOutput.Location
|
2023-03-04 20:06:32 +08:00
|
|
|
// If url prefix is set, use it as the file link.
|
|
|
|
if client.Config.URLPrefix != "" {
|
2023-04-01 15:28:00 +08:00
|
|
|
link = fmt.Sprintf("%s/%s%s", client.Config.URLPrefix, filename, client.Config.URLSuffix)
|
2023-02-13 19:36:48 +08:00
|
|
|
}
|
2023-03-04 20:06:32 +08:00
|
|
|
if link == "" {
|
|
|
|
return "", fmt.Errorf("failed to get file link")
|
|
|
|
}
|
2023-02-15 22:54:46 +08:00
|
|
|
return link, nil
|
2023-02-13 19:36:48 +08:00
|
|
|
}
|