bunbun/src/main.rs

156 lines
4.2 KiB
Rust
Raw Normal View History

2019-12-23 15:02:21 +00:00
use actix_web::{App, HttpServer};
2019-12-15 16:07:36 +00:00
use handlebars::Handlebars;
2019-12-21 19:04:13 +00:00
use hotwatch::{Event, Hotwatch};
2019-12-15 17:49:16 +00:00
use serde::Deserialize;
use std::collections::HashMap;
2019-12-21 20:43:04 +00:00
use std::fmt;
use std::fs::{read_to_string, OpenOptions};
2019-12-21 20:43:04 +00:00
use std::io::Write;
2019-12-15 17:49:16 +00:00
use std::sync::{Arc, RwLock};
2019-12-21 19:04:13 +00:00
use std::time::Duration;
2019-12-15 16:07:36 +00:00
2019-12-23 15:02:21 +00:00
mod routes;
mod template_args;
2019-12-15 19:57:42 +00:00
static DEFAULT_CONFIG: &[u8] = include_bytes!("../bunbun.default.toml");
2019-12-15 18:54:09 +00:00
static CONFIG_FILE: &str = "bunbun.toml";
2019-12-15 16:07:36 +00:00
2019-12-21 20:43:04 +00:00
#[derive(Debug)]
#[allow(clippy::enum_variant_names)]
2019-12-21 20:43:04 +00:00
enum BunBunError {
IoError(std::io::Error),
2019-12-21 20:56:59 +00:00
ParseError(serde_yaml::Error),
2019-12-22 04:34:03 +00:00
WatchError(hotwatch::Error),
2019-12-21 20:43:04 +00:00
}
impl fmt::Display for BunBunError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
BunBunError::IoError(e) => e.fmt(f),
2019-12-21 20:56:59 +00:00
BunBunError::ParseError(e) => e.fmt(f),
2019-12-22 04:34:03 +00:00
BunBunError::WatchError(e) => e.fmt(f),
2019-12-21 20:43:04 +00:00
}
}
}
2019-12-23 01:05:01 +00:00
/// Generates a from implementation from the specified type to the provided
/// bunbun error.
2019-12-22 04:34:03 +00:00
macro_rules! from_error {
($from:ty, $to:ident) => {
impl From<$from> for BunBunError {
fn from(e: $from) -> Self {
BunBunError::$to(e)
}
}
};
2019-12-21 20:43:04 +00:00
}
2019-12-22 04:34:03 +00:00
from_error!(std::io::Error, IoError);
from_error!(serde_yaml::Error, ParseError);
from_error!(hotwatch::Error, WatchError);
2019-12-21 20:56:59 +00:00
2019-12-23 01:05:01 +00:00
/// Dynamic variables that either need to be present at runtime, or can be
/// changed during runtime.
2019-12-23 15:02:21 +00:00
pub struct State {
2019-12-21 19:21:13 +00:00
public_address: String,
default_route: Option<String>,
routes: HashMap<String, String>,
2019-12-21 19:21:13 +00:00
renderer: Handlebars,
2019-12-15 17:49:16 +00:00
}
2019-12-21 20:43:04 +00:00
fn main() -> Result<(), BunBunError> {
2019-12-21 19:21:13 +00:00
let conf = read_config(CONFIG_FILE)?;
let renderer = compile_templates();
let state = Arc::from(RwLock::new(State {
public_address: conf.public_address,
default_route: conf.default_route,
routes: conf.routes,
renderer,
}));
let state_ref = state.clone();
2019-12-22 04:34:03 +00:00
let mut watch = Hotwatch::new_with_custom_delay(Duration::from_millis(500))?;
watch.watch(CONFIG_FILE, move |e: Event| {
if let Event::Write(_) = e {
let mut state = state.write().unwrap();
match read_config(CONFIG_FILE) {
Ok(conf) => {
state.public_address = conf.public_address;
state.default_route = conf.default_route;
state.routes = conf.routes;
2019-12-21 20:56:59 +00:00
}
2019-12-22 04:34:03 +00:00
Err(e) => eprintln!("Config is malformed: {}", e),
2019-12-21 19:21:13 +00:00
}
2019-12-22 04:34:03 +00:00
}
})?;
2019-12-21 19:21:13 +00:00
HttpServer::new(move || {
App::new()
.data(state_ref.clone())
2019-12-23 15:02:21 +00:00
.service(routes::hop)
.service(routes::list)
.service(routes::index)
.service(routes::opensearch)
2019-12-21 19:21:13 +00:00
})
.bind(&conf.bind_address)?
2019-12-21 20:43:04 +00:00
.run()?;
Ok(())
2019-12-15 17:49:16 +00:00
}
2019-12-15 16:07:36 +00:00
2019-12-23 01:05:01 +00:00
#[derive(Deserialize)]
struct Config {
bind_address: String,
public_address: String,
default_route: Option<String>,
routes: HashMap<String, String>,
2019-12-23 01:05:01 +00:00
}
/// Attempts to read the config file. If it doesn't exist, generate one a
/// default config file before attempting to parse it.
2019-12-21 20:43:04 +00:00
fn read_config(config_file_path: &str) -> Result<Config, BunBunError> {
let config_str = match read_to_string(config_file_path) {
Ok(conf_str) => conf_str,
2019-12-21 19:21:13 +00:00
Err(_) => {
eprintln!(
"Unable to find a {} file. Creating default!",
config_file_path
);
let mut fd = OpenOptions::new()
.write(true)
.create_new(true)
.open(config_file_path)
.expect("Unable to write to directory!");
fd.write_all(DEFAULT_CONFIG)?;
String::from_utf8_lossy(DEFAULT_CONFIG).into_owned()
2019-12-21 19:21:13 +00:00
}
};
// Reading from memory is faster than reading directly from a reader for some
// reason; see https://github.com/serde-rs/json/issues/160
Ok(serde_yaml::from_str(&config_str)?)
2019-12-21 19:16:47 +00:00
}
2019-12-23 01:05:01 +00:00
/// Returns an instance with all pre-generated templates included into the
/// binary. This allows for users to have a portable binary without needed the
/// templates at runtime.
2019-12-15 17:49:16 +00:00
fn compile_templates() -> Handlebars {
2019-12-21 19:21:13 +00:00
let mut handlebars = Handlebars::new();
2019-12-22 04:34:03 +00:00
macro_rules! register_template {
2019-12-23 01:05:01 +00:00
[ $( $template:expr ),* ] => {
2019-12-22 04:34:03 +00:00
$(
handlebars
.register_template_string(
$template,
String::from_utf8_lossy(
include_bytes!(concat!("templates/", $template, ".hbs")))
)
.unwrap();
)*
};
}
2019-12-23 01:05:01 +00:00
register_template!["index", "list", "opensearch"];
2019-12-21 19:21:13 +00:00
handlebars
2019-12-15 16:07:36 +00:00
}