summaryrefslogtreecommitdiff
path: root/src/routes/song.rs
blob: 4cc20e9a66d5e087c543ef5843858267801a9fe1 (plain)
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
use crate::database::Song;
use crate::AppState;
use actix_web::{get, 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 song(
    app_state: web::Data<AppState>,
    get_args: web::Query<SongQueryOptions>,
) -> HttpResponse {
    let search_attempt: sqlx::Result<Vec<Song>> = match true {
        _ if check_if_exists(&get_args.id) => {
            app_state
                .database
                .select_song_by_id(&get_args.id.clone().unwrap())
                .await
        }
        _ if check_if_exists(&get_args.name) => {
            app_state
                .database
                .select_songs_by_name(&get_args.name.clone().unwrap())
                .await
        }
        _ if check_if_exists(&get_args.album) => {
            app_state
                .database
                .select_songs_by_album(&get_args.album.clone().unwrap())
                .await
        }
        _ if check_if_exists(&get_args.artist) => {
            app_state
                .database
                .select_songs_by_artist(&get_args.artist.clone().unwrap())
                .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)),
    }
}

fn check_if_exists(value: &Option<String>) -> bool {
    match value {
        Some(_) => true,
        None => false,
    }
}