2022-12-28 22:05:28 -06:00
|
|
|
use std::{
|
|
|
|
ffi::OsStr,
|
|
|
|
path::{Component, PathBuf},
|
|
|
|
sync::Arc,
|
|
|
|
};
|
|
|
|
|
|
|
|
use axum::{
|
|
|
|
body::StreamBody,
|
|
|
|
extract::{Path, State},
|
2022-12-28 23:03:14 -06:00
|
|
|
response::{IntoResponse, Response}, debug_handler,
|
2022-12-28 22:05:28 -06:00
|
|
|
};
|
|
|
|
use bytes::{buf::Reader, Bytes};
|
|
|
|
use hyper::StatusCode;
|
|
|
|
use tokio::fs::File;
|
|
|
|
use tokio_util::io::ReaderStream;
|
|
|
|
|
|
|
|
/* pub enum ViewResponse {
|
|
|
|
FromDisk(StreamBody<ReaderStream<File>>),
|
|
|
|
FromCache(Bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoResponse for ViewResponse {
|
|
|
|
fn into_response(self) -> Response {
|
|
|
|
match self {
|
|
|
|
ViewResponse::FromDisk(stream) => stream.into_response(),
|
|
|
|
ViewResponse::FromCache(data) => data.into_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} */
|
|
|
|
|
2022-12-28 23:03:14 -06:00
|
|
|
#[axum::debug_handler]
|
2022-12-28 22:05:28 -06:00
|
|
|
pub async fn view(
|
|
|
|
State(state): State<Arc<crate::state::AppState>>,
|
|
|
|
Path(original_path): Path<PathBuf>,
|
|
|
|
) -> Response {
|
|
|
|
// (hopefully) prevent path traversal, just check for any non-file components
|
|
|
|
if original_path
|
|
|
|
.components()
|
|
|
|
.into_iter()
|
|
|
|
.any(|x| !matches!(x, Component::Normal(_)))
|
|
|
|
{
|
|
|
|
println!("lol NOPE");
|
|
|
|
return StatusCode::NOT_FOUND.into_response();
|
|
|
|
}
|
|
|
|
|
|
|
|
let name = original_path
|
|
|
|
.file_name()
|
|
|
|
.and_then(OsStr::to_str)
|
|
|
|
.unwrap_or_default()
|
|
|
|
.to_string();
|
|
|
|
|
2022-12-28 23:03:14 -06:00
|
|
|
let cache = state.cache.lock().await;
|
2022-12-28 22:05:28 -06:00
|
|
|
|
|
|
|
let cache_item = cache.get(&name);
|
|
|
|
|
2022-12-28 23:03:14 -06:00
|
|
|
if cache_item.is_none() {
|
2022-12-28 22:05:28 -06:00
|
|
|
let mut path = PathBuf::new();
|
|
|
|
path.push("uploads/");
|
|
|
|
path.push(name);
|
|
|
|
|
|
|
|
if !path.exists() || !path.is_file() {
|
|
|
|
return StatusCode::NOT_FOUND.into_response();
|
|
|
|
}
|
|
|
|
|
|
|
|
let file = File::open(path).await.unwrap();
|
|
|
|
|
|
|
|
let reader = ReaderStream::new(file);
|
|
|
|
let stream = StreamBody::new(reader);
|
|
|
|
|
|
|
|
println!("from disk");
|
|
|
|
|
|
|
|
return stream.into_response();
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("from cache! :D");
|
|
|
|
|
|
|
|
let data = cache_item.unwrap().clone();
|
|
|
|
|
|
|
|
return data.into_response();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pub async fn view(
|
|
|
|
State(mem_cache): State<Arc<crate::cache::MemCache>>,
|
|
|
|
Path(original_path): Path<PathBuf>,
|
|
|
|
) -> Response {
|
|
|
|
for component in original_path.components() {
|
|
|
|
println!("{:?}", component);
|
|
|
|
}
|
|
|
|
|
|
|
|
// (hopefully) prevent path traversal, just check for any non-file components
|
|
|
|
if original_path
|
|
|
|
.components()
|
|
|
|
.into_iter()
|
|
|
|
.any(|x| !matches!(x, Component::Normal(_)))
|
|
|
|
{
|
|
|
|
return StatusCode::NOT_FOUND.into_response()
|
|
|
|
}
|
|
|
|
|
|
|
|
// this causes an obscure bug where filenames like hiworld%2fnamehere.png will still load namehere.png
|
|
|
|
// i could limit the path components to 1 and sort of fix this
|
|
|
|
let name = original_path
|
|
|
|
.file_name()
|
|
|
|
.and_then(OsStr::to_str)
|
|
|
|
.unwrap_or_default()
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let cache = mem_cache.cache.lock().unwrap();
|
|
|
|
|
|
|
|
let cache_item = cache.get(&name);
|
|
|
|
|
|
|
|
if cache_item.is_some() {
|
|
|
|
println!("they requested something in the cache!");
|
|
|
|
|
|
|
|
let data = cache_item.unwrap().clone();
|
|
|
|
|
|
|
|
return data.into_response()
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut path = PathBuf::new();
|
|
|
|
path.push("uploads/");
|
|
|
|
path.push(name);
|
|
|
|
|
|
|
|
if !path.exists() || !path.is_file() {
|
|
|
|
return StatusCode::NOT_FOUND.into_response()
|
|
|
|
}
|
|
|
|
|
|
|
|
let file = File::open(path).await.unwrap();
|
|
|
|
|
|
|
|
let reader = ReaderStream::new(file);
|
|
|
|
let stream = StreamBody::new(reader);
|
|
|
|
|
|
|
|
stream.into_response()
|
|
|
|
}
|
|
|
|
*/
|