2018-02-10 00:00:55 +00:00
|
|
|
use std::io;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
2018-06-25 18:35:36 +00:00
|
|
|
use rocket::request::Request;
|
|
|
|
use rocket::response::{self, NamedFile, Responder};
|
2018-07-13 13:05:00 +00:00
|
|
|
use rocket::response::content::Content;
|
|
|
|
use rocket::http::ContentType;
|
2018-02-10 00:00:55 +00:00
|
|
|
use rocket::Route;
|
2018-07-12 19:46:50 +00:00
|
|
|
use rocket_contrib::{Json, Value};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
use CONFIG;
|
|
|
|
|
|
|
|
pub fn routes() -> Vec<Route> {
|
2018-06-12 19:09:42 +00:00
|
|
|
if CONFIG.web_vault_enabled {
|
2018-07-12 19:46:50 +00:00
|
|
|
routes![web_index, app_id, web_files, attachments, alive]
|
2018-06-12 19:09:42 +00:00
|
|
|
} else {
|
|
|
|
routes![attachments, alive]
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Might want to use in memory cache: https://github.com/hgzimmerman/rocket-file-cache
|
|
|
|
#[get("/")]
|
2018-06-25 18:35:36 +00:00
|
|
|
fn web_index() -> WebHeaders<io::Result<NamedFile>> {
|
|
|
|
web_files("index.html".into())
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:46:50 +00:00
|
|
|
#[get("/app-id.json")]
|
2018-07-13 13:05:00 +00:00
|
|
|
fn app_id() -> WebHeaders<Content<Json<Value>>> {
|
|
|
|
let content_type = ContentType::new("application", "fido.trusted-apps+json");
|
|
|
|
|
|
|
|
WebHeaders(Content(content_type, Json(json!({
|
2018-07-12 19:46:50 +00:00
|
|
|
"trustedFacets": [
|
|
|
|
{
|
|
|
|
"version": { "major": 1, "minor": 0 },
|
|
|
|
"ids": [
|
|
|
|
&CONFIG.domain,
|
|
|
|
"ios:bundle-id:com.8bit.bitwarden",
|
|
|
|
"android:apk-key-hash:dUGFzUzf3lmHSLBDBIv+WaFyZMI" ]
|
|
|
|
}]
|
2018-07-13 13:05:00 +00:00
|
|
|
}))))
|
2018-07-12 19:46:50 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
#[get("/<p..>", rank = 1)] // Only match this if the other routes don't match
|
2018-06-25 18:35:36 +00:00
|
|
|
fn web_files(p: PathBuf) -> WebHeaders<io::Result<NamedFile>> {
|
|
|
|
WebHeaders(NamedFile::open(Path::new(&CONFIG.web_vault_folder).join(p)))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 18:35:36 +00:00
|
|
|
struct WebHeaders<R>(R);
|
|
|
|
|
|
|
|
impl<'r, R: Responder<'r>> Responder<'r> for WebHeaders<R> {
|
|
|
|
fn respond_to(self, req: &Request) -> response::Result<'r> {
|
|
|
|
let mut res = self.0.respond_to(req)?;
|
|
|
|
|
|
|
|
res.set_raw_header("Referrer-Policy", "same-origin");
|
|
|
|
res.set_raw_header("X-Frame-Options", "SAMEORIGIN");
|
|
|
|
res.set_raw_header("X-Content-Type-Options", "nosniff");
|
|
|
|
res.set_raw_header("X-XSS-Protection", "1; mode=block");
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
#[get("/attachments/<uuid>/<file..>")]
|
|
|
|
fn attachments(uuid: String, file: PathBuf) -> io::Result<NamedFile> {
|
2018-06-25 18:35:36 +00:00
|
|
|
NamedFile::open(Path::new(&CONFIG.attachments_folder).join(uuid).join(file))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[get("/alive")]
|
|
|
|
fn alive() -> Json<String> {
|
|
|
|
use util::format_date;
|
2018-02-14 23:53:11 +00:00
|
|
|
use chrono::Utc;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
Json(format_date(&Utc::now().naive_utc()))
|
|
|
|
}
|