bunbun/src/main.rs

202 lines
5.9 KiB
Rust
Raw Normal View History

2019-12-15 16:07:36 +00:00
use actix_web::{
get,
http::header,
web::{Data, Query},
App, HttpResponse, HttpServer, Responder,
};
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;
2019-12-15 19:57:42 +00:00
use std::collections::{BTreeMap, HashMap};
2019-12-15 16:07:36 +00:00
use std::fs::{File, OpenOptions};
use std::io::{Error, 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-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
#[get("/ls")]
2019-12-21 19:04:13 +00:00
fn list(data: Data<Arc<RwLock<State>>>) -> impl Responder {
let data = data.read().unwrap();
HttpResponse::Ok().body(data.renderer.render("list", &data.routes).unwrap())
2019-12-15 18:54:09 +00:00
}
#[derive(Deserialize)]
struct SearchQuery {
to: String,
2019-12-15 16:07:36 +00:00
}
#[get("/hop")]
2019-12-21 19:04:13 +00:00
fn hop(data: Data<Arc<RwLock<State>>>, query: Query<SearchQuery>) -> impl Responder {
let data = data.read().unwrap();
2019-12-15 16:07:36 +00:00
let mut raw_args = query.to.split_ascii_whitespace();
let command = raw_args.next();
2019-12-15 18:54:09 +00:00
if command.is_none() {
return HttpResponse::NotFound().body("not found");
}
2019-12-15 16:07:36 +00:00
// Reform args into url-safe string (probably want to go thru an actual parser)
let mut args = String::new();
if let Some(first_arg) = raw_args.next() {
args.push_str(first_arg);
for arg in raw_args {
args.push_str("+");
args.push_str(arg);
}
}
2019-12-15 17:49:16 +00:00
let mut template_args = HashMap::new();
template_args.insert("query", args);
2019-12-15 16:07:36 +00:00
2019-12-15 17:49:16 +00:00
match data.routes.get(command.unwrap()) {
2019-12-15 16:07:36 +00:00
Some(template) => HttpResponse::Found()
.header(
header::LOCATION,
2019-12-15 18:54:09 +00:00
data.renderer
.render_template(template, &template_args)
.unwrap(),
2019-12-15 16:07:36 +00:00
)
.finish(),
2019-12-15 17:49:16 +00:00
None => match &data.default_route {
Some(route) => {
template_args.insert(
"query",
format!(
"{}+{}",
command.unwrap(),
template_args.get("query").unwrap()
),
);
HttpResponse::Found()
.header(
header::LOCATION,
2019-12-15 18:54:09 +00:00
data.renderer
.render_template(data.routes.get(route).unwrap(), &template_args)
2019-12-15 17:49:16 +00:00
.unwrap(),
)
.finish()
}
None => HttpResponse::NotFound().body("not found"),
},
2019-12-15 16:07:36 +00:00
}
}
2019-12-15 17:49:16 +00:00
#[get("/")]
2019-12-21 19:04:13 +00:00
fn index(data: Data<Arc<RwLock<State>>>) -> impl Responder {
let data = data.read().unwrap();
2019-12-15 23:26:29 +00:00
let mut template_args = HashMap::new();
template_args.insert("hostname", &data.public_address);
2019-12-21 19:04:13 +00:00
HttpResponse::Ok().body(data.renderer.render("index", &template_args).unwrap())
2019-12-15 17:49:16 +00:00
}
#[get("/bunbunsearch.xml")]
2019-12-21 19:04:13 +00:00
fn opensearch(data: Data<Arc<RwLock<State>>>) -> impl Responder {
let data = data.read().unwrap();
2019-12-15 17:49:16 +00:00
let mut template_args = HashMap::new();
template_args.insert("hostname", &data.public_address);
HttpResponse::Ok()
.header(
header::CONTENT_TYPE,
"application/opensearchdescription+xml",
)
2019-12-21 19:04:13 +00:00
.body(data.renderer.render("opensearch", &template_args).unwrap())
2019-12-15 17:49:16 +00:00
}
2019-12-15 16:07:36 +00:00
#[derive(Deserialize)]
struct Config {
bind_address: String,
2019-12-15 17:49:16 +00:00
public_address: String,
default_route: Option<String>,
2019-12-15 16:07:36 +00:00
routes: BTreeMap<String, String>,
}
2019-12-15 17:49:16 +00:00
struct State {
public_address: String,
default_route: Option<String>,
routes: BTreeMap<String, String>,
2019-12-21 19:04:13 +00:00
renderer: Handlebars,
2019-12-15 17:49:16 +00:00
}
2019-12-15 16:07:36 +00:00
fn main() -> Result<(), Error> {
2019-12-21 19:16:47 +00:00
let conf = read_config(CONFIG_FILE)?;
2019-12-15 17:49:16 +00:00
let renderer = compile_templates();
2019-12-21 19:04:13 +00:00
let state = Arc::from(RwLock::new(State {
2019-12-15 17:49:16 +00:00
public_address: conf.public_address,
default_route: conf.default_route,
routes: conf.routes,
2019-12-21 19:08:04 +00:00
renderer,
2019-12-21 19:04:13 +00:00
}));
let state_ref = state.clone();
let mut watch =
Hotwatch::new_with_custom_delay(Duration::from_millis(500)).expect("Failed to init watch");
watch
.watch(CONFIG_FILE, move |e: Event| {
if let Event::Write(_) = e {
let mut state = state.write().unwrap();
2019-12-21 19:16:47 +00:00
let conf = read_config(CONFIG_FILE).unwrap();
2019-12-21 19:04:13 +00:00
state.public_address = conf.public_address;
state.default_route = conf.default_route;
state.routes = conf.routes;
}
})
.expect("failed to watch");
2019-12-15 17:49:16 +00:00
HttpServer::new(move || {
App::new()
2019-12-21 19:04:13 +00:00
.data(state_ref.clone())
2019-12-15 17:49:16 +00:00
.service(hop)
.service(list)
.service(index)
.service(opensearch)
})
.bind(&conf.bind_address)?
.run()
}
2019-12-15 16:07:36 +00:00
2019-12-21 19:16:47 +00:00
fn read_config(config_file_path: &str) -> Result<Config, Error> {
let config_file = match File::open(config_file_path) {
Ok(file) => file,
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)?;
File::open(config_file_path)?
}
};
Ok(serde_yaml::from_reader(config_file).unwrap())
}
2019-12-15 17:49:16 +00:00
fn compile_templates() -> Handlebars {
let mut handlebars = Handlebars::new();
handlebars
.register_template_string(
"index",
String::from_utf8_lossy(include_bytes!("templates/index.hbs")),
)
.unwrap();
handlebars
.register_template_string(
"opensearch",
String::from_utf8_lossy(include_bytes!("templates/bunbunsearch.xml")),
)
.unwrap();
handlebars
2019-12-15 18:54:09 +00:00
.register_template_string(
"list",
String::from_utf8_lossy(include_bytes!("templates/list.hbs")),
)
.unwrap();
handlebars
2019-12-15 16:07:36 +00:00
}