1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
use crate::database::{Delete, Song, SongPost, SongPut};
use crate::AppState;
use actix_web::{delete, get, post, put, web, HttpResponse};
use serde::Deserialize;
#[derive(Deserialize)]
struct SongQueryOptions {
id: Option<String>,
name: Option<String>,
artist: Option<String>,
album: Option<String>,
}
#[get("/song")]
pub async fn get_song(
app_state: web::Data<AppState>,
get_args: web::Query<SongQueryOptions>,
) -> HttpResponse {
let default = String::from("");
if get_args.id.is_some() {
let id: &str = get_args.id.as_ref().unwrap_or(&default);
let search_attempt: sqlx::Result<Option<Song>> =
app_state.database.select_song_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<Song>> = match true {
_ if get_args.name.is_some() => {
let name: &str = get_args.name.as_ref().unwrap_or(&default);
app_state.database.select_songs_by_name(name).await
}
_ if get_args.album.is_some() => {
let album: &str = get_args.album.as_ref().unwrap_or(&default);
app_state.database.select_songs_by_album(album).await
}
_ if get_args.artist.is_some() => {
let artist: &str = get_args.artist.as_ref().unwrap_or(&default);
app_state.database.select_songs_by_artist(artist).await
}
_ => app_state.database.select_songs().await,
};
match search_attempt {
Ok(song_list) => HttpResponse::Ok().json(song_list),
Err(e) => HttpResponse::Ok().body(format!("{}", e)),
}
}
#[post("/song")]
pub async fn post_song(
app_state: web::Data<AppState>,
post_data: web::Json<SongPost>,
) -> HttpResponse {
match app_state.database.create_song(post_data.into_inner()).await {
Ok(_) => HttpResponse::Ok().body("Post succeeded\n"),
Err(e) => HttpResponse::Ok().body(format!("{}", e)),
}
}
#[put("/song")]
pub async fn put_song(
app_state: web::Data<AppState>,
post_data: web::Json<SongPut>,
) -> HttpResponse {
match app_state.database.edit_song(post_data.into_inner()).await {
Ok(_) => HttpResponse::Ok().body("Put succeeded\n"),
Err(e) => HttpResponse::Ok().body(format!("{}", e)),
}
}
#[delete("/song")]
pub async fn delete_song(
app_state: web::Data<AppState>,
post_data: web::Json<Delete>,
) -> HttpResponse {
let id: i32 = post_data
.into_inner()
.id
.unwrap_or(String::default())
.parse::<i32>()
.unwrap_or(-1);
if id == -1 {
return HttpResponse::Ok().body("Invalid id value, code not executed\n");
}
match app_state.database.delete_song(id).await {
Ok(_) => HttpResponse::Ok().body("Deletion succeeded\n"),
Err(e) => HttpResponse::Ok().body(format!("There was an issue in the request:\n{}", e)),
}
}
|