mirror of https://github.com/Xhofe/alist
155 lines
3.9 KiB
Go
155 lines
3.9 KiB
Go
package s3
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/url"
|
|
stdpath "path"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"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"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type S3 struct {
|
|
model.Storage
|
|
Addition
|
|
Session *session.Session
|
|
client *s3.S3
|
|
linkClient *s3.S3
|
|
}
|
|
|
|
func (d *S3) Config() driver.Config {
|
|
return config
|
|
}
|
|
|
|
func (d *S3) GetAddition() driver.Additional {
|
|
return &d.Addition
|
|
}
|
|
|
|
func (d *S3) Init(ctx context.Context) error {
|
|
if d.Region == "" {
|
|
d.Region = "alist"
|
|
}
|
|
err := d.initSession()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
d.client = d.getClient(false)
|
|
d.linkClient = d.getClient(true)
|
|
return nil
|
|
}
|
|
|
|
func (d *S3) Drop(ctx context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (d *S3) List(ctx context.Context, dir model.Obj, args model.ListArgs) ([]model.Obj, error) {
|
|
if d.ListObjectVersion == "v2" {
|
|
return d.listV2(dir.GetPath(), args)
|
|
}
|
|
return d.listV1(dir.GetPath(), args)
|
|
}
|
|
|
|
func (d *S3) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error) {
|
|
path := getKey(file.GetPath(), false)
|
|
filename := stdpath.Base(path)
|
|
disposition := fmt.Sprintf(`attachment; filename*=UTF-8''%s`, url.PathEscape(filename))
|
|
if d.AddFilenameToDisposition {
|
|
disposition = fmt.Sprintf(`attachment; filename="%s"; filename*=UTF-8''%s`, filename, url.PathEscape(filename))
|
|
}
|
|
input := &s3.GetObjectInput{
|
|
Bucket: &d.Bucket,
|
|
Key: &path,
|
|
//ResponseContentDisposition: &disposition,
|
|
}
|
|
if d.CustomHost == "" {
|
|
input.ResponseContentDisposition = &disposition
|
|
}
|
|
req, _ := d.linkClient.GetObjectRequest(input)
|
|
var link string
|
|
var err error
|
|
if d.CustomHost != "" {
|
|
err = req.Build()
|
|
link = req.HTTPRequest.URL.String()
|
|
if d.RemoveBucket {
|
|
link = strings.Replace(link, "/"+d.Bucket, "", 1)
|
|
}
|
|
} else {
|
|
link, err = req.Presign(time.Hour * time.Duration(d.SignURLExpire))
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &model.Link{
|
|
URL: link,
|
|
}, nil
|
|
}
|
|
|
|
func (d *S3) MakeDir(ctx context.Context, parentDir model.Obj, dirName string) error {
|
|
return d.Put(ctx, &model.Object{
|
|
Path: stdpath.Join(parentDir.GetPath(), dirName),
|
|
}, &model.FileStream{
|
|
Obj: &model.Object{
|
|
Name: getPlaceholderName(d.Placeholder),
|
|
Modified: time.Now(),
|
|
},
|
|
ReadCloser: io.NopCloser(bytes.NewReader([]byte{})),
|
|
Mimetype: "application/octet-stream",
|
|
}, func(int) {})
|
|
}
|
|
|
|
func (d *S3) Move(ctx context.Context, srcObj, dstDir model.Obj) error {
|
|
err := d.Copy(ctx, srcObj, dstDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return d.Remove(ctx, srcObj)
|
|
}
|
|
|
|
func (d *S3) Rename(ctx context.Context, srcObj model.Obj, newName string) error {
|
|
err := d.copy(ctx, srcObj.GetPath(), stdpath.Join(stdpath.Dir(srcObj.GetPath()), newName), srcObj.IsDir())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return d.Remove(ctx, srcObj)
|
|
}
|
|
|
|
func (d *S3) Copy(ctx context.Context, srcObj, dstDir model.Obj) error {
|
|
return d.copy(ctx, srcObj.GetPath(), stdpath.Join(dstDir.GetPath(), srcObj.GetName()), srcObj.IsDir())
|
|
}
|
|
|
|
func (d *S3) Remove(ctx context.Context, obj model.Obj) error {
|
|
if obj.IsDir() {
|
|
return d.removeDir(ctx, obj.GetPath())
|
|
}
|
|
return d.removeFile(obj.GetPath())
|
|
}
|
|
|
|
func (d *S3) Put(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, up driver.UpdateProgress) error {
|
|
uploader := s3manager.NewUploader(d.Session)
|
|
if stream.GetSize() > s3manager.MaxUploadParts*s3manager.DefaultUploadPartSize {
|
|
uploader.PartSize = stream.GetSize() / (s3manager.MaxUploadParts - 1)
|
|
}
|
|
key := getKey(stdpath.Join(dstDir.GetPath(), stream.GetName()), false)
|
|
contentType := stream.GetMimetype()
|
|
log.Debugln("key:", key)
|
|
input := &s3manager.UploadInput{
|
|
Bucket: &d.Bucket,
|
|
Key: &key,
|
|
Body: stream,
|
|
ContentType: &contentType,
|
|
}
|
|
_, err := uploader.UploadWithContext(ctx, input)
|
|
return err
|
|
}
|
|
|
|
var _ driver.Driver = (*S3)(nil)
|