2019-06-18 23:05:00 +00:00
|
|
|
extern crate actix_files;
|
2018-05-27 05:19:01 +00:00
|
|
|
extern crate actix_web;
|
2018-10-31 07:18:57 +00:00
|
|
|
extern crate atty;
|
2017-02-23 08:34:57 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate clap;
|
2017-03-08 04:21:45 +00:00
|
|
|
extern crate chrono;
|
2018-09-22 14:05:07 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2018-10-31 07:18:57 +00:00
|
|
|
extern crate ctrlc;
|
2017-03-06 10:35:56 +00:00
|
|
|
extern crate notify;
|
2018-09-22 14:05:07 +00:00
|
|
|
extern crate termcolor;
|
2017-07-27 09:24:43 +00:00
|
|
|
extern crate url;
|
2017-03-06 10:35:56 +00:00
|
|
|
extern crate ws;
|
|
|
|
|
2017-07-01 07:47:41 +00:00
|
|
|
extern crate site;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate errors;
|
|
|
|
extern crate front_matter;
|
2018-01-29 17:40:12 +00:00
|
|
|
extern crate rebuild;
|
2018-10-31 07:18:57 +00:00
|
|
|
extern crate utils;
|
2017-07-01 07:47:41 +00:00
|
|
|
|
2017-03-03 08:12:40 +00:00
|
|
|
use std::time::Instant;
|
2017-03-25 06:52:51 +00:00
|
|
|
|
2018-10-19 14:33:11 +00:00
|
|
|
use utils::net::{get_available_port, port_is_available};
|
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
mod cli;
|
2016-12-06 05:51:33 +00:00
|
|
|
mod cmd;
|
2017-03-25 06:52:51 +00:00
|
|
|
mod console;
|
2017-07-27 09:24:43 +00:00
|
|
|
mod prompt;
|
2016-12-06 06:55:17 +00:00
|
|
|
|
2016-12-06 05:51:33 +00:00
|
|
|
fn main() {
|
2017-07-15 04:24:31 +00:00
|
|
|
let matches = cli::build_cli().get_matches();
|
2016-12-06 05:51:33 +00:00
|
|
|
|
2018-03-16 18:11:08 +00:00
|
|
|
let config_file = matches.value_of("config").unwrap();
|
2017-03-25 04:18:15 +00:00
|
|
|
|
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-07-27 09:24:43 +00:00
|
|
|
Ok(()) => (),
|
2017-05-12 14:10:21 +00:00
|
|
|
Err(e) => {
|
|
|
|
console::unravel_errors("Failed to create the project", &e);
|
|
|
|
::std::process::exit(1);
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2016-12-06 08:27:03 +00:00
|
|
|
};
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2017-10-05 01:56:13 +00:00
|
|
|
("build", Some(matches)) => {
|
2017-03-25 06:52:51 +00:00
|
|
|
console::info("Building site...");
|
2017-03-03 08:12:40 +00:00
|
|
|
let start = Instant::now();
|
2017-12-29 18:25:06 +00:00
|
|
|
let output_dir = matches.value_of("output_dir").unwrap();
|
2019-04-20 10:50:34 +00:00
|
|
|
match cmd::build(config_file, matches.value_of("base_url"), output_dir) {
|
2017-05-12 14:10:21 +00:00
|
|
|
Ok(()) => console::report_elapsed_time(start),
|
|
|
|
Err(e) => {
|
|
|
|
console::unravel_errors("Failed to build the site", &e);
|
|
|
|
::std::process::exit(1);
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2016-12-06 05:51:33 +00:00
|
|
|
};
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
("serve", Some(matches)) => {
|
|
|
|
let interface = matches.value_of("interface").unwrap_or("127.0.0.1");
|
2018-10-19 14:33:11 +00:00
|
|
|
let mut port: u16 = match matches.value_of("port").unwrap().parse() {
|
|
|
|
Ok(x) => x,
|
|
|
|
Err(_) => {
|
|
|
|
console::error("The request port needs to be an integer");
|
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// Default one
|
|
|
|
if port != 1111 && !port_is_available(port) {
|
|
|
|
console::error("The requested port is not available");
|
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if !port_is_available(port) {
|
|
|
|
port = if let Some(p) = get_available_port(1111) {
|
|
|
|
p
|
|
|
|
} else {
|
|
|
|
console::error("No port available.");
|
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
2018-11-01 22:20:35 +00:00
|
|
|
let watch_only = matches.is_present("watch_only");
|
2017-12-29 18:25:06 +00:00
|
|
|
let output_dir = matches.value_of("output_dir").unwrap();
|
2018-02-02 16:18:07 +00:00
|
|
|
let base_url = matches.value_of("base_url").unwrap();
|
2017-03-25 06:52:51 +00:00
|
|
|
console::info("Building site...");
|
2019-04-20 10:50:34 +00:00
|
|
|
match cmd::serve(interface, port, output_dir, base_url, config_file, watch_only) {
|
2017-03-06 10:35:56 +00:00
|
|
|
Ok(()) => (),
|
2017-05-12 14:10:21 +00:00
|
|
|
Err(e) => {
|
2017-05-20 15:00:41 +00:00
|
|
|
console::unravel_errors("", &e);
|
2017-05-12 14:10:21 +00:00
|
|
|
::std::process::exit(1);
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
};
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2019-05-27 12:05:07 +00:00
|
|
|
("check", Some(matches)) => {
|
|
|
|
console::info("Checking site...");
|
|
|
|
let start = Instant::now();
|
|
|
|
match cmd::check(
|
|
|
|
config_file,
|
|
|
|
matches.value_of("base_path"),
|
|
|
|
matches.value_of("base_url"),
|
|
|
|
) {
|
|
|
|
Ok(()) => console::report_elapsed_time(start),
|
|
|
|
Err(e) => {
|
|
|
|
console::unravel_errors("Failed to check the site", &e);
|
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2016-12-06 05:51:33 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|