zola/src/main.rs

98 lines
2.8 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;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate serde_derive;
extern crate serde;
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 11:53:14 +00:00
extern crate tera;
extern crate glob;
2017-02-23 08:34:57 +00:00
extern crate syntect;
extern crate slug;
2016-12-06 05:51:33 +00:00
use std::time::Instant;
2016-12-13 06:22:24 +00:00
mod utils;
2016-12-06 05:51:33 +00:00
mod config;
mod errors;
mod cmd;
2016-12-06 08:27:03 +00:00
mod page;
mod front_matter;
mod site;
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)
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();
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()) {
2016-12-06 08:27:03 +00:00
Ok(()) => {
println!("Project created");
},
Err(e) => {
println!("Error: {}", e);
::std::process::exit(1);
},
};
},
("build", Some(_)) => {
let start = Instant::now();
match cmd::build() {
2016-12-06 08:27:03 +00:00
Ok(()) => {
let duration = start.elapsed();
println!("Site built in {}s.", duration.as_secs());
2016-12-06 08:27:03 +00:00
},
Err(e) => {
2016-12-13 06:22:24 +00:00
println!("Failed to build the site");
println!("Error: {}", e);
for e in e.iter().skip(1) {
println!("Reason: {}", e)
}
2016-12-06 08:27:03 +00:00
::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");
match cmd::serve(interface, port) {
Ok(()) => {
println!("Project created");
println!("You will now need to set a theme in `config.toml`");
},
Err(e) => {
println!("Error: {}", e);
::std::process::exit(1);
},
};
},
2016-12-06 05:51:33 +00:00
_ => unreachable!(),
}
}