2016-12-06 05:51:33 +00:00
|
|
|
// `error_chain!` can recurse deeply
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
|
|
|
|
#[macro_use] extern crate clap;
|
|
|
|
#[macro_use] extern crate error_chain;
|
2016-12-06 08:27:03 +00:00
|
|
|
#[macro_use] extern crate lazy_static;
|
2016-12-06 06:55:17 +00:00
|
|
|
extern crate toml;
|
2016-12-06 08:27:03 +00:00
|
|
|
extern crate walkdir;
|
|
|
|
extern crate pulldown_cmark;
|
|
|
|
extern crate regex;
|
2016-12-06 05:51:33 +00:00
|
|
|
|
|
|
|
mod config;
|
|
|
|
mod errors;
|
|
|
|
mod cmd;
|
2016-12-06 08:27:03 +00:00
|
|
|
mod page;
|
2016-12-06 05:51:33 +00:00
|
|
|
|
2016-12-06 06:55:17 +00:00
|
|
|
use config::Config;
|
|
|
|
|
|
|
|
|
2016-12-06 08:27:03 +00:00
|
|
|
// Get and parse the config.
|
|
|
|
// If it doesn't succeed, exit
|
2016-12-06 06:55:17 +00:00
|
|
|
fn get_config() -> Config {
|
|
|
|
match Config::from_file("config.toml") {
|
|
|
|
Ok(c) => c,
|
|
|
|
Err(e) => {
|
|
|
|
println!("Error: {}", e);
|
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 05:51:33 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let matches = clap_app!(myapp =>
|
|
|
|
(version: crate_version!())
|
|
|
|
(author: "Vincent Prouillet")
|
|
|
|
(about: "Static site generator")
|
|
|
|
(@setting SubcommandRequiredElseHelp)
|
|
|
|
(@subcommand new =>
|
|
|
|
(about: "Create a new Gutenberg project")
|
|
|
|
(@arg name: +required "Name of the project. Will create a directory with that name in the current directory")
|
|
|
|
)
|
2016-12-06 08:27:03 +00:00
|
|
|
(@subcommand build =>
|
|
|
|
(about: "Builds the site")
|
|
|
|
)
|
2016-12-06 05:51:33 +00:00
|
|
|
).get_matches();
|
|
|
|
|
|
|
|
match matches.subcommand() {
|
|
|
|
("new", Some(matches)) => {
|
|
|
|
match cmd::create_new_project(matches.value_of("name").unwrap()) {
|
2016-12-06 08:27:03 +00:00
|
|
|
Ok(()) => {
|
|
|
|
println!("Project created");
|
|
|
|
},
|
|
|
|
Err(e) => {
|
|
|
|
println!("Error: {}", e);
|
|
|
|
::std::process::exit(1);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
("build", None) => {
|
|
|
|
match cmd::build(get_config()) {
|
|
|
|
Ok(()) => {
|
|
|
|
println!("Project built");
|
|
|
|
},
|
|
|
|
Err(e) => {
|
|
|
|
println!("Error: {}", e);
|
|
|
|
::std::process::exit(1);
|
|
|
|
},
|
2016-12-06 05:51:33 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|