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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
pub mod images;
pub mod model;
pub mod bans;
pub mod kumo;
pub mod music;

use crate::{
    images::Images,
    bans::Bans,
    kumo::Kumo,
    music::Music,
};
use reqwest::{Client as HttpClient, RequestBuilder, Error};
use std::sync::Arc;
use reqwest::header::HeaderMap;
use serde::de::DeserializeOwned;

pub struct Client {
    pub token: String,
    pub images: Images,
    pub bans: Bans,
    pub kumo: Kumo,
    pub music: Music,
    pub http: Arc<HttpClient>
}

impl Client {
    pub fn new(token: impl ToString) -> Self {
        let mut default_auth_header =  HeaderMap::new();
        default_auth_header.insert("Authorization", format!("Bearer {}", token.to_string()).parse().expect("Cannot parse default headers"));
        let http_client = Arc::new(HttpClient::builder().default_headers(default_auth_header).build().expect("Something went wrong when creating http client"));

        Self {
            token: token.to_string(),
            images: Images::new(Arc::clone(&http_client)),
            bans: Bans::new(Arc::clone(&http_client)),
            kumo: Kumo::new(Arc::clone(&http_client)),
            music: Music::new(Arc::clone(&http_client)),
            http: http_client
        }
    }
}

pub(crate) async fn make_request<S: DeserializeOwned, E: DeserializeOwned>(c: RequestBuilder) -> HttpResult<S, E> {
    let response = c.send().await?;

    if response.status().as_u16() >= 500u16 { return Err(HttpResponse::InternalServerError(response.text().await?)) }

    return match response.status().as_u16() {
        200u16 => {
            let data = response.json::<S>().await?;
            Ok(Ok(data))
        },
        _ => {
            let err = response.json::<E>().await?;
            Ok(Err(err))
        }
    }
}

const BASE_ENDPOINT: &str = "https://api.ksoft.si";

pub(crate) fn endpoint(to: impl AsRef<str>) -> String {
    format!("{}{}", BASE_ENDPOINT, to.as_ref())
}


pub type HttpResult<S, E> = Result<ApiResponse<S, E>, HttpResponse>;
pub type ApiResponse<S, E> = Result<S, E>;

#[derive(Debug)]
pub enum HttpResponse {
    RequestFailed(reqwest::Error),
    InternalServerError(String)
}

impl From<reqwest::Error> for HttpResponse {
    fn from(e: Error) -> Self {
        HttpResponse::RequestFailed(e)
    }
}