project_init 2.0.2

Initialize projects from a template. Fast
Documentation
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
//! Source file for the binary.
#[macro_use] extern crate clap;
#[macro_use] extern crate text_io;

extern crate time;
extern crate toml;
extern crate rustache;
extern crate project_init;
extern crate case;
extern crate colored;

use colored::*;
use rustache::*;
use std::fs;
use clap::App;
use project_init::types::*;
use project_init::render::*;
use project_init::*;
use std::path::Path;
use time::strftime;
use case::*;
use toml::Value::Table;

fn main() {

    // command-line parser
    let yaml = load_yaml!("options-en.yml");
    let matches = App::from_yaml(yaml).version(crate_version!()).get_matches();
    let force: bool = matches.occurrences_of("force") == 1 ;

    // set path to .pi.toml
    let home = std::env::home_dir()
        .expect("Couldn't determine home directory.");
    let mut path = home.clone();
    path.push(".pi.toml");

    // read global config file
    let decoded: Config = read_toml_config(&path);
    
    // create author struct
    let author = 
        if let Some(aut) = decoded.author {
            aut 
        }
        else {
            let nam: String = read!("Enter your name: {}!");
            let ema: String = read!("Enter your email: {}!");
            Author { name: nam, email: ema, github_username: None }
        };
        
    //get year
    let now = time::now();
    let year = now.tm_year + 1900;
    let current_date = strftime("%m-%d-%Y", &now).unwrap();

    if let Some(matches_init) = matches.subcommand_matches("new") {

        // get project name
        let name = matches_init
            .value_of("name")
            .expect("Clap failed to supply project name");

        // get project template type
        let template_str = matches_init
            .value_of("template")
            .expect("Clap failed to supply project directory");

        // read template.toml
        let toml_file = match template_str {
            "rust" => includes::RUST_TEMPLATE,
            "vim" => includes::VIM_TEMPLATE,
            "python" => includes::PY_TEMPLATE,
            "haskell" => includes::HASK_TEMPLATE,
            "plain" => includes::PLAIN_TEMPLATE,
            _ => { println!("The requested template is not a built-in :(") ; std::process::exit(0x0f00) },
        };
        let parsed_toml = read_toml_str(toml_file, "BUILTIN");
        let parsed_dirs = parsed_toml.files;
        let parsed_config = parsed_toml.config;
        
        // set license if it's set
        let (license_contents, license_name) =
            // prefer global license over builtin
            if let Some(l) = decoded.license {
                match l.as_str() {
                    "BSD3" => (Some(includes::BSD3), "BSD3"),
                    "BSD" => (Some(includes::BSD), "BSD"),
                    "MIT" => (Some(includes::MIT), "MIT"),
                    "GPL3" => (Some(includes::GPL3), "GLP3"),
                    "AllRightsReserved" => (Some(includes::BSD3), "AllRightsReserved"),
                    _ => { println!("{}: requested license not found. Defaulting to AllRightsReserved","Warning".yellow()) 
                           ; (Some(includes::ALL_RIGHTS_RESERVED), "AllRightsReserved") }
                }
            }
            else if let Some(l) = parsed_toml.license {
                match l.as_str() {
                    "BSD3" => (Some(includes::BSD3), "BSD3"),
                    "BSD" => (Some(includes::BSD), "BSD"),
                    "MIT" => (Some(includes::MIT), "MIT"),
                    "GPL3" => (Some(includes::GPL3), "GLP3"),
                    "AllRightsReserved" => (Some(includes::BSD3), "AllRightsReserved"),
                    _ => { println!("{}: requested license not found. Defaulting to AllRightsReserved","Warning".yellow()) 
                           ; (Some(includes::ALL_RIGHTS_RESERVED), "AllRightsReserved") }
                }
            }
            else {
                (None,"")
            };

        // set version
        let version = 
            if let Some(config) = parsed_config.clone() {
                if let Some(v) = config.version {
                    v
                }
                else {
                    "0.1.0".to_string()
                }
            }
            else {
                println!("{}: no version info found, defaulting to '0.1.0'","Warning".yellow());
                "0.1.0".to_string()
            };

        // set github username to null if it's not provided
        let github_username = 
            if let Some(uname) = author.github_username {
                uname
            }
            else {
                println!("{}: No github username found, defaulting to null.", "Warning".yellow());
                "".to_string()
            };

        // Make a hash for inserting stuff into templates.
        let hash = HashBuilder::new().insert("project",name)
            .insert("Project", name.to_capitalized())
            .insert("year", year)
            .insert("name", author.name)
            .insert("version", version)
            .insert("email", author.email)
            .insert("github_username", github_username)
            .insert("license", license_name)
            .insert("date", current_date);
     
        // check if the directory exists and exit, if we haven't forced an overwrite.
        if Path::new(name).exists() && !force {
            println!("Path '{}' already exists. Rerun with -f or --force to overwrite.", name);
            std::process::exit(0x0f00);
        };

        // create directories
        let _ = fs::create_dir(name);
        if let Some(dirs_pre) = parsed_dirs.directories {
            render_dirs(dirs_pre, &hash, name);
        }

        // Create files.
        let files =
            if let Some(files_pre) = parsed_dirs.files {
                render_files(files_pre, &hash, name)
            }
            else {
                VecBuilder::new()
            };

        // create license if it was asked for
        if let Some(lic) = license_contents {
            render_file(lic, name, "LICENSE", &hash);
        }

        // render readme if requested
        if let Some(readme) = parsed_toml.with_readme {
            if readme {
                render_file(includes::README, name, "README.md", &hash);
            }
        }
      
        let hash_with_files = HashBuilder::new()
            .insert("files", files);

        // render appropriate stuff by name.
        match template_str {
            "plain" => (),
            "rust" => { write_file_plain(includes::RUST_LIB, name, "src/lib.rs");
                        write_file_plain(includes::RUST_TRAVIS_CI, name, ".travis.tml");
                        render_file(includes::CARGO_TOML, name, "Cargo.toml", &hash) },
            "vim" => render_file(includes::VIMBALL, name, "vimball.txt", &hash_with_files),
            "python" => { render_file(includes::PY_SETUP, name, "setup.py", &hash);
                          write_file_plain(includes::PY_CFG, name, "setup.cfg");
                          let mut bin_path = "bin/".to_string();
                          bin_path.push_str(name);
                          render_file(includes::PY_BIN, name, &bin_path, &hash); }
            "haskell" => { write_file_plain(includes::SETUP_HS, name, "Setup.hs");
                           write_file_plain(includes::MAIN, name, "app/Main.hs");
                           write_file_plain(includes::LIB, name, "src/Lib.hs");
                           write_file_plain(includes::BENCH, name, "bench/Bench.hs");
                           write_file_plain(includes::TEST, name, "test/Spec.hs");
                           render_file(includes::DEFAULT_NIX, name, "default.nix", &hash);
                           render_file(includes::RELEASE_NIX, name, "release.nix", &hash);
                           let mut cabal_path = name.to_string();
                           cabal_path.push_str(".cabal");
                           render_file(includes::CABAL, name, &cabal_path, &hash);
                           write_file_plain(includes::RELEASE_NIX, name, "release.nix");
                           write_file_plain(includes::STACK_YAML, name, "stack.yaml");
                           write_file_plain(includes::HASKELL_TRAVIS_CI, name, ".travis.yml"); }
            _ => std::process::exit(0x0f00),
        };

        // Print that we're done
        println!("Finished initializing project in {}/",name);

    }
    else if let Some(matches_init) = matches.subcommand_matches("init") {

        // get project name
        let name = matches_init
            .value_of("name")
            .expect("Failed to supply project name");

        // get project directory
        let project_dir = matches_init
            .value_of("directory")
            .expect("Failed to supply project directory");

        // read template.toml for template
        let mut template_path = project_dir.to_string();
        template_path.push_str("/template.toml");
        let (parsed_toml, is_global_project) = read_toml_dir(&template_path, home.clone());
        let project = 
            if is_global_project {
                let mut p = home;
                p.push(".pi_templates/");
                p.push(project_dir);
                p.to_str().unwrap().to_string()
            }
            else {
                project_dir.to_string()
            };
        let parsed_dirs = parsed_toml.files;
        let parsed_config = parsed_toml.config;
        
        // set license if it's set
        let (license_contents, license_name) =
            // prefer project-specific license over global
            if let Some(l) = parsed_toml.license {
                match l.as_str() {
                    "BSD3" => (Some(includes::BSD3), "BSD3"),
                    "BSD" => (Some(includes::BSD), "BSD"),
                    "MIT" => (Some(includes::MIT), "MIT"),
                    "GPL3" => (Some(includes::GPL3), "GLP3"),
                    "AllRightsReserved" => (Some(includes::BSD3), "AllRightsReserved"),
                    _ => { println!("{}: requested license not found. Defaulting to AllRightsReserved","Warning".yellow()) 
                           ; (Some(includes::ALL_RIGHTS_RESERVED), "AllRightsReserved") }
                }
            }
            else if let Some(l) = decoded.license {
                match l.as_str() {
                    "BSD3" => (Some(includes::BSD3), "BSD3"),
                    "BSD" => (Some(includes::BSD), "BSD"),
                    "MIT" => (Some(includes::MIT), "MIT"),
                    "GPL3" => (Some(includes::GPL3), "GLP3"),
                    "AllRightsReserved" => (Some(includes::BSD3), "AllRightsReserved"),
                    _ => { println!("{}: requested license not found. Defaulting to AllRightsReserved","Warning".yellow()) 
                           ; (Some(includes::ALL_RIGHTS_RESERVED), "AllRightsReserved") }
                }
            }
            else {
                (None,"")
            };

        // set version
        // TODO only insert into the hash if necessary
        let version = 
            if let Some(config) = parsed_config.clone() {
                if let Some(v) = config.version {
                    v
                }
                else {
                    "0.1.0".to_string()
                }
            }
            else {
                println!("{}: no version info found, defaulting to '0.1.0'", "Warning".yellow());
                "0.1.0".to_string()
            };

        // set github username to null if it's not provided
        let github_username = 
            if let Some(uname) = author.github_username {
                uname
            }
            else {
                println!("{}: no github username found, defaulting to null", "Warning".yellow());
                "".to_string()
            };

        // make user_keys into a vector; prepare to insert them into the `HashBuilder`
        let user_keys = 
            if let Some(u) = parsed_toml.user {
                match u.toml {
                    Table(t) => Some(t),
                    _ => None,
                }
            }
            else {
                None
            };

        // make user_keys into a vector; prepare to insert them into the `HashBuilder`
        let user_keys_global = 
            if let Some(u) = decoded.user {
                match u.toml {
                    Table(t) => Some(t),
                    _ => None,
                }
            }
            else {
                None
            };


        // Make a hash for inserting stuff into templates.
        let mut hash = HashBuilder::new();
        // project-specific
        if let Some(x) = user_keys {
            for (key, value) in &x {
                if let Some(a) = value.as_str() {
                    hash = hash.insert(key, a);
                }
            }
        }
        // global
        if let Some(x) = user_keys_global {
            for (key, value) in &x {
                if let Some(a) = value.as_str() {
                    hash = hash.insert(key, a);
                }
            }
        }
        // add the normal stuff
        hash = hash.insert("project",name)
            .insert("Project", name.to_capitalized())
            .insert("year", year)
            .insert("name", author.name)
            .insert("version", version)
            .insert("email", author.email)
            .insert("github_username", github_username)
            .insert("license", license_name)
            .insert("date", current_date);
     
        // check if the directory exists and exit, if we haven't forced an overwrite.
        if Path::new(name).exists() && !force {
            println!("Path '{}' already exists. Rerun with -f or --force to overwrite.", name);
            std::process::exit(0x0f00);
        };

        // create directories
        let _ = fs::create_dir(name);
        if let Some(dirs_pre) = parsed_dirs.directories {
            render_dirs(dirs_pre, &hash, name);
        }

        // create a list of files contained in the project, and create those files.
        // TODO should include templates/scripts/etc.
        let files =
            if let Some(files_pre) = parsed_dirs.files {
                render_files(files_pre, &hash, name)
            }
            else {
                VecBuilder::new()
            };

        // create license if it was asked for
        if let Some(lic) = license_contents {
            render_file(lic, name, "LICENSE", &hash);
        }

        // render readme if requested
        if let Some(readme) = parsed_toml.with_readme {
            if readme {
                render_file(includes::README, name, "README.md", &hash);
            }
        }

        // Make a hash for inserting stuff into templates.
        hash = hash
            .insert("files", files);

        // render templates
        render_templates(&project, name, &hash, parsed_dirs.templates, false);

        // render scripts, i.e. files that should be executable.
        render_templates(&project, name, &hash, parsed_dirs.scripts, true);

        // initialize version control
        if let Some(config) = parsed_config {
            if let Some(vc) = config.version_control {
                if vc == "git" {
                    repo::git_init(name);
                }
                else if vc == "hc" || vc == "mercurial" {
                    repo::hg_init(name);
                }
            }
        }
        else if let Some(vc) = decoded.version_control {
            if vc == "git" {
                repo::git_init(name);
            }
            else if vc == "hc" || vc == "mercurial" {
                repo::hg_init(name);
            }
        }

        // Print that we're done
        println!("Finished initializing project in {}/",name);

    }
}