1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//! Sup Commands
use crate::{result::Result, Registry};
use etc::{Etc, FileSystem};
use std::path::PathBuf;
use structopt::{clap::AppSettings, StructOpt};

#[derive(StructOpt, Debug)]
#[structopt(setting = AppSettings::InferSubcommands)]
enum Opt {
    /// Create a new substrate package
    New {
        /// Package path
        #[structopt(name = "PATH")]
        path: PathBuf,
    },
    /// List available tags or apply tag to the current project
    Tag {
        /// Avaiable while using this command to list tags
        #[structopt(short, long, default_value = "10")]
        limit: usize,
    },
    /// Update registry
    Update,
    /// List Source
    Source {
        #[structopt(short, long, default_value = "")]
        query: String,
    },
}

/// Exec commands
pub fn exec() -> Result<()> {
    let opt = Opt::from_args();
    let registry = Registry::new().expect("Create registry failed");
    match opt {
        Opt::New { path } => {
            let substrate = Etc::from(&registry.0);
            let template = substrate.find("node-template")?;
            etc::cp_r(template, PathBuf::from(&path))?;
            println!("Created node-template {:?} succeed!", &path);
        }
        Opt::Tag { limit } => {
            let mut tags = registry.tag()?;
            let last = if limit < tags.len() || limit < 1 {
                limit
            } else {
                tags.len()
            };

            tags.reverse();
            println!("{}", &tags[..last].join("\n"));
        }
        Opt::Update => {
            println!("Fetching registry...");
            registry.update()?;
        }
        Opt::Source { query } => {
            let source = registry.source()?;
            println!(
                "{}",
                if query.is_empty() {
                    source
                } else {
                    source
                        .iter()
                        .filter(|n| n.contains(&query))
                        .map(|s| s.to_string())
                        .collect::<Vec<String>>()
                }
                .join("\n")
            );
        }
    }

    Ok(())
}