2018-02-10 00:00:55 +00:00
|
|
|
use std::io;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
use rocket::Route;
|
|
|
|
use rocket::response::NamedFile;
|
2018-02-14 23:53:11 +00:00
|
|
|
use rocket_contrib::Json;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
use CONFIG;
|
|
|
|
|
|
|
|
pub fn routes() -> Vec<Route> {
|
|
|
|
routes![index, files, attachments, alive]
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Might want to use in memory cache: https://github.com/hgzimmerman/rocket-file-cache
|
|
|
|
#[get("/")]
|
|
|
|
fn index() -> io::Result<NamedFile> {
|
2018-02-14 23:40:34 +00:00
|
|
|
NamedFile::open(
|
|
|
|
Path::new(&CONFIG.web_vault_folder)
|
|
|
|
.join("index.html"))
|
2018-02-10 00:00:55 +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-02-10 00:00:55 +00:00
|
|
|
fn files(p: PathBuf) -> io::Result<NamedFile> {
|
2018-02-14 23:40:34 +00:00
|
|
|
NamedFile::open(
|
|
|
|
Path::new(&CONFIG.web_vault_folder)
|
|
|
|
.join(p))
|
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> {
|
|
|
|
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()))
|
|
|
|
}
|