2021-04-04 12:30:31 +00:00
|
|
|
mod config;
|
|
|
|
mod db;
|
2020-07-09 17:27:24 +00:00
|
|
|
mod deleter;
|
2021-04-04 12:30:31 +00:00
|
|
|
mod download;
|
2022-10-07 10:18:23 +00:00
|
|
|
mod mime_relations;
|
2020-07-08 19:26:46 +00:00
|
|
|
mod multipart;
|
2022-08-21 16:44:12 +00:00
|
|
|
mod rate_limit;
|
2021-12-08 17:54:55 +00:00
|
|
|
mod template;
|
2021-04-04 12:30:31 +00:00
|
|
|
mod upload;
|
2020-07-08 19:26:46 +00:00
|
|
|
|
2022-08-21 16:44:12 +00:00
|
|
|
use crate::rate_limit::ForwardedPeerIpKeyExtractor;
|
2021-04-04 12:30:31 +00:00
|
|
|
use actix_files::Files;
|
2022-08-21 16:44:12 +00:00
|
|
|
use actix_governor::{Governor, GovernorConfigBuilder};
|
2022-02-26 23:34:57 +00:00
|
|
|
use actix_web::{
|
2023-04-20 19:46:56 +00:00
|
|
|
http::header::{
|
|
|
|
HeaderName, CONTENT_SECURITY_POLICY, PERMISSIONS_POLICY, REFERRER_POLICY,
|
|
|
|
X_CONTENT_TYPE_OPTIONS, X_FRAME_OPTIONS, X_XSS_PROTECTION,
|
|
|
|
},
|
2023-03-15 08:44:31 +00:00
|
|
|
middleware::{self, Condition, DefaultHeaders, Logger},
|
2022-02-26 23:34:57 +00:00
|
|
|
web::{self, Data},
|
|
|
|
App, Error, HttpResponse, HttpServer,
|
|
|
|
};
|
2021-04-04 01:38:29 +00:00
|
|
|
use env_logger::Env;
|
2021-04-04 12:30:31 +00:00
|
|
|
use sqlx::postgres::PgPool;
|
2020-07-08 19:26:46 +00:00
|
|
|
use std::env;
|
2023-02-10 22:01:56 +00:00
|
|
|
use tokio::sync::mpsc::channel;
|
2020-07-08 19:26:46 +00:00
|
|
|
|
2023-04-20 19:46:56 +00:00
|
|
|
const DEFAULT_CONTENT_SECURITY_POLICY: (HeaderName, &str) = (
|
2022-08-18 21:20:56 +00:00
|
|
|
CONTENT_SECURITY_POLICY,
|
|
|
|
"default-src 'none'; connect-src 'self'; img-src 'self'; media-src 'self'; font-src 'self'; script-src 'self'; style-src 'self'; object-src 'none'; base-uri 'self'; frame-src 'none'; frame-ancestors 'none'; form-action 'self';"
|
|
|
|
);
|
2023-04-20 19:46:56 +00:00
|
|
|
#[allow(clippy::declare_interior_mutable_const)]
|
|
|
|
const DEFAULT_PERMISSIONS: (HeaderName, &str) = (
|
|
|
|
PERMISSIONS_POLICY,
|
|
|
|
"accelerometer=(), ambient-light-sensor=(), battery=(), camera=(), display-capture=(), document-domain=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), midi=(), payment=(), sync-xhr=(), usb=(), web-share=()"
|
|
|
|
);
|
|
|
|
const DEFAULT_CONTENT_TYPE_OPTIONS: (HeaderName, &str) = (X_CONTENT_TYPE_OPTIONS, "nosniff");
|
|
|
|
const DEFAULT_FRAME_OPTIONS: (HeaderName, &str) = (X_FRAME_OPTIONS, "deny");
|
|
|
|
const DEFAULT_XSS_PROTECTION: (HeaderName, &str) = (X_XSS_PROTECTION, "1; mode=block");
|
|
|
|
const DEFAULT_REFERRER_POLICY: (HeaderName, &str) = (REFERRER_POLICY, "no-referrer");
|
2022-08-18 21:20:56 +00:00
|
|
|
|
2020-08-19 14:24:42 +00:00
|
|
|
async fn not_found() -> Result<HttpResponse, Error> {
|
|
|
|
Ok(HttpResponse::NotFound()
|
|
|
|
.content_type("text/plain")
|
|
|
|
.body("not found"))
|
|
|
|
}
|
|
|
|
|
2022-02-26 23:34:57 +00:00
|
|
|
#[tokio::main]
|
2020-07-08 19:26:46 +00:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2021-04-04 01:38:29 +00:00
|
|
|
env_logger::Builder::from_env(Env::default().default_filter_or("info,sqlx=warn")).init();
|
2020-07-08 19:26:46 +00:00
|
|
|
|
2022-11-04 10:37:10 +00:00
|
|
|
let pool: PgPool = db::setup().await;
|
|
|
|
let config = config::from_env().await;
|
2022-02-26 23:34:57 +00:00
|
|
|
let (sender, receiver) = channel(8);
|
2020-07-13 13:22:33 +00:00
|
|
|
|
2020-07-13 13:29:40 +00:00
|
|
|
log::info!("omnomnom");
|
|
|
|
|
2021-08-18 21:22:50 +00:00
|
|
|
let db = web::Data::new(pool.clone());
|
|
|
|
let expiry_watch_sender = web::Data::new(sender);
|
|
|
|
let bind_address = env::var("BIND_ADDRESS").unwrap_or_else(|_| "0.0.0.0:8000".to_owned());
|
|
|
|
|
2023-02-10 22:01:56 +00:00
|
|
|
let deleter = tokio::spawn(deleter::delete_old_files(
|
2020-07-14 15:53:43 +00:00
|
|
|
receiver,
|
2021-08-18 21:22:50 +00:00
|
|
|
pool,
|
2020-07-11 21:27:15 +00:00
|
|
|
config.files_dir.clone(),
|
|
|
|
));
|
2020-07-09 17:27:24 +00:00
|
|
|
|
2021-12-08 17:54:55 +00:00
|
|
|
template::write_prefillable_templates(&config).await;
|
2022-02-26 23:34:57 +00:00
|
|
|
let config = Data::new(config);
|
2021-12-08 17:54:55 +00:00
|
|
|
|
2022-08-21 16:44:12 +00:00
|
|
|
let governor_conf = GovernorConfigBuilder::default()
|
2022-10-15 12:31:54 +00:00
|
|
|
.per_second(config.rate_limit_replenish_seconds)
|
2022-08-21 16:44:12 +00:00
|
|
|
.burst_size(config.rate_limit_burst)
|
|
|
|
.key_extractor(ForwardedPeerIpKeyExtractor {
|
|
|
|
proxied: config.proxied,
|
|
|
|
})
|
|
|
|
.use_headers()
|
|
|
|
.finish()
|
|
|
|
.unwrap();
|
|
|
|
|
2023-02-10 22:01:56 +00:00
|
|
|
let http_server = HttpServer::new({
|
2020-07-11 21:27:15 +00:00
|
|
|
move || {
|
2023-03-15 08:44:31 +00:00
|
|
|
App::new()
|
2021-08-18 21:22:50 +00:00
|
|
|
.wrap(Logger::new(r#"%{r}a "%r" =%s %bbytes %Tsec"#))
|
2022-08-24 08:32:51 +00:00
|
|
|
.wrap(
|
|
|
|
DefaultHeaders::new()
|
2023-04-20 19:46:56 +00:00
|
|
|
.add(DEFAULT_CONTENT_SECURITY_POLICY)
|
|
|
|
.add(DEFAULT_PERMISSIONS)
|
|
|
|
.add(DEFAULT_CONTENT_TYPE_OPTIONS)
|
|
|
|
.add(DEFAULT_FRAME_OPTIONS)
|
|
|
|
.add(DEFAULT_XSS_PROTECTION)
|
|
|
|
.add(DEFAULT_REFERRER_POLICY),
|
2022-08-24 08:32:51 +00:00
|
|
|
)
|
2022-02-26 23:34:57 +00:00
|
|
|
.wrap(middleware::Compress::default())
|
2023-03-15 08:44:31 +00:00
|
|
|
.wrap(middleware::NormalizePath::trim())
|
2020-07-11 21:27:15 +00:00
|
|
|
.app_data(db.clone())
|
2020-12-03 22:30:37 +00:00
|
|
|
.app_data(expiry_watch_sender.clone())
|
2022-02-26 23:34:57 +00:00
|
|
|
.app_data(config.clone())
|
2023-04-14 08:00:44 +00:00
|
|
|
.service(
|
|
|
|
web::resource("/")
|
|
|
|
.route(web::get().to(upload::index))
|
|
|
|
.route(web::head().to(upload::index)),
|
|
|
|
)
|
2021-04-04 12:30:31 +00:00
|
|
|
.service(web::resource("/upload").route(web::post().to(upload::upload)))
|
2020-08-02 23:12:42 +00:00
|
|
|
.service(
|
2020-08-03 00:42:27 +00:00
|
|
|
web::resource(["/upload/{id}", "/upload/{id}/{name}"])
|
2023-04-14 08:00:44 +00:00
|
|
|
.route(web::get().to(upload::uploaded))
|
|
|
|
.route(web::head().to(upload::uploaded)),
|
2020-08-03 00:42:27 +00:00
|
|
|
)
|
2021-03-09 21:19:06 +00:00
|
|
|
.service(Files::new("/static", "static").disable_content_disposition())
|
2023-03-15 08:44:31 +00:00
|
|
|
.default_service(web::route().to(not_found))
|
|
|
|
.service(
|
2023-04-14 08:00:44 +00:00
|
|
|
web::resource(["/{id:[a-z0-9]{5}}", "/{id:[a-z0-9]{5}}/{name}"])
|
|
|
|
.wrap(Condition::new(
|
|
|
|
config.enable_rate_limit,
|
|
|
|
Governor::new(&governor_conf),
|
|
|
|
))
|
|
|
|
.route(web::get().to(download::download))
|
|
|
|
.route(web::head().to(download::download)),
|
2020-08-02 23:12:42 +00:00
|
|
|
)
|
2020-07-11 21:27:15 +00:00
|
|
|
}
|
2020-07-08 19:26:46 +00:00
|
|
|
})
|
2020-07-11 21:27:15 +00:00
|
|
|
.bind(bind_address)?
|
2023-02-10 22:01:56 +00:00
|
|
|
.run();
|
|
|
|
|
2023-05-24 08:53:07 +00:00
|
|
|
// exit when http_server exits OR when deleter errors
|
2023-02-10 22:01:56 +00:00
|
|
|
tokio::select! {
|
|
|
|
result = http_server => result,
|
2023-05-24 08:53:07 +00:00
|
|
|
result = deleter => {
|
|
|
|
result?.map(|_| unreachable!("deletion runs infinitely")).expect("deletion may not fail")
|
|
|
|
},
|
2023-02-10 22:01:56 +00:00
|
|
|
}
|
2020-07-08 19:26:46 +00:00
|
|
|
}
|