2017-05-15 20:01:49 +00:00
|
|
|
package backend
|
|
|
|
|
2017-07-23 12:21:03 +00:00
|
|
|
import "github.com/restic/restic/internal"
|
2017-05-15 20:01:49 +00:00
|
|
|
|
|
|
|
// RESTLayout implements the default layout for the REST protocol.
|
|
|
|
type RESTLayout struct {
|
|
|
|
URL string
|
|
|
|
Path string
|
|
|
|
Join func(...string) string
|
|
|
|
}
|
|
|
|
|
|
|
|
var restLayoutPaths = defaultLayoutPaths
|
|
|
|
|
2017-06-07 19:59:41 +00:00
|
|
|
func (l *RESTLayout) String() string {
|
|
|
|
return "<RESTLayout>"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the name for this layout.
|
|
|
|
func (l *RESTLayout) Name() string {
|
|
|
|
return "rest"
|
|
|
|
}
|
|
|
|
|
2017-05-15 20:01:49 +00:00
|
|
|
// Dirname returns the directory path for a given file type and name.
|
|
|
|
func (l *RESTLayout) Dirname(h restic.Handle) string {
|
|
|
|
if h.Type == restic.ConfigFile {
|
|
|
|
return l.URL + l.Join(l.Path, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
return l.URL + l.Join(l.Path, "/", restLayoutPaths[h.Type]) + "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filename returns a path to a file, including its name.
|
|
|
|
func (l *RESTLayout) Filename(h restic.Handle) string {
|
|
|
|
name := h.Name
|
|
|
|
|
|
|
|
if h.Type == restic.ConfigFile {
|
|
|
|
name = "config"
|
|
|
|
}
|
|
|
|
|
|
|
|
return l.URL + l.Join(l.Path, "/", restLayoutPaths[h.Type], name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paths returns all directory names
|
|
|
|
func (l *RESTLayout) Paths() (dirs []string) {
|
|
|
|
for _, p := range restLayoutPaths {
|
|
|
|
dirs = append(dirs, l.URL+l.Join(l.Path, p))
|
|
|
|
}
|
|
|
|
return dirs
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basedir returns the base dir name for files of type t.
|
|
|
|
func (l *RESTLayout) Basedir(t restic.FileType) string {
|
|
|
|
return l.URL + l.Join(l.Path, restLayoutPaths[t])
|
|
|
|
}
|