upend/src/main.rs

106 lines
3.0 KiB
Rust
Raw Normal View History

2020-08-27 00:11:50 +02:00
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_migrations;
use actix::prelude::*;
2020-08-27 01:07:25 +02:00
use actix_web::{middleware, App, HttpServer};
2020-08-27 00:11:50 +02:00
use clap::{App as ClapApp, Arg};
2020-08-30 16:45:42 +02:00
use log::{info, warn};
2020-08-27 00:11:50 +02:00
use std::env;
2020-08-27 01:07:25 +02:00
use std::fs;
2020-08-30 16:45:42 +02:00
use std::net::SocketAddr;
2020-08-27 01:07:25 +02:00
use std::path::PathBuf;
2020-08-27 00:11:50 +02:00
mod database;
mod dataops;
mod models;
2020-08-27 01:07:25 +02:00
mod routes;
2020-08-27 00:11:50 +02:00
mod schema;
2020-08-28 13:51:22 +02:00
const VERSION: &str = env!("CARGO_PKG_VERSION");
2020-08-27 00:11:50 +02:00
fn main() -> std::io::Result<()> {
let env = env_logger::Env::default().filter_or(env_logger::DEFAULT_FILTER_ENV, "info");
env_logger::init_from_env(env);
let app = ClapApp::new("upend")
.version(VERSION)
.author("Tomáš Mládek <t@mldk.cz>")
.arg(Arg::with_name("DIRECTORY").required(true).index(1))
.arg(
Arg::with_name("BIND")
.long("bind")
.default_value("127.0.0.1:8093")
.help("address and port to bind the Web interface on")
.required(true),
2020-08-30 16:45:42 +02:00
)
.arg(
Arg::with_name("NO_BROWSER")
.long("no-browser")
.help("Do not open web browser with the UI."),
2020-08-27 00:11:50 +02:00
);
let matches = app.get_matches();
info!("Starting UpEnd {}...", VERSION);
let sys = actix::System::new("upend");
2020-08-27 00:11:50 +02:00
let vault_path = PathBuf::from(matches.value_of("DIRECTORY").unwrap());
2020-08-27 00:11:50 +02:00
let _ = fs::remove_file(&vault_path.join("upend.sqlite3")); // TODO REMOVE!!!
let open_result = database::open_upend(&vault_path).expect("failed to open database!");
2020-08-27 00:11:50 +02:00
2020-08-30 17:13:18 +02:00
let pool = open_result.pool;
let db_addr = SyncArbiter::start(3, move || database::DbExecutor(pool.clone()));
let hash_addr = SyncArbiter::start(4, || dataops::HasherWorker);
2020-08-27 00:11:50 +02:00
2020-08-30 16:45:42 +02:00
let bind: SocketAddr = matches
.value_of("BIND")
.unwrap()
.parse()
.expect("Incorrect bind format.");
2020-08-27 00:11:50 +02:00
info!("Starting server at: {}", &bind);
let state = routes::State {
directory: vault_path.clone(),
db: db_addr.clone(),
hasher: hash_addr.clone(),
};
2020-08-27 00:11:50 +02:00
// Start HTTP server
HttpServer::new(move || {
App::new()
.data(state.clone())
2020-08-27 00:11:50 +02:00
.wrap(middleware::Logger::default())
2020-08-27 01:07:25 +02:00
.service(routes::get_raw)
.service(routes::get_lookup)
2020-08-27 01:07:25 +02:00
.service(routes::api_refresh)
.service(
actix_files::Files::new(
"/",
env::current_exe().unwrap().parent().unwrap().join("webui"),
)
.index_file("index.html"),
)
2020-08-27 00:11:50 +02:00
})
.bind(&bind)?
.run();
if open_result.new {
info!("The vault has been just created, running initial update...");
2020-08-30 22:14:24 +02:00
actix::spawn(dataops::update_directory_bg(vault_path, db_addr, hash_addr));
}
2020-08-30 16:45:42 +02:00
// TODO REMOVE
if !matches.is_present("NO_BROWSER") {
2020-08-30 16:45:42 +02:00
let ui_result = webbrowser::open(&format!("http://localhost:{}", bind.port()));
2020-08-30 22:14:24 +02:00
if ui_result.is_err() {
2020-08-30 16:45:42 +02:00
warn!("Could not open UI in browser!");
}
}
2020-08-27 00:11:50 +02:00
sys.run()
}