2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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-08 23:52:18 -07:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 13:50:14 -07:00
|
|
|
|
2014-07-31 08:01:11 -07:00
|
|
|
// Package versioner implements common interfaces for file versioning and a
|
|
|
|
// simple default versioning scheme.
|
2014-05-25 11:49:08 -07:00
|
|
|
package versioner
|
|
|
|
|
2018-01-01 07:39:23 -07:00
|
|
|
import (
|
2020-07-14 01:48:50 -07:00
|
|
|
"context"
|
2020-03-03 14:40:00 -07:00
|
|
|
"errors"
|
2019-04-28 15:30:16 -07:00
|
|
|
"fmt"
|
2018-01-01 07:39:23 -07:00
|
|
|
"time"
|
|
|
|
|
2019-11-26 00:39:31 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2018-01-01 07:39:23 -07:00
|
|
|
)
|
2017-08-19 07:36:56 -07:00
|
|
|
|
2014-05-25 11:49:08 -07:00
|
|
|
type Versioner interface {
|
2014-08-16 22:52:26 -07:00
|
|
|
Archive(filePath string) error
|
2019-04-28 15:30:16 -07:00
|
|
|
GetVersions() (map[string][]FileVersion, error)
|
|
|
|
Restore(filePath string, versionTime time.Time) error
|
2020-07-14 01:48:50 -07:00
|
|
|
Clean(context.Context) error
|
2014-05-25 11:49:08 -07:00
|
|
|
}
|
|
|
|
|
2018-01-01 07:39:23 -07:00
|
|
|
type FileVersion struct {
|
|
|
|
VersionTime time.Time `json:"versionTime"`
|
|
|
|
ModTime time.Time `json:"modTime"`
|
|
|
|
Size int64 `json:"size"`
|
|
|
|
}
|
|
|
|
|
2020-06-17 23:15:47 -07:00
|
|
|
type factory func(cfg config.FolderConfiguration) Versioner
|
2019-11-26 00:39:31 -07:00
|
|
|
|
|
|
|
var factories = make(map[string]factory)
|
|
|
|
|
2020-03-03 14:40:00 -07:00
|
|
|
var ErrRestorationNotSupported = errors.New("version restoration not supported with the current versioner")
|
2014-11-24 02:58:57 -07:00
|
|
|
|
|
|
|
const (
|
|
|
|
TimeFormat = "20060102-150405"
|
2019-11-26 00:39:31 -07: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 02:58:57 -07:00
|
|
|
)
|
2019-11-26 00:39:31 -07:00
|
|
|
|
2020-06-17 23:15:47 -07:00
|
|
|
func New(cfg config.FolderConfiguration) (Versioner, error) {
|
|
|
|
fac, ok := factories[cfg.Versioning.Type]
|
2019-11-26 00:39:31 -07:00
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("requested versioning type %q does not exist", cfg.Type)
|
|
|
|
}
|
|
|
|
|
2020-06-17 23:15:47 -07:00
|
|
|
return fac(cfg), nil
|
2019-11-26 00:39:31 -07:00
|
|
|
}
|