cli: Update `rad untrack` command
This command was using very old code that needed updating.
This commit is contained in:
parent
eecea67ffd
commit
992878fab4
|
|
@ -18,7 +18,7 @@ Usage
|
||||||
|
|
||||||
rad rm <rid> [<option>...]
|
rad rm <rid> [<option>...]
|
||||||
|
|
||||||
Removes a repository from storage.
|
Removes a repository from storage. The repository is also untracked, if possible.
|
||||||
|
|
||||||
Options
|
Options
|
||||||
|
|
||||||
|
|
@ -28,7 +28,7 @@ Options
|
||||||
};
|
};
|
||||||
|
|
||||||
pub struct Options {
|
pub struct Options {
|
||||||
id: Id,
|
rid: Id,
|
||||||
confirm: bool,
|
confirm: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@ impl Args for Options {
|
||||||
|
|
||||||
Ok((
|
Ok((
|
||||||
Options {
|
Options {
|
||||||
id: id.ok_or_else(|| anyhow!("an RID must be provided; see `rad rm --help`"))?,
|
rid: id.ok_or_else(|| anyhow!("an RID must be provided; see `rad rm --help`"))?,
|
||||||
confirm,
|
confirm,
|
||||||
},
|
},
|
||||||
vec![],
|
vec![],
|
||||||
|
|
@ -68,20 +68,21 @@ impl Args for Options {
|
||||||
pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
||||||
let profile = ctx.profile()?;
|
let profile = ctx.profile()?;
|
||||||
let storage = &profile.storage;
|
let storage = &profile.storage;
|
||||||
let id = options.id;
|
let rid = options.rid;
|
||||||
let path = radicle::storage::git::paths::repository(storage, &id);
|
let path = radicle::storage::git::paths::repository(storage, &rid);
|
||||||
|
let mut node = radicle::Node::new(profile.socket());
|
||||||
|
|
||||||
if !path.exists() {
|
if !path.exists() {
|
||||||
anyhow::bail!("repository {id} was not found");
|
anyhow::bail!("repository {rid} was not found");
|
||||||
}
|
}
|
||||||
|
|
||||||
if !options.confirm || term::confirm(format!("Remove {id}?")) {
|
if !options.confirm || term::confirm(format!("Remove {rid}?")) {
|
||||||
if let Err(e) = rad_untrack::untrack(id.to_owned(), &profile) {
|
if let Err(e) = rad_untrack::untrack_repo(rid, &mut node) {
|
||||||
term::warning(&format!("Failed to untrack repository: {e}"));
|
term::warning(&format!("Failed to untrack repository: {e}"));
|
||||||
term::warning("Make sure to untrack this repository when your node is running");
|
term::warning("Make sure to untrack this repository when your node is running");
|
||||||
}
|
}
|
||||||
fs::remove_dir_all(path)?;
|
fs::remove_dir_all(path)?;
|
||||||
term::success!("Successfully removed {id} from storage");
|
term::success!("Successfully removed {rid} from storage");
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
||||||
|
|
@ -1,33 +1,43 @@
|
||||||
use std::ffi::OsString;
|
use std::ffi::OsString;
|
||||||
|
|
||||||
use anyhow::{anyhow, Context as _};
|
use anyhow::anyhow;
|
||||||
|
|
||||||
use radicle::identity::Id;
|
use radicle::node::{Handle, NodeId};
|
||||||
use radicle::node::Handle;
|
use radicle::{prelude::*, Node};
|
||||||
use radicle::prelude::*;
|
|
||||||
use radicle::storage::ReadStorage;
|
|
||||||
|
|
||||||
use crate::terminal as term;
|
use crate::terminal as term;
|
||||||
use crate::terminal::args::{Args, Error, Help};
|
use crate::terminal::args::{Args, Error, Help};
|
||||||
|
|
||||||
pub const HELP: Help = Help {
|
pub const HELP: Help = Help {
|
||||||
name: "untrack",
|
name: "untrack",
|
||||||
description: "Untrack project peers",
|
description: "Untrack a repository or node",
|
||||||
version: env!("CARGO_PKG_VERSION"),
|
version: env!("CARGO_PKG_VERSION"),
|
||||||
usage: r#"
|
usage: r#"
|
||||||
Usage
|
Usage
|
||||||
|
|
||||||
rad untrack [<rid>] [<option>...]
|
rad untrack <nid> [<option>...]
|
||||||
|
rad untrack <rid> [<option>...]
|
||||||
|
|
||||||
|
The `untrack` command takes either an NID or an RID. Based on the argument, it will
|
||||||
|
either update the tracking policy of a node (NID), or a repository (RID).
|
||||||
|
|
||||||
Options
|
Options
|
||||||
|
|
||||||
--help Print help
|
--verbose, -v Verbose output
|
||||||
|
--help Print help
|
||||||
"#,
|
"#,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum Operation {
|
||||||
|
UntrackNode { nid: NodeId },
|
||||||
|
UntrackRepo { rid: Id },
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Options {
|
pub struct Options {
|
||||||
pub id: Option<Id>,
|
pub op: Operation,
|
||||||
|
pub verbose: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Args for Options {
|
impl Args for Options {
|
||||||
|
|
@ -35,20 +45,22 @@ impl Args for Options {
|
||||||
use lexopt::prelude::*;
|
use lexopt::prelude::*;
|
||||||
|
|
||||||
let mut parser = lexopt::Parser::from_args(args);
|
let mut parser = lexopt::Parser::from_args(args);
|
||||||
let mut id: Option<Id> = None;
|
let mut op: Option<Operation> = None;
|
||||||
|
let mut verbose = false;
|
||||||
|
|
||||||
while let Some(arg) = parser.next()? {
|
while let Some(arg) = parser.next()? {
|
||||||
match arg {
|
match (&arg, &mut op) {
|
||||||
Value(val) if id.is_none() => {
|
(Value(val), None) => {
|
||||||
let val = val.to_string_lossy();
|
if let Ok(rid) = term::args::rid(val) {
|
||||||
|
op = Some(Operation::UntrackRepo { rid });
|
||||||
if let Ok(val) = Id::from_urn(&val) {
|
} else if let Ok(did) = term::args::did(val) {
|
||||||
id = Some(val);
|
op = Some(Operation::UntrackNode { nid: did.into() });
|
||||||
} else {
|
} else if let Ok(nid) = term::args::nid(val) {
|
||||||
return Err(anyhow!("invalid RID '{}'", val));
|
op = Some(Operation::UntrackNode { nid });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Long("help") => {
|
(Long("verbose") | Short('v'), _) => verbose = true,
|
||||||
|
(Long("help"), _) => {
|
||||||
return Err(Error::Help.into());
|
return Err(Error::Help.into());
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
|
|
@ -57,37 +69,46 @@ impl Args for Options {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok((Options { id }, vec![]))
|
Ok((
|
||||||
|
Options {
|
||||||
|
op: op.ok_or_else(|| anyhow!("either an NID or an RID must be specified"))?,
|
||||||
|
verbose,
|
||||||
|
},
|
||||||
|
vec![],
|
||||||
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
||||||
let id = options
|
|
||||||
.id
|
|
||||||
.or_else(|| radicle::rad::cwd().ok().map(|(_, id)| id))
|
|
||||||
.context("current directory is not a git repository; please supply an RID")?;
|
|
||||||
let profile = ctx.profile()?;
|
let profile = ctx.profile()?;
|
||||||
let storage = &profile.storage;
|
let mut node = radicle::Node::new(profile.socket());
|
||||||
let project = storage.repository(id)?.project_of(profile.id())?;
|
|
||||||
|
|
||||||
if untrack(id, &profile)? {
|
match options.op {
|
||||||
term::success!(
|
Operation::UntrackNode { nid } => untrack_node(nid, &mut node),
|
||||||
"Tracking relationships for {} ({}) removed",
|
Operation::UntrackRepo { rid } => untrack_repo(rid, &mut node),
|
||||||
term::format::highlight(project.name()),
|
}?;
|
||||||
&id.urn()
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
term::info!(
|
|
||||||
"Tracking relationships for {} ({}) doesn't exist",
|
|
||||||
term::format::highlight(project.name()),
|
|
||||||
&id.urn()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn untrack(id: Id, profile: &Profile) -> anyhow::Result<bool> {
|
pub fn untrack_repo(rid: Id, node: &mut Node) -> anyhow::Result<()> {
|
||||||
let mut node = radicle::Node::new(profile.socket());
|
let untracked = node.untrack_repo(rid)?;
|
||||||
node.untrack_repo(id).map_err(|e| anyhow!(e))
|
if untracked {
|
||||||
|
term::success!(
|
||||||
|
"Tracking policy for {} removed",
|
||||||
|
term::format::tertiary(rid),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn untrack_node(nid: NodeId, node: &mut Node) -> anyhow::Result<()> {
|
||||||
|
let untracked = node.untrack_node(nid)?;
|
||||||
|
if untracked {
|
||||||
|
term::success!(
|
||||||
|
"Tracking policy for {} removed",
|
||||||
|
term::format::tertiary(nid),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue