summaryrefslogtreecommitdiffstats
path: root/src/api/services.rs
blob: 8c4860bac5ba4008e4986626e5f60820015ddd21 (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
use axum::{
    extract::{Path, Query, State},
    routing::get,
    Json,
};
use serde::{Deserialize, Serialize};

use crate::{AppState, Error, Status};

pub fn router() -> axum::Router<AppState> {
    axum::Router::new()
        .route("/", get(services))
        .route("/:name", get(service))
}

#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ServiceQuery {
    pub name: Option<String>,
    pub status: Option<Status>,
}

impl ServiceQuery {
    pub fn filter(&self, value: &(String, Status)) -> bool {
        !self.name.as_ref().is_some_and(|n| *n != value.0)
            && !self.status.as_ref().is_some_and(|s| *s != value.1)
    }
}

pub async fn services(
    Query(query): Query<ServiceQuery>,
    State(state): State<AppState>,
) -> Json<Vec<(String, Status)>> {
    Json(
        state
            .statuses()
            .into_iter()
            .filter(|item| query.filter(item))
            .collect(),
    )
}

pub async fn service(
    Path(name): Path<String>,
    State(state): State<AppState>,
) -> Result<Status, Error> {
    state
        .status(&name)
        .ok_or_else(|| Error::ServiceNotFound(name))
}