2022-10-15 14:23:39 +00:00
|
|
|
package layout
|
2017-03-26 20:20:10 +00:00
|
|
|
|
2023-10-01 09:40:12 +00:00
|
|
|
import (
|
|
|
|
"github.com/restic/restic/internal/backend"
|
|
|
|
)
|
2017-03-26 20:20:10 +00:00
|
|
|
|
2017-05-15 19:58:03 +00:00
|
|
|
// S3LegacyLayout implements the old layout used for s3 cloud storage backends, as
|
2017-03-26 20:20:10 +00:00
|
|
|
// described in the Design document.
|
2017-05-15 19:58:03 +00:00
|
|
|
type S3LegacyLayout struct {
|
2017-04-11 19:28:31 +00:00
|
|
|
URL string
|
2017-03-26 20:20:10 +00:00
|
|
|
Path string
|
|
|
|
Join func(...string) string
|
|
|
|
}
|
|
|
|
|
2023-10-01 09:40:12 +00:00
|
|
|
var s3LayoutPaths = map[backend.FileType]string{
|
|
|
|
backend.PackFile: "data",
|
|
|
|
backend.SnapshotFile: "snapshot",
|
|
|
|
backend.IndexFile: "index",
|
|
|
|
backend.LockFile: "lock",
|
|
|
|
backend.KeyFile: "key",
|
2017-03-26 20:20:10 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 19:59:41 +00:00
|
|
|
func (l *S3LegacyLayout) String() string {
|
|
|
|
return "<S3LegacyLayout>"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the name for this layout.
|
|
|
|
func (l *S3LegacyLayout) Name() string {
|
|
|
|
return "s3legacy"
|
|
|
|
}
|
|
|
|
|
2017-04-17 18:06:06 +00:00
|
|
|
// join calls Join with the first empty elements removed.
|
2017-05-15 19:58:03 +00:00
|
|
|
func (l *S3LegacyLayout) join(url string, items ...string) string {
|
2017-04-17 18:06:06 +00:00
|
|
|
for len(items) > 0 && items[0] == "" {
|
|
|
|
items = items[1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
path := l.Join(items...)
|
|
|
|
if path == "" || path[0] != '/' {
|
|
|
|
if url != "" && url[len(url)-1] != '/' {
|
|
|
|
url += "/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return url + path
|
|
|
|
}
|
|
|
|
|
2017-03-26 20:20:10 +00:00
|
|
|
// Dirname returns the directory path for a given file type and name.
|
2023-10-01 09:40:12 +00:00
|
|
|
func (l *S3LegacyLayout) Dirname(h backend.Handle) string {
|
|
|
|
if h.Type == backend.ConfigFile {
|
2017-04-11 20:04:04 +00:00
|
|
|
return l.URL + l.Join(l.Path, "/")
|
|
|
|
}
|
|
|
|
|
2017-04-17 18:06:06 +00:00
|
|
|
return l.join(l.URL, l.Path, s3LayoutPaths[h.Type]) + "/"
|
2017-03-26 20:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filename returns a path to a file, including its name.
|
2023-10-01 09:40:12 +00:00
|
|
|
func (l *S3LegacyLayout) Filename(h backend.Handle) string {
|
2017-03-26 20:20:10 +00:00
|
|
|
name := h.Name
|
|
|
|
|
2023-10-01 09:40:12 +00:00
|
|
|
if h.Type == backend.ConfigFile {
|
2017-03-26 20:20:10 +00:00
|
|
|
name = "config"
|
|
|
|
}
|
|
|
|
|
2017-04-17 18:06:06 +00:00
|
|
|
return l.join(l.URL, l.Path, s3LayoutPaths[h.Type], name)
|
2017-03-26 20:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Paths returns all directory names
|
2017-05-15 19:58:03 +00:00
|
|
|
func (l *S3LegacyLayout) Paths() (dirs []string) {
|
2017-03-26 20:20:10 +00:00
|
|
|
for _, p := range s3LayoutPaths {
|
|
|
|
dirs = append(dirs, l.Join(l.Path, p))
|
|
|
|
}
|
|
|
|
return dirs
|
|
|
|
}
|
2017-04-10 21:21:23 +00:00
|
|
|
|
|
|
|
// Basedir returns the base dir name for type t.
|
2023-10-01 09:40:12 +00:00
|
|
|
func (l *S3LegacyLayout) Basedir(t backend.FileType) (dirname string, subdirs bool) {
|
2017-12-14 18:13:01 +00:00
|
|
|
return l.Join(l.Path, s3LayoutPaths[t]), false
|
2017-04-10 21:21:23 +00:00
|
|
|
}
|