2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-07-31 15:01:11 +00:00
|
|
|
// Package versioner implements common interfaces for file versioning and a
|
|
|
|
// simple default versioning scheme.
|
2014-05-25 18:49:08 +00:00
|
|
|
package versioner
|
|
|
|
|
2018-01-01 14:39:23 +00:00
|
|
|
import (
|
2020-07-14 08:48:50 +00:00
|
|
|
"context"
|
2020-03-03 21:40:00 +00:00
|
|
|
"errors"
|
2019-04-28 22:30:16 +00:00
|
|
|
"fmt"
|
2018-01-01 14:39:23 +00:00
|
|
|
"time"
|
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2018-01-01 14:39:23 +00:00
|
|
|
)
|
2017-08-19 14:36:56 +00:00
|
|
|
|
2014-05-25 18:49:08 +00:00
|
|
|
type Versioner interface {
|
2014-08-17 05:52:26 +00:00
|
|
|
Archive(filePath string) error
|
2019-04-28 22:30:16 +00:00
|
|
|
GetVersions() (map[string][]FileVersion, error)
|
|
|
|
Restore(filePath string, versionTime time.Time) error
|
2020-07-14 08:48:50 +00:00
|
|
|
Clean(context.Context) error
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 14:39:23 +00:00
|
|
|
type FileVersion struct {
|
|
|
|
VersionTime time.Time `json:"versionTime"`
|
|
|
|
ModTime time.Time `json:"modTime"`
|
|
|
|
Size int64 `json:"size"`
|
|
|
|
}
|
|
|
|
|
2020-06-18 06:15:47 +00:00
|
|
|
type factory func(cfg config.FolderConfiguration) Versioner
|
2019-11-26 07:39:31 +00:00
|
|
|
|
|
|
|
var factories = make(map[string]factory)
|
|
|
|
|
2020-03-03 21:40:00 +00:00
|
|
|
var ErrRestorationNotSupported = errors.New("version restoration not supported with the current versioner")
|
2014-11-24 09:58:57 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
TimeFormat = "20060102-150405"
|
2019-11-26 07:39:31 +00:00
|
|
|
timeGlob = "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9][0-9][0-9]" // glob pattern matching TimeFormat
|
2014-11-24 09:58:57 +00:00
|
|
|
)
|
2019-11-26 07:39:31 +00:00
|
|
|
|
2020-06-18 06:15:47 +00:00
|
|
|
func New(cfg config.FolderConfiguration) (Versioner, error) {
|
|
|
|
fac, ok := factories[cfg.Versioning.Type]
|
2019-11-26 07:39:31 +00:00
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("requested versioning type %q does not exist", cfg.Type)
|
|
|
|
}
|
|
|
|
|
2021-02-12 19:30:51 +00:00
|
|
|
return &versionerWithErrorContext{
|
|
|
|
Versioner: fac(cfg),
|
|
|
|
vtype: cfg.Versioning.Type,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type versionerWithErrorContext struct {
|
|
|
|
Versioner
|
|
|
|
vtype string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *versionerWithErrorContext) wrapError(err error, op string) error {
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("%s versioner: %v: %w", v.vtype, op, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *versionerWithErrorContext) Archive(filePath string) error {
|
|
|
|
return v.wrapError(v.Versioner.Archive(filePath), "archive")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *versionerWithErrorContext) GetVersions() (map[string][]FileVersion, error) {
|
|
|
|
versions, err := v.Versioner.GetVersions()
|
|
|
|
return versions, v.wrapError(err, "get versions")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *versionerWithErrorContext) Restore(filePath string, versionTime time.Time) error {
|
|
|
|
return v.wrapError(v.Versioner.Restore(filePath, versionTime), "restore")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *versionerWithErrorContext) Clean(ctx context.Context) error {
|
|
|
|
return v.wrapError(v.Versioner.Clean(ctx), "clean")
|
2019-11-26 07:39:31 +00:00
|
|
|
}
|