summaryrefslogtreecommitdiff
path: root/src/api/search_results.rs
blob: cd47054ef882b7f3c295c151b76431b0e7f10a3a (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
use crate::database::album::Album;
use crate::database::artist::Artist;
use crate::database::song::Song;
use crate::AppState;
use actix_web::{get, web, HttpResponse};
use serde::Deserialize;
use utoipa::IntoParams;

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

#[utoipa::path(
    params(SearchQueryOptions),
    context_path = "/api",
    description = "Performs a search based on the 'name' parameter and returns a list.",
    responses(
        (status = 200, description = "Return a list of artists, albums and songs"),
        (status = 400, description = "Errors found, unfulfilled request"),
    ),
)]
#[get("/search-results")]
pub async fn search_results(
    app_state: web::Data<AppState>,
    get_args: web::Query<SearchQueryOptions>,
) -> HttpResponse {
    let search_attempt: (
        sqlx::Result<Vec<Artist>, sqlx::Error>,
        sqlx::Result<Vec<Album>, sqlx::Error>,
        sqlx::Result<Vec<Song>, sqlx::Error>,
    ) = match true {
        _ if get_args.name.is_some() => {
            app_state
                .database
                .search_results_by_name(&get_args.name.clone().unwrap())
                .await
        }
        _ => (
            Err(sqlx::Error::RowNotFound),
            Err(sqlx::Error::RowNotFound),
            Err(sqlx::Error::RowNotFound),
        ),
    };

    return HttpResponse::Ok().json((
        search_attempt.0.unwrap_or(Vec::new()),
        search_attempt.1.unwrap_or(Vec::new()),
        search_attempt.2.unwrap_or(Vec::new()),
    ));
}