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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apach

//! Catalog introspection HTTP endpoints.

use axum::response::IntoResponse;
use axum::TypedHeader;
use headers::ContentType;
use http::StatusCode;

use crate::http::AuthedClient;

pub async fn handle_catalog_dump(mut client: AuthedClient) -> impl IntoResponse {
    match client.client.dump_catalog().await.map(|c| c.into_string()) {
        Ok(res) => Ok((TypedHeader(ContentType::json()), res)),
        Err(e) => Err((StatusCode::INTERNAL_SERVER_ERROR, e.to_string())),
    }
}

pub async fn handle_catalog_check(mut client: AuthedClient) -> impl IntoResponse {
    let response = match client.client.check_catalog().await {
        Ok(_) => serde_json::Value::String("".to_string()),
        Err(inconsistencies) => serde_json::json!({ "err": inconsistencies }),
    };
    (TypedHeader(ContentType::json()), response.to_string())
}

pub async fn handle_coordinator_check(mut client: AuthedClient) -> impl IntoResponse {
    let response = match client.client.check_coordinator().await {
        Ok(_) => serde_json::Value::String("".to_string()),
        Err(inconsistencies) => serde_json::json!({ "err": inconsistencies }),
    };
    (TypedHeader(ContentType::json()), response.to_string())
}

pub async fn handle_coordinator_dump(mut client: AuthedClient) -> impl IntoResponse {
    let (status, result) = match client.client.dump_coordinator_state().await {
        Ok(dump) => (StatusCode::OK, dump),
        Err(e) => (
            StatusCode::INTERNAL_SERVER_ERROR,
            serde_json::json!({ "err": e.to_string() }),
        ),
    };
    (status, TypedHeader(ContentType::json()), result.to_string())
}