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
//! Sup Commands
use crate::result::Result;
use std::path::PathBuf;
use structopt::{clap::AppSettings, StructOpt};

pub mod new;
pub mod source;
pub mod tag;
pub mod update;
pub mod upgrade;

#[derive(StructOpt, Debug)]
#[structopt(setting = AppSettings::InferSubcommands)]
enum Opt {
    /// Create a new substrate template
    New {
        /// Package path
        #[structopt(name = "PATH")]
        path: PathBuf,
        /// If skip toolchain check
        #[structopt(short, long)]
        skip: bool,
    },
    /// 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 {
        /// Show dependencies contain <query>
        #[structopt(short, long, default_value = "")]
        query: String,
        /// If show versions
        #[structopt(short, long)]
        version: bool,
    },
    /// Upgrade sup project
    Upgrade {
        /// Project path
        path: PathBuf,
        /// Registry tag
        tag: String,
    },
}

/// Exec commands
pub fn exec() -> Result<()> {
    let opt = Opt::from_args();
    match opt {
        Opt::New { path, skip } => new::exec(path, skip)?,
        Opt::Tag { limit } => tag::exec(limit)?,
        Opt::Update => update::exec()?,
        Opt::Upgrade { tag, path } => upgrade::exec(path, tag)?,
        Opt::Source { query, version } => source::exec(query, version)?,
    }

    Ok(())
}