2023-09-30 11:26:47 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
forms.rs - All the forms
|
|
|
|
*/
|
|
|
|
|
2023-10-01 10:41:34 +02:00
|
|
|
use std::collections::HashMap;
|
2023-09-30 11:26:47 +02:00
|
|
|
|
2023-10-01 04:05:08 +02:00
|
|
|
use askama::Template;
|
2023-10-22 17:24:38 +02:00
|
|
|
use warp::{Filter, reply::{Reply, json, with_status, html}, reject::Rejection, filters::multipart::FormData, http::StatusCode};
|
2023-09-30 11:26:47 +02:00
|
|
|
use futures_util::TryStreamExt;
|
|
|
|
use bytes::BufMut;
|
2023-10-01 06:44:19 +02:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2023-10-13 01:25:51 +02:00
|
|
|
use crate::files::{File, lookup::LookupKind, DeleteMode};
|
2023-09-30 11:26:47 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
use super::{state::SharedState, pages::{BadActionReq, UploadSuccessPage, self, ErrorPage}, rejection::HttpReject};
|
2023-10-01 02:14:35 +02:00
|
|
|
|
2023-10-13 15:37:18 +02:00
|
|
|
#[derive(Debug, Serialize, Clone)]
|
2023-10-01 06:44:19 +02:00
|
|
|
struct FormElement {
|
|
|
|
data: Vec<u8>,
|
|
|
|
mime: String
|
|
|
|
}
|
2023-10-01 10:40:37 +02:00
|
|
|
impl FormElement {
|
|
|
|
pub fn as_str_or_reject(self: &Self) -> Result<String, Rejection> {
|
|
|
|
Ok(String::from_utf8(self.data.clone()).map_err(|err| warp::reject::custom(HttpReject::FromUtf8Error(err)))?)
|
|
|
|
}
|
2023-09-30 11:26:47 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
pub fn as_atr_or_none(self: &Self) -> Option<String> {
|
|
|
|
if let Ok(res) = String::from_utf8(self.data.clone()) {
|
|
|
|
Some(res)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2023-10-21 08:09:36 +02:00
|
|
|
}
|
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
pub fn is_checked(self: &Self) -> bool {
|
|
|
|
if self.data.len() != 2 {
|
|
|
|
return false
|
2023-09-30 11:26:47 +02:00
|
|
|
}
|
2023-10-22 17:24:38 +02:00
|
|
|
let data = self.data.clone();
|
|
|
|
let on = "on".bytes().collect::<Vec<u8>>();
|
|
|
|
data == on
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn from_formdata(form: FormData) -> Result<HashMap<String, FormElement>, warp::Error> {
|
|
|
|
form.and_then(|mut field| async move {
|
|
|
|
let mut bytes: Vec<u8> = vec![];
|
|
|
|
while let Some(byte) = field.data().await {
|
|
|
|
bytes.put(byte.unwrap())
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok((field.name().into(), FormElement { data: bytes, mime: field.content_type().unwrap_or("text/plain").to_string() }))
|
|
|
|
}).try_collect()
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct UploadFormData {
|
|
|
|
filename: Option<String>,
|
|
|
|
password: Option<String>,
|
|
|
|
lookup_kind: LookupKind,
|
|
|
|
delmode: DeleteMode,
|
|
|
|
file: Vec<u8>,
|
|
|
|
mime: String,
|
|
|
|
tos_consent: bool
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for UploadFormData {
|
|
|
|
fn default() -> Self {
|
|
|
|
UploadFormData {
|
|
|
|
filename: None,
|
|
|
|
password: None,
|
|
|
|
lookup_kind: LookupKind::ByHash,
|
|
|
|
delmode: DeleteMode::Time,
|
|
|
|
file: vec![],
|
|
|
|
mime: "application/x-octet-stream".into(),
|
|
|
|
tos_consent: false
|
2023-10-01 04:05:08 +02:00
|
|
|
}
|
|
|
|
}
|
2023-10-22 17:24:38 +02:00
|
|
|
}
|
2023-09-30 11:26:47 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
impl UploadFormData {
|
2023-10-15 09:16:08 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
pub fn from_formdata(data: HashMap<String, FormElement>) -> Option<UploadFormData> {
|
|
|
|
let mut out = Self::default();
|
|
|
|
|
|
|
|
// Add a name
|
|
|
|
match data.get("named") {
|
|
|
|
Some(val) => {
|
|
|
|
if val.is_checked() {
|
|
|
|
let name = data.get("filename")?;
|
|
|
|
out.filename = Some(name.as_atr_or_none()?);
|
|
|
|
out.lookup_kind = LookupKind::ByHash
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => ()
|
|
|
|
}
|
2023-10-15 09:16:08 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
// Add a password
|
|
|
|
match data.get("passworded") {
|
|
|
|
Some(val) => {
|
|
|
|
if val.is_checked() {
|
|
|
|
let pass = data.get("password")?;
|
|
|
|
out.password = Some(pass.as_atr_or_none()?);
|
|
|
|
out.lookup_kind = LookupKind::ByName
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mode
|
|
|
|
match data.get("delmode") {
|
|
|
|
Some(val) => {
|
|
|
|
let val = val.data.clone();
|
|
|
|
let is_30 = val == "30".bytes().collect::<Vec<u8>>();
|
|
|
|
if is_30 {
|
|
|
|
out.delmode = DeleteMode::Time
|
|
|
|
} else {
|
|
|
|
out.delmode = DeleteMode::TimeOrDownload
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
return None
|
2023-10-21 08:09:36 +02:00
|
|
|
}
|
2023-10-15 09:16:08 +02:00
|
|
|
}
|
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
let file = data.get("file")?;
|
|
|
|
out.file = file.data.clone();
|
|
|
|
out.mime = file.mime.clone();
|
|
|
|
out.tos_consent = match data.get("tos_consent") {
|
|
|
|
Some(v) => v.is_checked(),
|
|
|
|
None => false
|
|
|
|
};
|
|
|
|
|
|
|
|
Some(out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bad_req_html(data: String) -> Box<dyn Reply> {
|
|
|
|
Box::new(
|
|
|
|
with_status(
|
|
|
|
html(data),
|
|
|
|
StatusCode::BAD_REQUEST
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn upload(form: FormData, state: SharedState) -> Result<Box<dyn Reply>, Rejection> {
|
|
|
|
|
|
|
|
if ! state.config.files.allow_uploads {
|
2023-10-13 15:37:18 +02:00
|
|
|
return Ok(
|
2023-10-22 17:24:38 +02:00
|
|
|
Box::new(warp::redirect(warp::http::Uri::from_static("/")))
|
2023-10-13 15:37:18 +02:00
|
|
|
)
|
|
|
|
}
|
2023-10-13 01:25:51 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
let params: HashMap<String, FormElement> = FormElement::from_formdata(form).await.map_err(|x| HttpReject::WarpError(x))?;
|
|
|
|
let formdata = UploadFormData::from_formdata(params.clone());
|
2023-10-23 05:21:50 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
if let Some(formdata) = formdata {
|
|
|
|
|
2023-10-23 05:21:50 +02:00
|
|
|
let mut breaks_conf = false;
|
|
|
|
if (!state.config.files.allow_custom_names) && formdata.filename.is_some() {
|
|
|
|
breaks_conf = true;
|
|
|
|
}
|
|
|
|
if (!state.config.files.allow_pass_protection) && formdata.password.is_some() {
|
|
|
|
breaks_conf = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if breaks_conf {
|
|
|
|
let error = ErrorPage {
|
|
|
|
env: state.env,
|
|
|
|
conf: state.config,
|
|
|
|
error_text: "Attempt to set name or password when they are disabled".into(),
|
|
|
|
link: None,
|
|
|
|
link_text: None
|
|
|
|
};
|
|
|
|
return Ok(
|
|
|
|
bad_req_html(
|
|
|
|
error.render()
|
|
|
|
.map_err(|x| HttpReject::AskamaError(x))?
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2023-10-22 17:24:38 +02:00
|
|
|
if ! formdata.tos_consent {
|
|
|
|
let error = ErrorPage {
|
|
|
|
env: state.env,
|
|
|
|
conf: state.config,
|
|
|
|
error_text: "You must agree to the ToS".into(),
|
|
|
|
link: None,
|
|
|
|
link_text: None
|
|
|
|
};
|
|
|
|
|
|
|
|
return Ok(
|
|
|
|
bad_req_html(
|
|
|
|
error.render()
|
|
|
|
.map_err(|x| HttpReject::AskamaError(x))?
|
|
|
|
)
|
|
|
|
)
|
2023-10-21 08:09:36 +02:00
|
|
|
}
|
2023-10-01 06:44:19 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
let file = File::create(
|
|
|
|
formdata.file,
|
|
|
|
formdata.mime,
|
|
|
|
formdata.filename.clone(),
|
|
|
|
state.env.clone(),
|
|
|
|
formdata.delmode,
|
|
|
|
formdata.password
|
|
|
|
).await
|
|
|
|
.map_err(|x| HttpReject::StringError(x.to_string()))
|
|
|
|
?;
|
|
|
|
|
|
|
|
state.file_mgr.save(&file, formdata.lookup_kind)
|
|
|
|
.map_err(|x| HttpReject::StringError(x.to_string()))?;
|
|
|
|
|
|
|
|
let page = UploadSuccessPage {
|
|
|
|
env: state.env,
|
|
|
|
conf: state.config,
|
|
|
|
link: match formdata.filename {
|
|
|
|
Some(v) => v,
|
|
|
|
None => file.hash()
|
2023-10-13 01:25:51 +02:00
|
|
|
}
|
2023-10-22 17:24:38 +02:00
|
|
|
};
|
2023-10-01 06:44:19 +02:00
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
return Ok(
|
|
|
|
Box::new(
|
|
|
|
html(
|
|
|
|
page.render()
|
|
|
|
.map_err(|x| HttpReject::AskamaError(x))?
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
let error = ErrorPage {
|
|
|
|
env: state.env,
|
|
|
|
conf: state.config,
|
|
|
|
error_text: "Form is malformed".into(),
|
|
|
|
link: None,
|
|
|
|
link_text: None
|
2023-10-10 13:56:28 +02:00
|
|
|
};
|
|
|
|
|
2023-10-22 17:24:38 +02:00
|
|
|
return Ok(
|
|
|
|
bad_req_html(
|
|
|
|
error.render()
|
|
|
|
.map_err(|x| HttpReject::AskamaError(x))?
|
|
|
|
)
|
|
|
|
)
|
2023-10-10 13:56:28 +02:00
|
|
|
|
2023-09-30 11:26:47 +02:00
|
|
|
}
|
|
|
|
|
2023-10-01 02:14:35 +02:00
|
|
|
pub fn get_routes(state: SharedState) -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
|
2023-09-30 11:26:47 +02:00
|
|
|
warp::post().and(
|
2023-10-01 02:14:35 +02:00
|
|
|
warp::multipart::form()
|
|
|
|
.and(warp::any().map(move || state.clone()))
|
|
|
|
.and_then(upload)
|
2023-09-30 11:26:47 +02:00
|
|
|
)
|
|
|
|
}
|