summaryrefslogtreecommitdiff
path: root/src/routes/artist.rs
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-20 22:15:14 +0100
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-20 22:15:14 +0100
commit58515ddfecd3701112616c33ad4879dae4b38ffd (patch)
tree6a3046b9005aa5247f5e077849409acdc62f17ce /src/routes/artist.rs
parentdaa7aea33439a91c4dd14592d1909d78ebe472e2 (diff)
save before disaster
Diffstat (limited to 'src/routes/artist.rs')
-rw-r--r--src/routes/artist.rs31
1 files changed, 24 insertions, 7 deletions
diff --git a/src/routes/artist.rs b/src/routes/artist.rs
index 18272fb..dc481f3 100644
--- a/src/routes/artist.rs
+++ b/src/routes/artist.rs
@@ -1,6 +1,6 @@
use crate::database::Artist;
use crate::AppState;
-use actix_web::{get, web, HttpResponse};
+use actix_web::{get, post, web, HttpResponse};
use serde::Deserialize;
#[derive(Deserialize)]
@@ -10,17 +10,24 @@ struct ArtistQueryOptions {
}
#[get("/artist")]
-pub async fn artist(
+pub async fn get_artist(
app_state: web::Data<AppState>,
get_args: web::Query<ArtistQueryOptions>,
) -> HttpResponse {
let default: String = String::from("");
- let search_attempt: sqlx::Result<Vec<Artist>, sqlx::Error> = match true {
- _ if get_args.id.is_some() => {
- let id: &str = &get_args.id.as_ref().unwrap_or(&default);
- app_state.database.select_artist_by_id(id).await
- }
+ if get_args.id.is_some() {
+ let id: &str = get_args.id.as_ref().unwrap_or(&default);
+ let search_attempt: sqlx::Result<Option<Artist>> =
+ app_state.database.select_artist_by_id(id).await;
+
+ return match search_attempt {
+ Ok(song_list) => HttpResponse::Ok().json(song_list),
+ Err(e) => HttpResponse::Ok().body(format!("{}", e)),
+ };
+ }
+
+ let search_attempt: sqlx::Result<Vec<Artist>, sqlx::Error> = match true {
_ if get_args.name.is_some() => {
let name: &str = &get_args.name.as_ref().unwrap_or(&default);
app_state.database.select_artists_by_name(name).await
@@ -33,3 +40,13 @@ pub async fn artist(
Err(e) => HttpResponse::Ok().body(format!("{}", e)),
}
}
+
+#[post("/artist")]
+pub async fn post_artist(
+// app_state: web::Data<AppState>,
+) -> HttpResponse {
+// if get_args.body.is_some() {
+// HttpResponse::Ok().json("{}");
+// }
+ HttpResponse::Ok().body("bad")
+}