repos-tool 0.1.4

A simple command line tool to manage local repositories.
Documentation
use std::path::Path;
use std::process::Command;

use super::super::metadata::Proxy;
use super::util::gen_proxy_env_vars;
use super::Vcs;

pub struct Git;

impl Git {
    /// Create a new `Git`.
    pub fn new() -> Self {
        Git
    }
}

impl Vcs for Git {
    fn clone(&self, url: &str, path: &Path, bare: bool, proxy: Option<&Proxy>) {
        // Build command arguments.
        let mut args = Vec::new();
        args.push("clone");
        if bare {
            args.push("--bare");
        }
        args.push(url);
        args.push(path.to_str().unwrap());

        let proxy_env_vars = gen_proxy_env_vars(proxy);
        match Command::new("git")
            .args(&args)
            .envs(&proxy_env_vars)
            .spawn()
        {
            Ok(mut child) => match child.wait() {
                Ok(_status) => {}
                Err(err) => println!("Failed to clone repository because of: {}", err.to_string()),
            },
            Err(err) => println!(
                "Failed to execute git clone because of: {}",
                err.to_string()
            ),
        }
    }

    fn update(&self, path: &Path, bare: bool, proxy: Option<&Proxy>) {
        // Build command arguments.
        let mut args = Vec::new();
        if bare {
            args.push("fetch");
        } else {
            args.push("pull");
            args.push("--rebase");
        }

        let proxy_env_vars = gen_proxy_env_vars(proxy);
        match Command::new("git")
            .args(&args)
            .current_dir(path)
            .envs(&proxy_env_vars)
            .spawn()
        {
            Ok(mut child) => match child.wait() {
                Ok(_status) => {}
                Err(err) => println!(
                    "Failed to update repository because of: {}",
                    err.to_string()
                ),
            },
            Err(err) => {
                if bare {
                    println!(
                        "Failed to execute git fetch because of: {}",
                        err.to_string()
                    );
                } else {
                    println!("Failed to execute git pull because of: {}", err.to_string());
                }
            }
        }
    }
}