2016-08-20 15:43:25 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-10-10 18:55:02 +00:00
|
|
|
"encoding/hex"
|
2017-03-07 13:19:36 +00:00
|
|
|
"encoding/json"
|
2016-08-20 15:43:25 +00:00
|
|
|
"restic"
|
2017-03-07 13:19:36 +00:00
|
|
|
"sort"
|
2016-08-20 15:59:10 +00:00
|
|
|
"strings"
|
2016-09-17 10:36:05 +00:00
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
"restic/errors"
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
"github.com/spf13/cobra"
|
2016-08-20 15:43:25 +00:00
|
|
|
)
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
var cmdForget = &cobra.Command{
|
|
|
|
Use: "forget [flags] [snapshot ID] [...]",
|
|
|
|
Short: "forget removes snapshots from the repository",
|
|
|
|
Long: `
|
|
|
|
The "forget" command removes snapshots according to a policy. Please note that
|
|
|
|
this command really only deletes the snapshot object in the repository, which
|
|
|
|
is a reference to data stored there. In order to remove this (now unreferenced)
|
|
|
|
data after 'forget' was run successfully, see the 'prune' command. `,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runForget(forgetOptions, globalOptions, args)
|
|
|
|
},
|
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
// ForgetOptions collects all options for the forget command.
|
|
|
|
type ForgetOptions struct {
|
|
|
|
Last int
|
|
|
|
Hourly int
|
|
|
|
Daily int
|
|
|
|
Weekly int
|
|
|
|
Monthly int
|
|
|
|
Yearly int
|
2016-09-13 18:37:11 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
KeepTags []string
|
2016-08-20 15:59:47 +00:00
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
Host string
|
|
|
|
Tags []string
|
|
|
|
Paths []string
|
2016-08-20 15:43:25 +00:00
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
GroupByTags bool
|
|
|
|
DryRun bool
|
|
|
|
Prune bool
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
var forgetOptions ForgetOptions
|
|
|
|
|
2016-08-20 15:43:25 +00:00
|
|
|
func init() {
|
2016-09-17 10:36:05 +00:00
|
|
|
cmdRoot.AddCommand(cmdForget)
|
|
|
|
|
|
|
|
f := cmdForget.Flags()
|
2016-09-29 18:39:55 +00:00
|
|
|
f.IntVarP(&forgetOptions.Last, "keep-last", "l", 0, "keep the last `n` snapshots")
|
|
|
|
f.IntVarP(&forgetOptions.Hourly, "keep-hourly", "H", 0, "keep the last `n` hourly snapshots")
|
|
|
|
f.IntVarP(&forgetOptions.Daily, "keep-daily", "d", 0, "keep the last `n` daily snapshots")
|
|
|
|
f.IntVarP(&forgetOptions.Weekly, "keep-weekly", "w", 0, "keep the last `n` weekly snapshots")
|
|
|
|
f.IntVarP(&forgetOptions.Monthly, "keep-monthly", "m", 0, "keep the last `n` monthly snapshots")
|
|
|
|
f.IntVarP(&forgetOptions.Yearly, "keep-yearly", "y", 0, "keep the last `n` yearly snapshots")
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
f.StringSliceVar(&forgetOptions.KeepTags, "keep-tag", []string{}, "keep snapshots with this `tag` (can be specified multiple times)")
|
|
|
|
f.BoolVarP(&forgetOptions.GroupByTags, "group-by-tags", "G", false, "Group by host,paths,tags instead of just host,paths")
|
|
|
|
// Sadly the commonly used shortcut `H` is already used.
|
|
|
|
f.StringVar(&forgetOptions.Host, "host", "", "only consider snapshots with the given `host`")
|
|
|
|
// Deprecated since 2017-03-07.
|
|
|
|
f.StringVar(&forgetOptions.Host, "hostname", "", "only consider snapshots with the given `hostname` (deprecated)")
|
|
|
|
f.StringSliceVar(&forgetOptions.Tags, "tag", nil, "only consider snapshots which include this `tag` (can be specified multiple times)")
|
|
|
|
f.StringSliceVar(&forgetOptions.Paths, "path", nil, "only consider snapshots which include this (absolute) `path` (can be specified multiple times)")
|
2016-08-20 15:43:25 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
f.BoolVarP(&forgetOptions.DryRun, "dry-run", "n", false, "do not delete anything, just print what would be done")
|
2017-02-21 09:58:30 +00:00
|
|
|
f.BoolVar(&forgetOptions.Prune, "prune", false, "automatically run the 'prune' command if snapshots have been removed")
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
func runForget(opts ForgetOptions, gopts GlobalOptions, args []string) error {
|
|
|
|
repo, err := OpenRepository(gopts)
|
2016-08-20 15:43:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
lock, err := lockRepoExclusive(repo)
|
|
|
|
defer unlockRepo(lock)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
// Process all snapshot IDs given as arguments.
|
|
|
|
if len(args) != 0 {
|
|
|
|
for _, s := range args {
|
|
|
|
// Parse argument as hex string.
|
|
|
|
if _, err := hex.DecodeString(s); err != nil {
|
|
|
|
Warnf("argument %q is not a snapshot ID, ignoring\n", s)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
id, err := restic.FindSnapshot(repo, s)
|
2016-08-20 15:43:25 +00:00
|
|
|
if err != nil {
|
2017-03-07 13:19:36 +00:00
|
|
|
Warnf("could not find a snapshot for ID %q, ignoring\n", s)
|
|
|
|
continue
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
if !opts.DryRun {
|
|
|
|
h := restic.Handle{Type: restic.SnapshotFile, Name: id.String()}
|
|
|
|
err = repo.Backend().Remove(h)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
Verbosef("removed snapshot %v\n", id.Str())
|
|
|
|
} else {
|
|
|
|
Verbosef("would remove snapshot %v\n", id.Str())
|
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
2017-03-07 13:19:36 +00:00
|
|
|
return nil
|
2016-08-20 15:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
policy := restic.ExpirePolicy{
|
2016-09-17 10:36:05 +00:00
|
|
|
Last: opts.Last,
|
|
|
|
Hourly: opts.Hourly,
|
|
|
|
Daily: opts.Daily,
|
|
|
|
Weekly: opts.Weekly,
|
|
|
|
Monthly: opts.Monthly,
|
|
|
|
Yearly: opts.Yearly,
|
|
|
|
Tags: opts.KeepTags,
|
2016-08-20 15:53:03 +00:00
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
|
|
|
|
snapshots, err := restic.LoadAllSnapshots(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
// Group snapshots by hostname and dirs.
|
2016-08-20 15:43:25 +00:00
|
|
|
type key struct {
|
|
|
|
Hostname string
|
2017-03-07 13:19:36 +00:00
|
|
|
Paths []string
|
|
|
|
Tags []string
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
snapshotGroups := make(map[string]restic.Snapshots)
|
2016-08-20 15:43:25 +00:00
|
|
|
|
|
|
|
for _, sn := range snapshots {
|
2017-03-07 13:19:36 +00:00
|
|
|
if opts.Host != "" && sn.Hostname != opts.Host {
|
2016-08-20 15:59:47 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if !sn.HasTags(opts.Tags) {
|
2016-09-13 18:20:55 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
if !sn.HasPaths(opts.Paths) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var tags []string
|
|
|
|
if opts.GroupByTags {
|
|
|
|
sort.StringSlice(sn.Tags).Sort()
|
|
|
|
tags = sn.Tags
|
|
|
|
}
|
|
|
|
sort.StringSlice(sn.Paths).Sort()
|
|
|
|
k, _ := json.Marshal(key{Hostname: sn.Hostname, Tags: tags, Paths: sn.Paths})
|
|
|
|
snapshotGroups[string(k)] = append(snapshotGroups[string(k)], sn)
|
|
|
|
}
|
|
|
|
if len(snapshotGroups) == 0 {
|
|
|
|
return errors.Fatal("no snapshots remained after filtering")
|
|
|
|
}
|
|
|
|
if policy.Empty() {
|
|
|
|
Verbosef("no policy was specified, no snapshots will be removed\n")
|
2016-08-20 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2017-02-21 09:58:30 +00:00
|
|
|
removeSnapshots := 0
|
2017-03-07 13:19:36 +00:00
|
|
|
for k, snapshotGroup := range snapshotGroups {
|
|
|
|
var key key
|
|
|
|
json.Unmarshal([]byte(k), &key)
|
|
|
|
if opts.GroupByTags {
|
|
|
|
Printf("snapshots for host %v, tags [%v], paths: [%v]:\n\n", key.Hostname, strings.Join(key.Tags, ", "), strings.Join(key.Paths, ", "))
|
|
|
|
} else {
|
|
|
|
Printf("snapshots for host %v, paths: [%v]:\n\n", key.Hostname, strings.Join(key.Paths, ", "))
|
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
keep, remove := restic.ApplyPolicy(snapshotGroup, policy)
|
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
if len(keep) != 0 {
|
|
|
|
Printf("keep %d snapshots:\n", len(keep))
|
|
|
|
PrintSnapshots(globalOptions.stdout, keep)
|
|
|
|
Printf("\n")
|
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
|
2017-03-07 13:19:36 +00:00
|
|
|
if len(remove) != 0 {
|
|
|
|
Printf("remove %d snapshots:\n", len(remove))
|
|
|
|
PrintSnapshots(globalOptions.stdout, remove)
|
|
|
|
Printf("\n")
|
|
|
|
}
|
2016-08-20 15:43:25 +00:00
|
|
|
|
2017-02-21 09:58:30 +00:00
|
|
|
removeSnapshots += len(remove)
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if !opts.DryRun {
|
2016-08-20 15:43:25 +00:00
|
|
|
for _, sn := range remove {
|
2017-01-25 16:48:35 +00:00
|
|
|
h := restic.Handle{Type: restic.SnapshotFile, Name: sn.ID().String()}
|
|
|
|
err = repo.Backend().Remove(h)
|
2016-08-20 15:43:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-21 09:58:30 +00:00
|
|
|
if removeSnapshots > 0 && opts.Prune {
|
|
|
|
Printf("%d snapshots have been removed, running prune\n", removeSnapshots)
|
|
|
|
if !opts.DryRun {
|
|
|
|
return pruneRepository(gopts, repo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-20 15:43:25 +00:00
|
|
|
return nil
|
|
|
|
}
|