radicle-cli 0.20.0

Radicle CLI
Documentation
use std::str::FromStr;

use radicle::git;
use radicle::git::fmt::RefString;
use radicle::prelude::*;
use radicle::Profile;
use radicle_crypto::PublicKey;

use crate::commands::checkout;
use crate::commands::follow;
use crate::commands::sync;
use crate::node::SyncSettings;
use crate::project::SetupRemote;

pub fn run(
    rid: RepoId,
    nid: &PublicKey,
    name: Option<RefString>,
    tracking: Option<BranchName>,
    profile: &Profile,
    repo: &git::raw::Repository,
    fetch: bool,
    sync: bool,
) -> anyhow::Result<()> {
    if sync {
        let mut node = radicle::Node::new(profile.socket());

        if !profile.policies()?.is_following(nid)? {
            let alias = name.as_ref().and_then(|n| Alias::from_str(n.as_str()).ok());

            follow::follow(*nid, alias, &mut node, profile)?;
            sync::fetch(
                rid,
                SyncSettings::default().with_profile(profile),
                &mut node,
                profile,
            )?;
        }
    }
    let aliases = profile.aliases();
    let setup = SetupRemote {
        rid,
        tracking,
        fetch,
        repo,
    };
    checkout::setup_remote(&setup, nid, name, &aliases)?;

    Ok(())
}