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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//! Sup Commands
use crate::result::Result;
use std::path::PathBuf;
use structopt::{clap::AppSettings, StructOpt};

pub mod config;
pub mod new;
pub mod source;
pub mod switch;
pub mod tag;
pub mod update;

#[derive(StructOpt, Debug)]
#[structopt(setting = AppSettings::InferSubcommands)]
enum Opt {
    /// Create a new substrate node template
    New {
        /// Package path
        #[structopt(name = "PATH")]
        path: PathBuf,
        /// If skip toolchain check
        #[structopt(short, long)]
        skip: bool,
    },
    /// List available tags
    Tag {
        /// The limit count of tags
        #[structopt(short, long, default_value = "10")]
        limit: usize,
        /// If update registry
        #[structopt(short, long)]
        update: bool,
    },
    /// Update registry
    Update,
    /// List source crates
    Source {
        /// Show dependencies contain <query>
        #[structopt(short, long, default_value = "")]
        query: String,
        /// Registry tag
        #[structopt(short, long, default_value = "")]
        tag: String,
        /// If show versions
        #[structopt(short, long)]
        version: bool,
    },
    /// Switch registry tag for the target substrate project
    Switch {
        /// Project path
        #[structopt(short, long, default_value = ".")]
        project: PathBuf,
        /// Registry tag
        #[structopt(short, long, default_value = "")]
        tag: String,
        /// If update registry
        #[structopt(short, long)]
        update: bool,
    },
    /// Show or edit the current config
    Config {
        /// Edit the config
        #[structopt(short, long)]
        edit: bool,
        /// Set registry
        #[structopt(
            short,
            long,
            default_value = "https://github.com/paritytech/substrate.git",
            name = "git-url"
        )]
        registry: String,
    },
}

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

    Ok(())
}