Added endpoint to wipe data from coverart queue

This commit is contained in:
kdeng00
2025-05-26 15:49:24 -04:00
parent 5fa1bb6edd
commit 3290b2e3cc
+67
View File
@@ -38,6 +38,13 @@ pub mod request {
pub coverart_queue_id: uuid::Uuid, pub coverart_queue_id: uuid::Uuid,
} }
} }
pub mod wipe_data_from_coverart_queue {
#[derive(Debug, serde::Deserialize, serde::Serialize)]
pub struct Request {
pub coverart_queue_id: uuid::Uuid
}
}
} }
pub mod response { pub mod response {
@@ -84,6 +91,14 @@ pub mod response {
pub data: Vec<icarus_models::coverart::CoverArt>, pub data: Vec<icarus_models::coverart::CoverArt>,
} }
} }
pub mod wipe_data_from_coverart_queue {
#[derive(Debug, Default, serde::Deserialize, serde::Serialize)]
pub struct Response {
pub message: String,
pub data: Vec<uuid::Uuid>,
}
}
} }
pub mod db { pub mod db {
@@ -246,6 +261,29 @@ pub mod db {
Err(_) => Err(sqlx::Error::RowNotFound), Err(_) => Err(sqlx::Error::RowNotFound),
} }
} }
pub async fn wipe_data(pool: &sqlx::PgPool, coverart_queue_id: &uuid::Uuid) -> Result<uuid::Uuid, sqlx::Error> {
let result = sqlx::query(
r#"
UPDATE "coverartQueue" SET data = NULL WHERE id = $1 RETURNING id;
"#
)
.bind(coverart_queue_id)
.fetch_one(pool)
.await
.map_err(|e| {
eprintln!("Error updating query: {:?}", e);
});
match result {
Ok(row) => {
Ok(row.try_get("id").map_err(|_e| sqlx::Error::RowNotFound).unwrap())
}
Err(_) => {
Err(sqlx::Error::RowNotFound)
}
}
}
} }
pub mod cov_db { pub mod cov_db {
@@ -508,4 +546,33 @@ pub mod endpoint {
} }
} }
} }
pub async fn wipe_data_from_coverart_queue(axum::Extension(pool): axum::Extension<sqlx::PgPool>,
axum::Json(payload): axum::Json<super::request::wipe_data_from_coverart_queue::Request>,) -> (
axum::http::StatusCode,
axum::Json<super::response::wipe_data_from_coverart_queue::Response>,
) {
let mut response = super::response::wipe_data_from_coverart_queue::Response::default();
let coverart_queue_id = payload.coverart_queue_id;
match super::db::get_coverart_queue_with_id(&pool, &coverart_queue_id).await {
Ok(coverart_queue) => {
match super::db::wipe_data(&pool, &coverart_queue.id).await {
Ok(id) => {
response.message = String::from("Success");
response.data.push(id);
(axum::http::StatusCode::OK, axum::Json(response))
}
Err(err) => {
response.message = err.to_string();
(axum::http::StatusCode::BAD_REQUEST, axum::Json(response))
}
}
}
Err(err) => {
response.message = err.to_string();
(axum::http::StatusCode::NOT_FOUND, axum::Json(response))
}
}
}
} }