DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 7d5486e5144305656353cbfcdfd8a177c99cb88b deck-builder/client-old-for-ref/src/api/mod.rs -rw-r--r-- 1.1 KiB
7d5486e5Jonni Liljamo feat(client): advanced roll action, log configs 1 year, 4 months ago
                                                                                
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
/*
 * This file is part of sdbclient
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use reqwest;
use serde::{Deserialize, Serialize};

pub mod game;
pub mod user;

#[derive(Debug, Deserialize, Serialize)]
pub struct APIError {
    pub id: u16,
    pub name: String,
    pub description: String,
}

#[derive(Debug, Deserialize, Serialize)]
pub struct APIErrorWrapper {
    pub error: APIError,
}

impl std::fmt::Display for APIErrorWrapper {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{} {}", self.error.id, self.error.description)
    }
}

#[derive(Serialize, Deserialize)]
pub struct APIInfo {
    pub info: String,
    pub ver: String,
}

pub fn info(api_address: String) -> Result<APIInfo, String> {
    let client = reqwest::blocking::Client::new();

    let resp = client.get(&format!("{}/info", api_address)).send();
    match resp {
        Ok(r) => Ok(r.json().unwrap()),
        Err(_) => Err("Could not reach API".to_string()),
    }
}