2018-09-04 04:03:16 +08:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-09-04 07:47:00 +08:00
|
|
|
"fmt"
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-11-26 00:02:31 +08:00
|
|
|
"strings"
|
2018-09-04 04:03:16 +08:00
|
|
|
)
|
|
|
|
|
2020-02-26 14:23:59 +08:00
|
|
|
func (s3a *S3ApiServer) mkdir(parentDirectoryPath string, dirName string, fn func(entry *filer_pb.Entry)) error {
|
2018-09-04 04:03:16 +08:00
|
|
|
|
2020-03-23 15:30:02 +08:00
|
|
|
return filer_pb.Mkdir(s3a, parentDirectoryPath, dirName, fn)
|
2018-09-04 04:03:16 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-07-02 11:00:42 +08:00
|
|
|
func (s3a *S3ApiServer) mkFile(parentDirectoryPath string, fileName string, chunks []*filer_pb.FileChunk, fn func(entry *filer_pb.Entry)) error {
|
2018-09-10 07:25:43 +08:00
|
|
|
|
2021-07-22 05:38:12 +08:00
|
|
|
return filer_pb.MkFile(s3a, parentDirectoryPath, fileName, chunks, fn)
|
2018-09-10 07:25:43 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-09-12 05:53:50 +08:00
|
|
|
func (s3a *S3ApiServer) list(parentDirectoryPath, prefix, startFrom string, inclusive bool, limit uint32) (entries []*filer_pb.Entry, isLast bool, err error) {
|
2018-09-04 04:03:16 +08:00
|
|
|
|
2020-09-12 05:53:50 +08:00
|
|
|
err = filer_pb.List(s3a, parentDirectoryPath, prefix, func(entry *filer_pb.Entry, isLastEntry bool) error {
|
2020-03-23 15:30:02 +08:00
|
|
|
entries = append(entries, entry)
|
2020-09-12 05:53:50 +08:00
|
|
|
if isLastEntry {
|
|
|
|
isLast = true
|
|
|
|
}
|
2020-04-30 08:40:08 +08:00
|
|
|
return nil
|
2020-03-23 15:30:02 +08:00
|
|
|
}, startFrom, inclusive, limit)
|
2018-09-04 04:03:16 +08:00
|
|
|
|
2021-03-11 15:20:50 +08:00
|
|
|
if len(entries) == 0 {
|
|
|
|
isLast = true
|
|
|
|
}
|
|
|
|
|
2018-09-04 04:03:16 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
}
|
2018-09-04 04:16:26 +08:00
|
|
|
|
2020-03-21 05:17:31 +08:00
|
|
|
func (s3a *S3ApiServer) rm(parentDirectoryPath, entryName string, isDeleteData, isRecursive bool) error {
|
2018-09-04 04:16:26 +08:00
|
|
|
|
2021-12-26 16:15:03 +08:00
|
|
|
return s3a.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
2018-09-04 04:16:26 +08:00
|
|
|
|
2020-03-21 05:17:31 +08:00
|
|
|
err := doDeleteEntry(client, parentDirectoryPath, entryName, isDeleteData, isRecursive)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2018-09-04 04:16:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
2018-09-04 15:42:44 +08:00
|
|
|
|
2020-03-21 05:17:31 +08:00
|
|
|
func doDeleteEntry(client filer_pb.SeaweedFilerClient, parentDirectoryPath string, entryName string, isDeleteData bool, isRecursive bool) error {
|
|
|
|
request := &filer_pb.DeleteEntryRequest{
|
2022-03-23 16:03:51 +08:00
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Name: entryName,
|
|
|
|
IsDeleteData: isDeleteData,
|
|
|
|
IsRecursive: isRecursive,
|
|
|
|
IgnoreRecursiveError: true,
|
2020-03-21 05:17:31 +08:00
|
|
|
}
|
2020-02-26 06:38:36 +08:00
|
|
|
|
2020-03-21 05:17:31 +08:00
|
|
|
glog.V(1).Infof("delete entry %v/%v: %v", parentDirectoryPath, entryName, request)
|
|
|
|
if resp, err := client.DeleteEntry(context.Background(), request); err != nil {
|
|
|
|
glog.V(0).Infof("delete entry %v: %v", request, err)
|
|
|
|
return fmt.Errorf("delete entry %s/%s: %v", parentDirectoryPath, entryName, err)
|
|
|
|
} else {
|
|
|
|
if resp.Error != "" {
|
|
|
|
return fmt.Errorf("delete entry %s/%s: %v", parentDirectoryPath, entryName, resp.Error)
|
2020-02-26 06:38:36 +08:00
|
|
|
}
|
2020-03-21 05:17:31 +08:00
|
|
|
}
|
|
|
|
return nil
|
2020-02-26 06:38:36 +08:00
|
|
|
}
|
|
|
|
|
2020-02-26 14:23:59 +08:00
|
|
|
func (s3a *S3ApiServer) exists(parentDirectoryPath string, entryName string, isDirectory bool) (exists bool, err error) {
|
2018-09-04 15:42:44 +08:00
|
|
|
|
2020-03-23 15:06:24 +08:00
|
|
|
return filer_pb.Exists(s3a, parentDirectoryPath, entryName, isDirectory)
|
2018-09-04 15:42:44 +08:00
|
|
|
|
|
|
|
}
|
2019-07-09 03:37:20 +08:00
|
|
|
|
2021-03-19 16:31:49 +08:00
|
|
|
func (s3a *S3ApiServer) touch(parentDirectoryPath string, entryName string, entry *filer_pb.Entry) (err error) {
|
|
|
|
|
|
|
|
return filer_pb.Touch(s3a, parentDirectoryPath, entryName, entry)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-13 05:30:08 +08:00
|
|
|
func (s3a *S3ApiServer) getEntry(parentDirectoryPath, entryName string) (entry *filer_pb.Entry, err error) {
|
2020-11-12 16:15:59 +08:00
|
|
|
fullPath := util.NewFullPath(parentDirectoryPath, entryName)
|
|
|
|
return filer_pb.GetEntry(s3a, fullPath)
|
|
|
|
}
|
|
|
|
|
2022-10-02 10:18:00 +08:00
|
|
|
func (s3a *S3ApiServer) updateEntry(parentDirectoryPath string, newEntry *filer_pb.Entry) error {
|
|
|
|
updateEntryRequest := &filer_pb.UpdateEntryRequest{
|
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Entry: newEntry,
|
|
|
|
}
|
|
|
|
|
|
|
|
err := s3a.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
|
|
|
err := filer_pb.UpdateEntry(client, updateEntryRequest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-05-17 00:39:43 +08:00
|
|
|
func (s3a *S3ApiServer) getCollectionName(bucket string) string {
|
|
|
|
if s3a.option.FilerGroup != "" {
|
|
|
|
return fmt.Sprintf("%s_%s", s3a.option.FilerGroup, bucket)
|
|
|
|
}
|
|
|
|
return bucket
|
|
|
|
}
|
|
|
|
|
2019-07-09 03:37:20 +08:00
|
|
|
func objectKey(key *string) *string {
|
|
|
|
if strings.HasPrefix(*key, "/") {
|
|
|
|
t := (*key)[1:]
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
return key
|
2019-07-22 12:51:38 +08:00
|
|
|
}
|