2015-05-10 15:20:58 +00:00
|
|
|
package s3
|
|
|
|
|
|
|
|
import (
|
2017-06-03 15:39:57 +00:00
|
|
|
"context"
|
2017-05-13 19:18:14 +00:00
|
|
|
"fmt"
|
2015-05-10 15:20:58 +00:00
|
|
|
"io"
|
2017-07-17 18:43:53 +00:00
|
|
|
"io/ioutil"
|
2017-05-13 21:55:22 +00:00
|
|
|
"os"
|
2016-02-15 17:47:10 +00:00
|
|
|
"path"
|
2015-05-10 15:20:58 +00:00
|
|
|
"strings"
|
2017-05-15 21:37:02 +00:00
|
|
|
"time"
|
2015-05-10 15:20:58 +00:00
|
|
|
|
2017-07-23 12:21:03 +00:00
|
|
|
"github.com/restic/restic/internal"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/backend"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
2016-08-21 15:46:23 +00:00
|
|
|
|
2015-11-06 21:31:59 +00:00
|
|
|
"github.com/minio/minio-go"
|
2017-07-05 14:19:25 +00:00
|
|
|
"github.com/minio/minio-go/pkg/credentials"
|
2015-05-10 15:20:58 +00:00
|
|
|
|
2017-07-23 12:21:03 +00:00
|
|
|
"github.com/restic/restic/internal/debug"
|
2015-05-10 15:20:58 +00:00
|
|
|
)
|
|
|
|
|
2017-06-07 19:59:01 +00:00
|
|
|
// Backend stores data on an S3 endpoint.
|
|
|
|
type Backend struct {
|
2017-06-15 14:41:09 +00:00
|
|
|
client *minio.Client
|
|
|
|
sem *backend.Semaphore
|
|
|
|
cfg Config
|
2017-04-11 20:04:18 +00:00
|
|
|
backend.Layout
|
2015-05-15 22:29:48 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 19:59:01 +00:00
|
|
|
// make sure that *Backend implements backend.Backend
|
|
|
|
var _ restic.Backend = &Backend{}
|
2017-06-03 15:39:57 +00:00
|
|
|
|
2017-06-07 21:08:20 +00:00
|
|
|
const defaultLayout = "default"
|
2017-05-15 21:37:02 +00:00
|
|
|
|
2017-06-17 20:15:58 +00:00
|
|
|
func open(cfg Config) (*Backend, error) {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("open, config %#v", cfg)
|
2015-05-10 15:20:58 +00:00
|
|
|
|
2017-06-12 19:09:26 +00:00
|
|
|
if cfg.MaxRetries > 0 {
|
|
|
|
minio.MaxRetry = int(cfg.MaxRetries)
|
|
|
|
}
|
|
|
|
|
2017-07-05 14:19:25 +00:00
|
|
|
var client *minio.Client
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if cfg.KeyID == "" || cfg.Secret == "" {
|
2017-07-05 17:21:57 +00:00
|
|
|
debug.Log("key/secret not found, trying to get them from IAM")
|
2017-07-05 14:19:25 +00:00
|
|
|
creds := credentials.NewIAM("")
|
|
|
|
client, err = minio.NewWithCredentials(cfg.Endpoint, creds, !cfg.UseHTTP, "")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "minio.NewWithCredentials")
|
|
|
|
}
|
|
|
|
} else {
|
2017-07-05 17:21:57 +00:00
|
|
|
debug.Log("key/secret found")
|
2017-07-05 14:19:25 +00:00
|
|
|
client, err = minio.New(cfg.Endpoint, cfg.KeyID, cfg.Secret, !cfg.UseHTTP)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "minio.New")
|
|
|
|
}
|
2015-08-26 11:25:05 +00:00
|
|
|
}
|
|
|
|
|
2017-06-05 22:17:39 +00:00
|
|
|
sem, err := backend.NewSemaphore(cfg.Connections)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-07 19:59:01 +00:00
|
|
|
be := &Backend{
|
2017-06-15 14:41:09 +00:00
|
|
|
client: client,
|
|
|
|
sem: sem,
|
|
|
|
cfg: cfg,
|
2017-03-14 22:05:51 +00:00
|
|
|
}
|
2017-02-10 18:24:54 +00:00
|
|
|
|
2017-05-01 17:30:52 +00:00
|
|
|
client.SetCustomTransport(backend.Transport())
|
2017-02-10 18:24:54 +00:00
|
|
|
|
2017-05-15 21:37:02 +00:00
|
|
|
l, err := backend.ParseLayout(be, cfg.Layout, defaultLayout, cfg.Prefix)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
be.Layout = l
|
|
|
|
|
2017-06-17 20:15:58 +00:00
|
|
|
return be, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open opens the S3 backend at bucket and region. The bucket is created if it
|
|
|
|
// does not exist yet.
|
|
|
|
func Open(cfg Config) (restic.Backend, error) {
|
|
|
|
return open(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create opens the S3 backend at bucket and region and creates the bucket if
|
|
|
|
// it does not exist yet.
|
|
|
|
func Create(cfg Config) (restic.Backend, error) {
|
|
|
|
be, err := open(cfg)
|
2017-07-17 08:33:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "open")
|
|
|
|
}
|
2017-06-17 20:15:58 +00:00
|
|
|
found, err := be.client.BucketExists(cfg.Bucket)
|
2016-08-21 14:14:58 +00:00
|
|
|
if err != nil {
|
2016-12-05 22:12:30 +00:00
|
|
|
debug.Log("BucketExists(%v) returned err %v", cfg.Bucket, err)
|
2016-08-29 19:54:50 +00:00
|
|
|
return nil, errors.Wrap(err, "client.BucketExists")
|
2016-08-21 14:14:58 +00:00
|
|
|
}
|
2015-12-28 17:55:15 +00:00
|
|
|
|
2016-12-05 22:12:30 +00:00
|
|
|
if !found {
|
2016-01-03 20:46:07 +00:00
|
|
|
// create new bucket with default ACL in default region
|
2017-06-17 20:15:58 +00:00
|
|
|
err = be.client.MakeBucket(cfg.Bucket, "")
|
2016-01-03 20:46:07 +00:00
|
|
|
if err != nil {
|
2016-08-29 19:54:50 +00:00
|
|
|
return nil, errors.Wrap(err, "client.MakeBucket")
|
2016-01-03 20:46:07 +00:00
|
|
|
}
|
2015-11-06 21:31:59 +00:00
|
|
|
}
|
|
|
|
|
2015-12-06 22:21:48 +00:00
|
|
|
return be, nil
|
|
|
|
}
|
|
|
|
|
2017-05-15 21:37:02 +00:00
|
|
|
// IsNotExist returns true if the error is caused by a not existing file.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) IsNotExist(err error) bool {
|
2017-05-15 21:37:02 +00:00
|
|
|
debug.Log("IsNotExist(%T, %#v)", err, err)
|
2017-06-16 08:54:46 +00:00
|
|
|
if os.IsNotExist(errors.Cause(err)) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if e, ok := errors.Cause(err).(minio.ErrorResponse); ok && e.Code == "NoSuchKey" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
2017-05-15 21:37:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Join combines path components with slashes.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Join(p ...string) string {
|
2017-05-15 21:37:02 +00:00
|
|
|
return path.Join(p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
type fileInfo struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
isDir bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fi fileInfo) Name() string { return fi.name } // base name of the file
|
|
|
|
func (fi fileInfo) Size() int64 { return fi.size } // length in bytes for regular files; system-dependent for others
|
|
|
|
func (fi fileInfo) Mode() os.FileMode { return fi.mode } // file mode bits
|
|
|
|
func (fi fileInfo) ModTime() time.Time { return fi.modTime } // modification time
|
|
|
|
func (fi fileInfo) IsDir() bool { return fi.isDir } // abbreviation for Mode().IsDir()
|
|
|
|
func (fi fileInfo) Sys() interface{} { return nil } // underlying data source (can return nil)
|
|
|
|
|
|
|
|
// ReadDir returns the entries for a directory.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) ReadDir(dir string) (list []os.FileInfo, err error) {
|
2017-05-15 21:37:02 +00:00
|
|
|
debug.Log("ReadDir(%v)", dir)
|
|
|
|
|
|
|
|
// make sure dir ends with a slash
|
|
|
|
if dir[len(dir)-1] != '/' {
|
|
|
|
dir += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
done := make(chan struct{})
|
|
|
|
defer close(done)
|
|
|
|
|
2017-06-15 14:41:09 +00:00
|
|
|
for obj := range be.client.ListObjects(be.cfg.Bucket, dir, false, done) {
|
2017-05-15 21:37:02 +00:00
|
|
|
if obj.Key == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
name := strings.TrimPrefix(obj.Key, dir)
|
|
|
|
if name == "" {
|
|
|
|
return nil, errors.Errorf("invalid key name %v, removing prefix %v yielded empty string", obj.Key, dir)
|
|
|
|
}
|
|
|
|
entry := fileInfo{
|
|
|
|
name: name,
|
|
|
|
size: obj.Size,
|
|
|
|
modTime: obj.LastModified,
|
|
|
|
}
|
|
|
|
|
|
|
|
if name[len(name)-1] == '/' {
|
|
|
|
entry.isDir = true
|
|
|
|
entry.mode = os.ModeDir | 0755
|
|
|
|
entry.name = name[:len(name)-1]
|
|
|
|
} else {
|
|
|
|
entry.mode = 0644
|
|
|
|
}
|
|
|
|
|
|
|
|
list = append(list, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
return list, nil
|
|
|
|
}
|
|
|
|
|
2015-05-13 17:48:52 +00:00
|
|
|
// Location returns this backend's location (the bucket name).
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Location() string {
|
2017-06-15 14:41:09 +00:00
|
|
|
return be.Join(be.cfg.Bucket, be.cfg.Prefix)
|
2017-06-07 20:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Path returns the path in the bucket that is used for this backend.
|
|
|
|
func (be *Backend) Path() string {
|
2017-06-15 14:41:09 +00:00
|
|
|
return be.cfg.Prefix
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 00:15:35 +00:00
|
|
|
// Save stores data in the backend at the handle.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Save(ctx context.Context, h restic.Handle, rd io.Reader) (err error) {
|
2017-06-11 09:15:15 +00:00
|
|
|
debug.Log("Save %v", h)
|
|
|
|
|
2016-01-24 00:15:35 +00:00
|
|
|
if err := h.Valid(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-04-11 20:04:18 +00:00
|
|
|
objName := be.Filename(h)
|
2017-04-17 17:18:47 +00:00
|
|
|
|
2016-01-24 20:13:24 +00:00
|
|
|
// Check key does not already exist
|
2017-06-15 14:41:09 +00:00
|
|
|
_, err = be.client.StatObject(be.cfg.Bucket, objName)
|
2016-01-24 20:13:24 +00:00
|
|
|
if err == nil {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("%v already exists", h)
|
2016-01-24 20:13:24 +00:00
|
|
|
return errors.New("key already exists")
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:55:04 +00:00
|
|
|
// prevent the HTTP client from closing a file
|
2017-07-17 18:43:53 +00:00
|
|
|
rd = ioutil.NopCloser(rd)
|
2017-06-15 14:39:42 +00:00
|
|
|
|
2017-06-11 09:15:15 +00:00
|
|
|
be.sem.GetToken()
|
2017-06-15 14:41:09 +00:00
|
|
|
debug.Log("PutObject(%v, %v)", be.cfg.Bucket, objName)
|
|
|
|
n, err := be.client.PutObject(be.cfg.Bucket, objName, rd, "application/octet-stream")
|
2017-06-05 22:17:39 +00:00
|
|
|
be.sem.ReleaseToken()
|
2017-06-11 09:15:15 +00:00
|
|
|
|
|
|
|
debug.Log("%v -> %v bytes, err %#v: %v", objName, n, err, err)
|
2016-01-24 00:15:35 +00:00
|
|
|
|
2016-08-29 19:54:50 +00:00
|
|
|
return errors.Wrap(err, "client.PutObject")
|
2016-01-24 00:15:35 +00:00
|
|
|
}
|
|
|
|
|
2017-02-10 18:25:50 +00:00
|
|
|
// wrapReader wraps an io.ReadCloser to run an additional function on Close.
|
|
|
|
type wrapReader struct {
|
|
|
|
io.ReadCloser
|
|
|
|
f func()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wr wrapReader) Close() error {
|
|
|
|
err := wr.ReadCloser.Close()
|
|
|
|
wr.f()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-23 17:11:10 +00:00
|
|
|
// Load returns a reader that yields the contents of the file at h at the
|
2017-01-22 21:01:12 +00:00
|
|
|
// given offset. If length is nonzero, only a portion of the file is
|
|
|
|
// returned. rd must be closed after use.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Load(ctx context.Context, h restic.Handle, length int, offset int64) (io.ReadCloser, error) {
|
2017-04-17 17:18:47 +00:00
|
|
|
debug.Log("Load %v, length %v, offset %v from %v", h, length, offset, be.Filename(h))
|
2017-01-22 21:01:12 +00:00
|
|
|
if err := h.Valid(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if offset < 0 {
|
|
|
|
return nil, errors.New("offset is negative")
|
|
|
|
}
|
|
|
|
|
|
|
|
if length < 0 {
|
|
|
|
return nil, errors.Errorf("invalid length %d", length)
|
|
|
|
}
|
|
|
|
|
2017-04-11 20:04:18 +00:00
|
|
|
objName := be.Filename(h)
|
2017-01-22 21:01:12 +00:00
|
|
|
|
2017-05-13 19:18:14 +00:00
|
|
|
byteRange := fmt.Sprintf("bytes=%d-", offset)
|
|
|
|
if length > 0 {
|
|
|
|
byteRange = fmt.Sprintf("bytes=%d-%d", offset, offset+int64(length)-1)
|
2017-01-22 21:01:12 +00:00
|
|
|
}
|
2017-05-13 19:18:14 +00:00
|
|
|
headers := minio.NewGetReqHeaders()
|
|
|
|
headers.Add("Range", byteRange)
|
2017-06-11 12:30:56 +00:00
|
|
|
|
|
|
|
be.sem.GetToken()
|
2017-05-13 19:18:14 +00:00
|
|
|
debug.Log("Load(%v) send range %v", h, byteRange)
|
2017-01-22 21:01:12 +00:00
|
|
|
|
2017-06-05 22:17:39 +00:00
|
|
|
coreClient := minio.Core{Client: be.client}
|
2017-06-15 14:41:09 +00:00
|
|
|
rd, _, err := coreClient.GetObject(be.cfg.Bucket, objName, headers)
|
2017-05-13 22:09:59 +00:00
|
|
|
if err != nil {
|
2017-06-05 22:17:39 +00:00
|
|
|
be.sem.ReleaseToken()
|
2017-05-13 22:09:59 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-22 21:01:12 +00:00
|
|
|
|
2017-05-13 22:09:59 +00:00
|
|
|
closeRd := wrapReader{
|
|
|
|
ReadCloser: rd,
|
|
|
|
f: func() {
|
|
|
|
debug.Log("Close()")
|
2017-06-05 22:17:39 +00:00
|
|
|
be.sem.ReleaseToken()
|
2017-05-13 22:09:59 +00:00
|
|
|
},
|
|
|
|
}
|
2017-01-22 21:01:12 +00:00
|
|
|
|
2017-05-13 22:09:59 +00:00
|
|
|
return closeRd, err
|
2017-01-22 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2016-01-23 22:27:58 +00:00
|
|
|
// Stat returns information about a blob.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Stat(ctx context.Context, h restic.Handle) (bi restic.FileInfo, err error) {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("%v", h)
|
2016-08-21 14:15:24 +00:00
|
|
|
|
2017-04-11 20:04:18 +00:00
|
|
|
objName := be.Filename(h)
|
2016-08-21 14:15:24 +00:00
|
|
|
var obj *minio.Object
|
|
|
|
|
2017-06-15 14:41:09 +00:00
|
|
|
obj, err = be.client.GetObject(be.cfg.Bucket, objName)
|
2016-01-23 22:27:58 +00:00
|
|
|
if err != nil {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("GetObject() err %v", err)
|
2016-08-31 20:39:36 +00:00
|
|
|
return restic.FileInfo{}, errors.Wrap(err, "client.GetObject")
|
2016-01-23 22:27:58 +00:00
|
|
|
}
|
|
|
|
|
2016-08-21 14:15:24 +00:00
|
|
|
// make sure that the object is closed properly.
|
|
|
|
defer func() {
|
|
|
|
e := obj.Close()
|
|
|
|
if err == nil {
|
2016-08-29 19:54:50 +00:00
|
|
|
err = errors.Wrap(e, "Close")
|
2016-08-21 14:15:24 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2016-01-23 22:27:58 +00:00
|
|
|
fi, err := obj.Stat()
|
|
|
|
if err != nil {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("Stat() err %v", err)
|
2016-08-31 20:39:36 +00:00
|
|
|
return restic.FileInfo{}, errors.Wrap(err, "Stat")
|
2016-01-23 22:27:58 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 20:39:36 +00:00
|
|
|
return restic.FileInfo{Size: fi.Size}, nil
|
2016-01-23 22:27:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-10 15:20:58 +00:00
|
|
|
// Test returns true if a blob of the given type and name exists in the backend.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Test(ctx context.Context, h restic.Handle) (bool, error) {
|
2015-05-10 15:20:58 +00:00
|
|
|
found := false
|
2017-04-11 20:04:18 +00:00
|
|
|
objName := be.Filename(h)
|
2017-06-15 14:41:09 +00:00
|
|
|
_, err := be.client.StatObject(be.cfg.Bucket, objName)
|
2015-08-26 11:25:05 +00:00
|
|
|
if err == nil {
|
2015-05-10 15:20:58 +00:00
|
|
|
found = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// If error, then not found
|
|
|
|
return found, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove removes the blob with the given name and type.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Remove(ctx context.Context, h restic.Handle) error {
|
2017-04-11 20:04:18 +00:00
|
|
|
objName := be.Filename(h)
|
2017-06-15 14:41:09 +00:00
|
|
|
err := be.client.RemoveObject(be.cfg.Bucket, objName)
|
2017-04-17 17:18:47 +00:00
|
|
|
debug.Log("Remove(%v) at %v -> err %v", h, objName, err)
|
2017-06-15 14:06:47 +00:00
|
|
|
|
|
|
|
if be.IsNotExist(err) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
|
2016-08-29 19:54:50 +00:00
|
|
|
return errors.Wrap(err, "client.RemoveObject")
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// List returns a channel that yields all names of blobs of type t. A
|
|
|
|
// goroutine is started for this. If the channel done is closed, sending
|
|
|
|
// stops.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) List(ctx context.Context, t restic.FileType) <-chan string {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("listing %v", t)
|
2015-05-10 15:20:58 +00:00
|
|
|
ch := make(chan string)
|
|
|
|
|
2017-04-11 20:04:18 +00:00
|
|
|
prefix := be.Dirname(restic.Handle{Type: t})
|
2015-05-10 15:20:58 +00:00
|
|
|
|
2017-05-15 21:37:02 +00:00
|
|
|
// make sure prefix ends with a slash
|
|
|
|
if prefix[len(prefix)-1] != '/' {
|
|
|
|
prefix += "/"
|
|
|
|
}
|
|
|
|
|
2017-06-15 14:41:09 +00:00
|
|
|
listresp := be.client.ListObjects(be.cfg.Bucket, prefix, true, ctx.Done())
|
2015-05-13 17:48:52 +00:00
|
|
|
|
2015-05-10 15:20:58 +00:00
|
|
|
go func() {
|
|
|
|
defer close(ch)
|
2015-11-06 21:31:59 +00:00
|
|
|
for obj := range listresp {
|
2015-12-28 23:27:29 +00:00
|
|
|
m := strings.TrimPrefix(obj.Key, prefix)
|
2015-05-10 15:20:58 +00:00
|
|
|
if m == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
2017-05-31 19:22:55 +00:00
|
|
|
case ch <- path.Base(m):
|
2017-06-03 15:39:57 +00:00
|
|
|
case <-ctx.Done():
|
2015-05-10 15:20:58 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
2015-12-06 22:21:48 +00:00
|
|
|
// Remove keys for a specified backend type.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) removeKeys(ctx context.Context, t restic.FileType) error {
|
2017-06-03 15:39:57 +00:00
|
|
|
for key := range be.List(ctx, restic.DataFile) {
|
|
|
|
err := be.Remove(ctx, restic.Handle{Type: restic.DataFile, Name: key})
|
2015-12-06 22:21:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-06-14 13:02:29 +00:00
|
|
|
}
|
2015-12-06 22:21:48 +00:00
|
|
|
|
|
|
|
return nil
|
2015-06-14 13:02:29 +00:00
|
|
|
}
|
|
|
|
|
2015-12-19 12:23:05 +00:00
|
|
|
// Delete removes all restic keys in the bucket. It will not remove the bucket itself.
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Delete(ctx context.Context) error {
|
2016-08-31 20:39:36 +00:00
|
|
|
alltypes := []restic.FileType{
|
|
|
|
restic.DataFile,
|
|
|
|
restic.KeyFile,
|
|
|
|
restic.LockFile,
|
|
|
|
restic.SnapshotFile,
|
|
|
|
restic.IndexFile}
|
2015-12-06 22:21:48 +00:00
|
|
|
|
|
|
|
for _, t := range alltypes {
|
2017-06-03 15:39:57 +00:00
|
|
|
err := be.removeKeys(ctx, t)
|
2015-12-06 22:21:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-03 15:39:57 +00:00
|
|
|
return be.Remove(ctx, restic.Handle{Type: restic.ConfigFile})
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close does nothing
|
2017-06-07 19:59:01 +00:00
|
|
|
func (be *Backend) Close() error { return nil }
|
2017-06-07 20:54:37 +00:00
|
|
|
|
|
|
|
// Rename moves a file based on the new layout l.
|
|
|
|
func (be *Backend) Rename(h restic.Handle, l backend.Layout) error {
|
|
|
|
debug.Log("Rename %v to %v", h, l)
|
|
|
|
oldname := be.Filename(h)
|
|
|
|
newname := l.Filename(h)
|
|
|
|
|
2017-07-02 08:29:41 +00:00
|
|
|
if oldname == newname {
|
|
|
|
debug.Log(" %v is already renamed", newname)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-07 20:54:37 +00:00
|
|
|
debug.Log(" %v -> %v", oldname, newname)
|
|
|
|
|
2017-07-17 18:43:45 +00:00
|
|
|
src := minio.NewSourceInfo(be.cfg.Bucket, oldname, nil)
|
|
|
|
|
|
|
|
dst, err := minio.NewDestinationInfo(be.cfg.Bucket, newname, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "NewDestinationInfo")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = be.client.CopyObject(dst, src)
|
2017-07-02 08:47:50 +00:00
|
|
|
if err != nil && be.IsNotExist(err) {
|
|
|
|
debug.Log("copy failed: %v, seems to already have been renamed", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-07 20:54:37 +00:00
|
|
|
if err != nil {
|
|
|
|
debug.Log("copy failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-15 14:41:09 +00:00
|
|
|
return be.client.RemoveObject(be.cfg.Bucket, oldname)
|
2017-06-07 20:54:37 +00:00
|
|
|
}
|