2018-02-10 00:00:55 +00:00
|
|
|
use std::io;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
2018-12-23 21:37:02 +00:00
|
|
|
use rocket::http::ContentType;
|
2018-06-25 18:35:36 +00:00
|
|
|
use rocket::request::Request;
|
2018-12-29 00:01:58 +00:00
|
|
|
use rocket::response::content::Content;
|
2018-06-25 18:35:36 +00:00
|
|
|
use rocket::response::{self, NamedFile, Responder};
|
2018-02-10 00:00:55 +00:00
|
|
|
use rocket::Route;
|
2018-10-10 18:40:39 +00:00
|
|
|
use rocket_contrib::json::Json;
|
|
|
|
use serde_json::Value;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::CONFIG;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
pub fn routes() -> Vec<Route> {
|
2018-06-12 19:09:42 +00:00
|
|
|
if CONFIG.web_vault_enabled {
|
2018-12-18 00:53:21 +00:00
|
|
|
routes![web_index, app_id, web_files, admin_page, attachments, alive]
|
2018-06-12 19:09:42 +00:00
|
|
|
} else {
|
|
|
|
routes![attachments, alive]
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/")]
|
2018-12-23 21:37:02 +00:00
|
|
|
fn web_index() -> Cached<io::Result<NamedFile>> {
|
|
|
|
Cached::short(NamedFile::open(Path::new(&CONFIG.web_vault_folder).join("index.html")))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:46:50 +00:00
|
|
|
#[get("/app-id.json")]
|
2018-12-23 21:37:02 +00:00
|
|
|
fn app_id() -> Cached<Content<Json<Value>>> {
|
2018-07-13 13:05:00 +00:00
|
|
|
let content_type = ContentType::new("application", "fido.trusted-apps+json");
|
|
|
|
|
2018-12-23 21:37:02 +00:00
|
|
|
Cached::long(Content(
|
|
|
|
content_type,
|
|
|
|
Json(json!({
|
|
|
|
"trustedFacets": [
|
|
|
|
{
|
|
|
|
"version": { "major": 1, "minor": 0 },
|
|
|
|
"ids": [
|
|
|
|
&CONFIG.domain,
|
|
|
|
"ios:bundle-id:com.8bit.bitwarden",
|
|
|
|
"android:apk-key-hash:dUGFzUzf3lmHSLBDBIv+WaFyZMI" ]
|
|
|
|
}]
|
|
|
|
})),
|
|
|
|
))
|
2018-07-12 19:46:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-23 21:37:02 +00:00
|
|
|
const ADMIN_PAGE: &'static str = include_str!("../static/admin.html");
|
2018-12-29 00:01:58 +00:00
|
|
|
use rocket::response::content::Html;
|
2018-12-23 21:37:02 +00:00
|
|
|
|
|
|
|
#[get("/admin")]
|
|
|
|
fn admin_page() -> Cached<Html<&'static str>> {
|
|
|
|
Cached::short(Html(ADMIN_PAGE))
|
|
|
|
}
|
|
|
|
|
|
|
|
/* // Use this during Admin page development
|
2018-12-18 00:53:21 +00:00
|
|
|
#[get("/admin")]
|
2018-12-23 21:37:02 +00:00
|
|
|
fn admin_page() -> Cached<io::Result<NamedFile>> {
|
|
|
|
Cached::short(NamedFile::open("src/static/admin.html"))
|
2018-12-18 00:53:21 +00:00
|
|
|
}
|
2018-12-23 21:37:02 +00:00
|
|
|
*/
|
2018-12-18 00:53:21 +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-12-23 21:37:02 +00:00
|
|
|
fn web_files(p: PathBuf) -> Cached<io::Result<NamedFile>> {
|
|
|
|
Cached::long(NamedFile::open(Path::new(&CONFIG.web_vault_folder).join(p)))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-12-23 21:37:02 +00:00
|
|
|
struct Cached<R>(R, &'static str);
|
|
|
|
|
|
|
|
impl<R> Cached<R> {
|
|
|
|
fn long(r: R) -> Cached<R> {
|
|
|
|
// 7 days
|
|
|
|
Cached(r, "public, max-age=604800".into())
|
|
|
|
}
|
2018-06-25 18:35:36 +00:00
|
|
|
|
2018-12-23 21:37:02 +00:00
|
|
|
fn short(r: R) -> Cached<R> {
|
|
|
|
// 10 minutes
|
|
|
|
Cached(r, "public, max-age=600".into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'r, R: Responder<'r>> Responder<'r> for Cached<R> {
|
2018-06-25 18:35:36 +00:00
|
|
|
fn respond_to(self, req: &Request) -> response::Result<'r> {
|
2018-07-18 10:54:33 +00:00
|
|
|
match self.0.respond_to(req) {
|
|
|
|
Ok(mut res) => {
|
2018-12-23 21:37:02 +00:00
|
|
|
res.set_raw_header("Cache-Control", self.1);
|
2018-07-18 10:54:33 +00:00
|
|
|
Ok(res)
|
|
|
|
}
|
2018-12-23 21:37:02 +00:00
|
|
|
e @ Err(_) => e,
|
|
|
|
}
|
2018-06-25 18:35:36 +00:00
|
|
|
}
|
|
|
|
}
|
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> {
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::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()))
|
|
|
|
}
|