karton/src/endpoints/remove.rs

64 lines
1.9 KiB
Rust
Raw Normal View History

use actix_web::{get, web, HttpResponse};
use crate::args::ARGS;
use crate::endpoints::errors::ErrorTemplate;
use crate::pasta::PastaFile;
use crate::util::animalnumbers::to_u64;
2022-11-01 21:15:13 +08:00
use crate::util::hashids::to_u64 as hashid_to_u64;
use crate::util::misc::remove_expired;
use crate::AppState;
use askama::Template;
use std::fs;
#[get("/remove/{id}")]
pub async fn remove(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
if ARGS.readonly {
2022-06-04 22:21:22 +01:00
return HttpResponse::Found()
.append_header(("Location", format!("{}/", ARGS.public_path)))
2022-06-04 22:21:22 +01:00
.finish();
}
let mut pastas = data.pastas.lock().unwrap();
2022-11-01 21:15:13 +08:00
let id = if ARGS.hash_ids {
2022-11-08 16:30:16 -05:00
hashid_to_u64(&id).unwrap_or(0)
2022-11-01 21:15:13 +08:00
} else {
2022-11-08 16:30:16 -05:00
to_u64(&id.into_inner()).unwrap_or(0)
2022-11-01 21:15:13 +08:00
};
for (i, pasta) in pastas.iter().enumerate() {
if pasta.id == id {
// remove the file itself
if let Some(PastaFile { name, .. }) = &pasta.file {
2022-11-01 21:15:13 +08:00
if fs::remove_file(format!(
"./pasta_data/public/{}/{}",
pasta.id_as_animals(),
name
))
.is_err()
{
log::error!("Failed to delete file {}!", name)
}
// and remove the containing directory
2022-11-01 21:15:13 +08:00
if fs::remove_dir(format!("./pasta_data/public/{}/", pasta.id_as_animals()))
.is_err()
{
log::error!("Failed to delete directory {}!", name)
}
}
// remove it from in-memory pasta list
pastas.remove(i);
2022-06-04 22:21:22 +01:00
return HttpResponse::Found()
.append_header(("Location", format!("{}/pastalist", ARGS.public_path)))
.finish();
}
}
remove_expired(&mut pastas);
HttpResponse::Ok()
.content_type("text/html")
.body(ErrorTemplate { args: &ARGS }.render().unwrap())
}