2015-06-12 11:04:00 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// 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/.
|
2015-06-12 11:04:00 +00:00
|
|
|
|
|
|
|
package versioner
|
|
|
|
|
|
|
|
import (
|
2019-11-21 07:41:15 +00:00
|
|
|
"context"
|
2015-06-12 11:04:00 +00:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
2020-06-18 06:15:47 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2017-08-19 14:36:56 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2015-06-12 11:04:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Register the constructor for this type of versioner
|
2019-11-26 07:39:31 +00:00
|
|
|
factories["trashcan"] = newTrashcan
|
2015-06-12 11:04:00 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
type trashcan struct {
|
2020-06-18 06:15:47 +00:00
|
|
|
folderFs fs.Filesystem
|
|
|
|
versionsFs fs.Filesystem
|
|
|
|
cleanoutDays int
|
|
|
|
copyRangeMethod fs.CopyRangeMethod
|
2015-06-12 11:04:00 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 06:15:47 +00:00
|
|
|
func newTrashcan(cfg config.FolderConfiguration) Versioner {
|
|
|
|
cleanoutDays, _ := strconv.Atoi(cfg.Versioning.Params["cleanoutDays"])
|
2015-06-12 11:04:00 +00:00
|
|
|
// On error we default to 0, "do not clean out the trash can"
|
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
s := &trashcan{
|
2022-04-10 18:55:05 +00:00
|
|
|
folderFs: cfg.Filesystem(nil),
|
2020-06-18 06:15:47 +00:00
|
|
|
versionsFs: versionerFsFromFolderCfg(cfg),
|
|
|
|
cleanoutDays: cleanoutDays,
|
|
|
|
copyRangeMethod: cfg.CopyRangeMethod,
|
2015-06-12 11:04:00 +00:00
|
|
|
}
|
|
|
|
|
2015-10-03 15:25:21 +00:00
|
|
|
l.Debugf("instantiated %#v", s)
|
2015-06-12 11:04:00 +00:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Archive moves the named file away to a version archive. If this function
|
|
|
|
// returns nil, the named file does not exist any more (has been archived).
|
2019-11-26 07:39:31 +00:00
|
|
|
func (t *trashcan) Archive(filePath string) error {
|
2020-06-18 06:15:47 +00:00
|
|
|
return archiveFile(t.copyRangeMethod, t.folderFs, t.versionsFs, filePath, func(name, tag string) string {
|
2019-04-28 22:30:16 +00:00
|
|
|
return name
|
|
|
|
})
|
2015-06-12 11:04:00 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
func (t *trashcan) String() string {
|
2015-06-12 11:04:00 +00:00
|
|
|
return fmt.Sprintf("trashcan@%p", t)
|
|
|
|
}
|
|
|
|
|
2020-07-14 08:48:50 +00:00
|
|
|
func (t *trashcan) Clean(ctx context.Context) error {
|
2022-09-13 17:20:04 +00:00
|
|
|
if t.cleanoutDays <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := t.versionsFs.Lstat("."); fs.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
cutoff := time.Now().Add(time.Duration(-24*t.cleanoutDays) * time.Hour)
|
|
|
|
dirTracker := make(emptyDirTracker)
|
|
|
|
|
|
|
|
walkFn := func(path string, info fs.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.IsDir() && !info.IsSymlink() {
|
|
|
|
dirTracker.addDir(path)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.ModTime().Before(cutoff) {
|
|
|
|
// The file is too old; remove it.
|
|
|
|
err = t.versionsFs.Remove(path)
|
|
|
|
} else {
|
|
|
|
// Keep this file, and remember it so we don't unnecessarily try
|
|
|
|
// to remove this directory.
|
|
|
|
dirTracker.addFile(path)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := t.versionsFs.Walk(".", walkFn); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
dirTracker.deleteEmptyDirs(t.versionsFs)
|
|
|
|
|
|
|
|
return nil
|
2015-06-12 11:04:00 +00:00
|
|
|
}
|
2019-04-28 22:30:16 +00:00
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
func (t *trashcan) GetVersions() (map[string][]FileVersion, error) {
|
2019-04-28 22:30:16 +00:00
|
|
|
return retrieveVersions(t.versionsFs)
|
|
|
|
}
|
|
|
|
|
2019-11-26 07:39:31 +00:00
|
|
|
func (t *trashcan) Restore(filepath string, versionTime time.Time) error {
|
2019-04-28 22:30:16 +00:00
|
|
|
// If we have an untagged file A and want to restore it on top of existing file A, we can't first archive the
|
|
|
|
// existing A as we'd overwrite the old A version, therefore when we archive existing file, we archive it with a
|
|
|
|
// tag but when the restoration is finished, we rename it (untag it). This is only important if when restoring A,
|
|
|
|
// there already exists a file at the same location
|
|
|
|
|
2022-09-20 09:34:15 +00:00
|
|
|
// If we restore a deleted file, there won't be a conflict and archiving won't happen thus there won't be anything
|
|
|
|
// in the archive to rename afterwards. Log whether the file exists prior to restoring.
|
|
|
|
_, dstPathErr := t.folderFs.Lstat(filepath)
|
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
taggedName := ""
|
|
|
|
tagger := func(name, tag string) string {
|
2019-06-25 05:56:11 +00:00
|
|
|
// We also abuse the fact that tagger gets called twice, once for tagging the restoration version, which
|
|
|
|
// should just return the plain name, and second time by archive which archives existing file in the folder.
|
|
|
|
// We can't use TagFilename here, as restoreFile would discover that as a valid version and restore that instead.
|
|
|
|
if taggedName != "" {
|
|
|
|
return taggedName
|
|
|
|
}
|
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
taggedName = fs.TempName(name)
|
2019-06-25 05:56:11 +00:00
|
|
|
return name
|
2019-04-28 22:30:16 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 09:34:15 +00:00
|
|
|
if err := restoreFile(t.copyRangeMethod, t.versionsFs, t.folderFs, filepath, versionTime, tagger); taggedName == "" {
|
2019-04-28 22:30:16 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-09-20 09:34:15 +00:00
|
|
|
// If a deleted file was restored, even though the RenameOrCopy method is robust, check if the file exists and
|
|
|
|
// skip the renaming function if this is the case.
|
|
|
|
if fs.IsNotExist(dstPathErr) {
|
|
|
|
if _, err := t.folderFs.Lstat(filepath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
return t.versionsFs.Rename(taggedName, filepath)
|
|
|
|
}
|