rustic-rs 0.11.2

rustic - fast, encrypted, deduplicated backups powered by Rust
Documentation
//! `tag` subcommand
use abscissa_core::{Command, Runnable};
use rustic_core::{StringList, repofile::SnapshotModification};

use crate::commands::rewrite::RewriteCmd;

/// `tag` subcommand
#[derive(clap::Parser, Command, Debug)]
pub(crate) struct TagCmd {
    /// Snapshots to change tags. If none is given, use filter to filter from all snapshots
    ///
    /// Snapshots can be identified the following ways: "01a2b3c4" or "latest" or "latest~N" (N >= 0)
    #[clap(value_name = "ID")]
    ids: Vec<String>,

    /// Tags to add (can be specified multiple times)
    #[clap(
        long,
        value_name = "TAG[,TAG,..]",
        conflicts_with = "remove",
        help_heading = "Tag options"
    )]
    add: Vec<StringList>,

    /// Tags to remove (can be specified multiple times)
    #[clap(long, value_name = "TAG[,TAG,..]", help_heading = "Tag options")]
    remove: Vec<StringList>,

    /// Tag list to set (can be specified multiple times)
    #[clap(
        long,
        value_name = "TAG[,TAG,..]",
        conflicts_with = "remove",
        help_heading = "Tag options"
    )]
    set: Vec<StringList>,
}

impl Runnable for TagCmd {
    fn run(&self) {
        let modification = SnapshotModification::default()
            .add_tags(self.add.clone())
            .remove_tags(self.remove.clone())
            .set_tags(self.set.clone());
        let rewrite = RewriteCmd {
            ids: self.ids.clone(),
            modification,
            forget: true,
            ..Default::default()
        };
        rewrite.run();
    }
}