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
82
83
84
85
86
use std::sync::Arc;

use anyhow::anyhow;
use reqwest::{redirect::Policy, Response, StatusCode};
use serde::Deserialize;
use serde_json::Value;

use crate::{campaign::CampaignBuilder, user::UserBuilder};

pub(crate) static API_HOST: &'static str = "https://tiltify.com";

#[derive(Deserialize, Debug)]
pub(crate) struct ResponseMeta {
    status: u32,
}

#[derive(Deserialize, Debug)]
pub(crate) struct ClientResponse<T> {
    meta: ResponseMeta,
    pub(crate) data: T,
}

pub(crate) struct ClientInner {
    access_token: String,
    client: reqwest::Client,
}

impl ClientInner {
    fn new<S>(access_token: S) -> crate::Result<Self>
    where
        S: Into<String>,
    {
        let client = reqwest::Client::builder()
            .redirect(Policy::none())
            .build()?;

        Ok(Self {
            access_token: access_token.into(),
            client: client,
        })
    }

    pub(crate) async fn get(
        &self,
        endpoint: &str,
        query: Option<&[(&str, &str)]>,
    ) -> crate::Result<Response> {
        let url = format!("{}{}", API_HOST, endpoint);
        let mut builder = self
            .client
            .get(url)
            .header("Authorization", format!("Bearer {}", &self.access_token));

        if let Some(query) = query {
            builder = builder.query(query);
        }

        let response = builder.send().await?;

        match response.status() {
            StatusCode::OK => Ok(response),
            // TODO: Handle errors much better...
            _ => Err(anyhow!(response.json::<Value>().await?.to_string())),
        }
    }
}

pub struct TiltifyClient {
    inner_client: Arc<ClientInner>,
}

impl TiltifyClient {
    pub fn new<S: Into<String>>(access_token: S) -> crate::Result<Self> {
        Ok(Self {
            inner_client: Arc::new(ClientInner::new(access_token)?),
        })
    }

    pub fn user<S: Into<String>>(&self, user_id: S) -> UserBuilder {
        UserBuilder::new(self.inner_client.clone(), user_id.into())
    }

    pub fn campaign<S: Into<String>>(&self, campaign_id: S) -> CampaignBuilder {
        CampaignBuilder::new(self.inner_client.clone(), campaign_id.into())
    }
}