2017-06-26 03:41:23 +08:00
|
|
|
extern crate iron;
|
|
|
|
extern crate staticfile;
|
|
|
|
extern crate ws;
|
|
|
|
|
|
|
|
use std;
|
2017-10-03 19:40:23 +08:00
|
|
|
use self::iron::{status, AfterMiddleware, Chain, Iron, IronError, IronResult, Request, Response,
|
|
|
|
Set};
|
|
|
|
use clap::{App, ArgMatches, SubCommand};
|
2017-06-26 03:41:23 +08:00
|
|
|
use mdbook::MDBook;
|
2017-12-13 09:04:24 +08:00
|
|
|
use mdbook::errors::*;
|
2017-06-26 05:44:28 +08:00
|
|
|
use {get_book_dir, open};
|
|
|
|
#[cfg(feature = "watch")]
|
|
|
|
use watch;
|
2017-06-26 03:41:23 +08:00
|
|
|
|
|
|
|
struct ErrorRecover;
|
|
|
|
|
2017-06-27 13:59:50 +08:00
|
|
|
// Create clap subcommand arguments
|
|
|
|
pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> {
|
|
|
|
SubCommand::with_name("serve")
|
2017-12-13 09:04:24 +08:00
|
|
|
.about("Serve the book at http://localhost:3000. Rebuild and reload on change.")
|
2017-10-03 19:40:23 +08:00
|
|
|
.arg_from_usage(
|
2017-12-13 09:04:24 +08:00
|
|
|
"[dir] 'A directory for your book{n}(Defaults to Current Directory when omitted)'",
|
2017-10-03 19:40:23 +08:00
|
|
|
)
|
2017-06-27 13:59:50 +08:00
|
|
|
.arg_from_usage("-p, --port=[port] 'Use another port{n}(Defaults to 3000)'")
|
2017-10-03 19:40:23 +08:00
|
|
|
.arg_from_usage(
|
2017-12-13 09:04:24 +08:00
|
|
|
"-w, --websocket-port=[ws-port] 'Use another port for the websocket connection \
|
|
|
|
(livereload){n}(Defaults to 3001)'",
|
2017-10-03 19:40:23 +08:00
|
|
|
)
|
|
|
|
.arg_from_usage(
|
|
|
|
"-i, --interface=[interface] 'Interface to listen on{n}(Defaults to localhost)'",
|
|
|
|
)
|
|
|
|
.arg_from_usage(
|
2017-12-13 09:04:24 +08:00
|
|
|
"-a, --address=[address] 'Address that the browser can reach the websocket server \
|
|
|
|
from{n}(Defaults to the interface address)'",
|
2017-10-03 19:40:23 +08:00
|
|
|
)
|
2017-06-27 13:59:50 +08:00
|
|
|
.arg_from_usage("-o, --open 'Open the book server in a web browser'")
|
2017-06-26 03:41:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Watch command implementation
|
2017-06-27 13:59:50 +08:00
|
|
|
pub fn execute(args: &ArgMatches) -> Result<()> {
|
2017-06-26 03:41:23 +08:00
|
|
|
const RELOAD_COMMAND: &'static str = "reload";
|
|
|
|
|
|
|
|
let book_dir = get_book_dir(args);
|
2017-11-18 20:41:04 +08:00
|
|
|
let mut book = MDBook::load(&book_dir)?;
|
2017-06-26 03:41:23 +08:00
|
|
|
|
|
|
|
let port = args.value_of("port").unwrap_or("3000");
|
|
|
|
let ws_port = args.value_of("websocket-port").unwrap_or("3001");
|
|
|
|
let interface = args.value_of("interface").unwrap_or("localhost");
|
|
|
|
let public_address = args.value_of("address").unwrap_or(interface);
|
|
|
|
let open_browser = args.is_present("open");
|
|
|
|
|
|
|
|
let address = format!("{}:{}", interface, port);
|
|
|
|
let ws_address = format!("{}:{}", interface, ws_port);
|
|
|
|
|
2017-11-18 20:41:04 +08:00
|
|
|
book.livereload = Some(format!(
|
|
|
|
r#"
|
2017-06-26 03:41:23 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
var socket = new WebSocket("ws://{}:{}");
|
|
|
|
socket.onmessage = function (event) {{
|
|
|
|
if (event.data === "{}") {{
|
|
|
|
socket.close();
|
|
|
|
location.reload(true); // force reload from server (not from cache)
|
|
|
|
}}
|
|
|
|
}};
|
|
|
|
|
|
|
|
window.onbeforeunload = function() {{
|
|
|
|
socket.close();
|
|
|
|
}}
|
|
|
|
</script>
|
|
|
|
"#,
|
2017-12-13 09:04:24 +08:00
|
|
|
public_address, ws_port, RELOAD_COMMAND
|
2017-10-03 19:40:23 +08:00
|
|
|
));
|
2017-06-26 03:41:23 +08:00
|
|
|
|
|
|
|
book.build()?;
|
|
|
|
|
2017-06-27 20:01:33 +08:00
|
|
|
let mut chain = Chain::new(staticfile::Static::new(book.get_destination()));
|
2017-06-26 03:41:23 +08:00
|
|
|
chain.link_after(ErrorRecover);
|
2017-12-13 09:04:24 +08:00
|
|
|
let _iron = Iron::new(chain)
|
|
|
|
.http(&*address)
|
|
|
|
.chain_err(|| "Unable to launch the server")?;
|
2017-06-26 03:41:23 +08:00
|
|
|
|
2017-12-13 09:04:24 +08:00
|
|
|
let ws_server =
|
|
|
|
ws::WebSocket::new(|_| |_| Ok(())).chain_err(|| "Unable to start the websocket")?;
|
2017-06-26 03:41:23 +08:00
|
|
|
|
|
|
|
let broadcaster = ws_server.broadcaster();
|
|
|
|
|
2017-11-18 20:41:04 +08:00
|
|
|
std::thread::spawn(move || {
|
|
|
|
ws_server.listen(&*ws_address).unwrap();
|
|
|
|
});
|
2017-06-26 03:41:23 +08:00
|
|
|
|
|
|
|
let serving_url = format!("http://{}", address);
|
|
|
|
println!("\nServing on: {}", serving_url);
|
|
|
|
|
|
|
|
if open_browser {
|
|
|
|
open(serving_url);
|
|
|
|
}
|
|
|
|
|
2017-06-26 05:44:28 +08:00
|
|
|
#[cfg(feature = "watch")]
|
2017-12-13 09:04:24 +08:00
|
|
|
watch::trigger_on_change(&mut book, move |path, book_dir| {
|
2017-06-26 03:41:23 +08:00
|
|
|
println!("File changed: {:?}\nBuilding book...\n", path);
|
2017-12-13 09:04:24 +08:00
|
|
|
match MDBook::load(&book_dir).and_then(|mut b| b.build()) {
|
2017-06-26 03:41:23 +08:00
|
|
|
Err(e) => println!("Error while building: {:?}", e),
|
|
|
|
_ => broadcaster.send(RELOAD_COMMAND).unwrap(),
|
|
|
|
}
|
|
|
|
println!("");
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-06-26 06:31:42 +08:00
|
|
|
|
2017-06-27 13:59:50 +08:00
|
|
|
impl AfterMiddleware for ErrorRecover {
|
|
|
|
fn catch(&self, _: &mut Request, err: IronError) -> IronResult<Response> {
|
|
|
|
match err.response.status {
|
|
|
|
// each error will result in 404 response
|
|
|
|
Some(_) => Ok(err.response.set(status::NotFound)),
|
|
|
|
_ => Err(err),
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 06:31:42 +08:00
|
|
|
}
|