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
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
use crate::event_stream::EventStream;
use crate::rest::events::{Event, EventType};
use crate::rest::system;
use crate::routes::*;
use crate::utils::QueryChars;
use crate::Fallible;
use anyhow::bail;
use bytes::buf::BufExt as _;
use bytes::Buf;
use http::header::HeaderValue;
use http::request::Request;
use http::uri::{Authority, Parts as UriParts, PathAndQuery, Scheme, Uri};
use hyper::client::HttpConnector;
use hyper::{Client as HyperClient, Method};
use serde::de::DeserializeOwned as Deserialize;

static API_HEADER_KEY: &str = "X-API-Key";
static API_DEFAULT_AUTHORITY: &str = "127.0.0.1:8384";
static EMPTY_EVENT_SUBSCRIPTION: Vec<EventType> = Vec::new();

pub struct Client {
    client: HyperClient<HttpConnector>,
    authority: Authority,
    api_key: String,
}

impl Client {
    pub fn new(api_key: impl Into<String>) -> Self {
        Self {
            client: HyperClient::new(),
            api_key: api_key.into(),
            authority: Authority::from_static(API_DEFAULT_AUTHORITY),
        }
    }

    pub fn new_with_hyper_client(
        client: HyperClient<HttpConnector>,
        api_key: impl Into<String>,
    ) -> Self {
        Self {
            client,
            api_key: api_key.into(),
            authority: Authority::from_static(API_DEFAULT_AUTHORITY),
        }
    }

    pub fn new_with_authority(api_key: impl Into<String>, authority: Authority) -> Self {
        Self {
            client: HyperClient::new(),
            api_key: api_key.into(),
            authority,
        }
    }

    pub fn new_with_hyper_client_and_authority(
        client: HyperClient<HttpConnector>,
        api_key: impl Into<String>,
        authority: Authority,
    ) -> Self {
        Self {
            client,
            api_key: api_key.into(),
            authority,
        }
    }

    pub(crate) async fn request<D: Deserialize, T: AsRef<[u8]> + 'static>(
        &self,
        method: Method,
        path_and_query: T,
    ) -> Fallible<D> {
        let mut uri_parts = UriParts::default();
        uri_parts.authority = Some(self.authority.clone());
        uri_parts.scheme = Some(Scheme::HTTP);
        uri_parts.path_and_query = Some(PathAndQuery::from_maybe_shared(path_and_query)?);
        let uri = Uri::from_parts(uri_parts)?;
        let mut request = Request::new(Default::default());
        *request.uri_mut() = uri;
        *request.method_mut() = method;
        request
            .headers_mut()
            .insert(API_HEADER_KEY, HeaderValue::from_str(&self.api_key)?);
        let resp = self.client.request(request).await?;
        let status_code = resp.status().as_u16();
        let body = hyper::body::aggregate(resp).await?;
        if status_code < 200 || status_code > 299 {
            bail!(
                "got http status code '{}' with following msg:\n {}",
                status_code,
                String::from_utf8_lossy(body.bytes())
            )
        } else {
            Ok(serde_json::from_reader(body.reader())?)
        }
    }

    pub async fn get_all_events(
        &self,
        since: Option<u64>,
        limit: Option<u64>,
    ) -> Fallible<Vec<Event>> {
        self.get_events(since, limit, &EMPTY_EVENT_SUBSCRIPTION)
            .await
    }

    pub async fn get_events(
        &self,
        since: Option<u64>,
        limit: Option<u64>,
        events: impl AsRef<[EventType]>,
    ) -> Fallible<Vec<Event>> {
        let mut path_and_query = EVENTS_PATH.to_owned();
        let events = events.as_ref();
        let mut query_chars = QueryChars::new();
        if !events.is_empty() {
            let events = serde_json::to_string(&events)?
                .chars()
                .filter(|e| match e {
                    '\"' => false,
                    '[' => false,
                    ']' => false,
                    _ => true,
                })
                .collect::<String>();
            path_and_query.push(query_chars.next_char());
            path_and_query.push_str("events=");
            path_and_query.push_str(events.as_ref());
        }
        if let Some(since) = since {
            path_and_query.push(query_chars.next_char());
            path_and_query.push_str("since=");
            path_and_query.push_str(since.to_string().as_ref());
        }
        if let Some(limit) = limit {
            path_and_query.push(query_chars.next_char());
            path_and_query.push_str("limit=");
            path_and_query.push_str(limit.to_string().as_ref());
        }
        self.request(Method::GET, path_and_query).await
    }

    pub fn subscribe_to(self, events: impl Into<Vec<EventType>>) -> EventStream {
        EventStream::new(self, events.into())
    }

    pub fn subscribe_to_all(self) -> EventStream {
        EventStream::new(self, EMPTY_EVENT_SUBSCRIPTION.clone())
    }

    pub async fn get_system_connections(&self) -> Fallible<system::connections::Connections> {
        self.request(Method::GET, SYSTEM_CONNECTIONS_PATH).await
    }

    pub async fn get_system_debug(&self) -> Fallible<system::debug::DebugInfo> {
        self.request(Method::GET, SYSTEM_DEBUG_PATH).await
    }

    pub async fn get_system_discovery(&self) -> Fallible<system::discovery::Discovery> {
        self.request(Method::GET, SYSTEM_DISCOVERY_PATH).await
    }

    pub async fn get_system_log(&self) -> Fallible<system::log::Log> {
        self.request(Method::GET, SYSTEM_LOG_PATH).await
    }

    pub async fn get_system_error(&self) -> Fallible<system::error::Error> {
        self.request(Method::GET, SYSTEM_ERROR_PATH).await
    }

    pub async fn get_system_ping(&self) -> Fallible<system::ping::Ping> {
        self.request(Method::GET, SYSTEM_PING_PATH).await
    }

    pub async fn get_system_upgrade(&self) -> Fallible<system::upgrade::UpgradeInfo> {
        self.request(Method::GET, SYSTEM_UPGRADE_PATH).await
    }

    pub async fn get_system_version(&self) -> Fallible<system::version::Version> {
        self.request(Method::GET, SYSTEM_VERSION_PATH).await
    }
}