zola/src/bin/gutenberg.rs

82 lines
2.6 KiB
Rust
Raw Normal View History

2017-02-23 08:34:57 +00:00
#[macro_use]
extern crate clap;
#[macro_use]
extern crate error_chain;
2017-03-08 00:13:50 +00:00
extern crate gutenberg;
extern crate chrono;
2017-03-25 06:52:51 +00:00
extern crate term_painter;
2017-03-06 10:35:56 +00:00
extern crate staticfile;
extern crate iron;
extern crate mount;
extern crate notify;
extern crate ws;
use std::time::Instant;
2017-03-25 06:52:51 +00:00
2016-12-06 05:51:33 +00:00
mod cmd;
2017-03-25 06:52:51 +00:00
mod console;
mod rebuild;
2016-12-06 06:55:17 +00:00
2016-12-06 05:51:33 +00:00
fn main() {
2017-02-23 08:34:57 +00:00
let matches = clap_app!(Gutenberg =>
2016-12-06 05:51:33 +00:00
(version: crate_version!())
(author: "Vincent Prouillet")
(about: "Static site generator")
(@setting SubcommandRequiredElseHelp)
(@arg config: -c --config +takes_value "Path to a config file other than config.toml")
2017-02-23 08:34:57 +00:00
(@subcommand init =>
2016-12-06 05:51:33 +00:00
(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")
)
(@subcommand serve =>
(about: "Serve the site. Rebuild and reload on change automatically")
(@arg interface: "Interface to bind on (default to 127.0.0.1)")
(@arg port: "Which port to use (default to 1111)")
)
2016-12-06 05:51:33 +00:00
).get_matches();
let config_file = matches.value_of("config").unwrap_or("config.toml");
2016-12-06 05:51:33 +00:00
match matches.subcommand() {
2016-12-19 07:58:03 +00:00
("init", Some(matches)) => {
2016-12-06 05:51:33 +00:00
match cmd::create_new_project(matches.value_of("name").unwrap()) {
2017-03-25 06:52:51 +00:00
Ok(()) => console::success("Project created"),
Err(e) => {
console::unravel_errors("Failed to create the project", &e);
::std::process::exit(1);
},
2016-12-06 08:27:03 +00:00
};
},
("build", Some(_)) => {
2017-03-25 06:52:51 +00:00
console::info("Building site...");
let start = Instant::now();
2017-03-25 06:59:12 +00:00
match cmd::build(config_file) {
Ok(()) => console::report_elapsed_time(start),
Err(e) => {
console::unravel_errors("Failed to build the site", &e);
::std::process::exit(1);
},
2016-12-06 05:51:33 +00:00
};
},
("serve", Some(matches)) => {
let interface = matches.value_of("interface").unwrap_or("127.0.0.1");
let port = matches.value_of("port").unwrap_or("1111");
2017-03-25 06:52:51 +00:00
console::info("Building site...");
2017-03-25 06:59:12 +00:00
match cmd::serve(interface, port, config_file) {
2017-03-06 10:35:56 +00:00
Ok(()) => (),
Err(e) => {
console::unravel_errors("Failed to build the site", &e);
::std::process::exit(1);
},
};
},
2016-12-06 05:51:33 +00:00
_ => unreachable!(),
}
}