summaryrefslogtreecommitdiff
path: root/src/routes/artist.rs
blob: 6a16ace1260f53634640e5ef5cee3b1f4acd8a86 (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
59
60
61
62
63
64
65
66
use crate::routes::Artist;
use crate::AppState;
use actix_web::{get, web, HttpResponse};
use serde::Deserialize;

#[derive(Deserialize)]
struct ArtistQueryOptions {
    id: Option<String>,
    name: Option<String>,
}

#[get("/artist")]
pub async fn artist(
    app_state: web::Data<AppState>,
    get_args: web::Query<ArtistQueryOptions>,
) -> HttpResponse {
    let search_attempt: sqlx::Result<Vec<Artist>>;

    match true {
        _ if check_if_exists(&get_args.id) => {
            search_attempt = sqlx::query_as!(
                Artist,
                "SELECT name, id
                FROM artist
                WHERE id=?",
                &get_args.id,
            )
            .fetch_all(&app_state.pool)
            .await;
        }
        _ if check_if_exists(&get_args.name) => {
            let new_name : String = format!("{}{}{}", "%", &get_args.name.clone().unwrap(), "%");
            search_attempt = sqlx::query_as!(
                Artist,
                "SELECT name, id
                FROM artist
                WHERE LOWER(name) LIKE LOWER(?)",
                new_name,
            )
            .fetch_all(&app_state.pool)
            .await;
        }
        _ => {
            search_attempt = sqlx::query_as!(
                Artist,
                "SELECT name, id
                FROM artist
                ",
            )
            .fetch_all(&app_state.pool)
            .await;
        }
    };

    match search_attempt {
        Ok(artist_list) => HttpResponse::Ok().json(artist_list),
        Err(e) => HttpResponse::Ok().body(format!("{}", e)),
    }
}

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