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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
// #![allow(unused)]

use anyhow::{anyhow, Context};
use monitor_types::User;
use reqwest::StatusCode;
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use serde_json::json;

pub use futures_util;
pub use tokio_tungstenite;

pub use monitor_types as types;
use types::UpdateTarget;

mod build;
mod deployment;
mod group;
mod permissions;
mod procedure;
mod secret;
mod server;
mod update;

#[derive(Deserialize)]
struct MonitorEnv {
    monitor_url: String,
    monitor_token: Option<String>,
    monitor_username: Option<String>,
    monitor_password: Option<String>,
    monitor_secret: Option<String>,
}

#[derive(Clone)]
pub struct MonitorClient {
    http_client: reqwest::Client,
    url: String,
    token: String,
}

impl MonitorClient {
    pub fn new_with_token(url: &str, token: impl Into<String>) -> MonitorClient {
        MonitorClient {
            http_client: reqwest::Client::new(),
            url: parse_url(url),
            token: token.into(),
        }
    }

    pub async fn new_with_password(
        url: &str,
        username: impl Into<String>,
        password: impl Into<String>,
    ) -> anyhow::Result<MonitorClient> {
        let mut client = MonitorClient::new_with_token(url, "");
        let token = client
            .post_string(
                "/auth/local/login",
                json!({ "username": username.into(), "password": password.into() }),
            )
            .await
            .context("failed to log in with password")?;
        client.token = token;
        Ok(client)
    }

    pub async fn new_with_secret(
        url: &str,
        username: impl Into<String>,
        secret: impl Into<String>,
    ) -> anyhow::Result<MonitorClient> {
        let mut client = MonitorClient::new_with_token(url, "");
        let token = client
            .post_string(
                "/auth/secret/login",
                json!({ "username": username.into(), "secret": secret.into() }),
            )
            .await
            .context("failed to log in with secret")?;
        client.token = token;
        Ok(client)
    }

    pub async fn new_with_new_account(
        url: &str,
        username: impl Into<String>,
        password: impl Into<String>,
    ) -> anyhow::Result<MonitorClient> {
        let mut client = MonitorClient::new_with_token(url, "");
        client.token = client.create_user(username, password).await?;
        Ok(client)
    }

    pub async fn new_from_env() -> anyhow::Result<MonitorClient> {
        let env = envy::from_env::<MonitorEnv>()
            .context("failed to parse environment for monitor client")?;
        if let Some(token) = env.monitor_token {
            Ok(MonitorClient::new_with_token(&env.monitor_url, token))
        } else if let Some(password) = env.monitor_password {
            let username = env.monitor_username.ok_or(anyhow!(
                "must provide MONITOR_USERNAME to authenticate with MONITOR_PASSWORD"
            ))?;
            MonitorClient::new_with_password(&env.monitor_url, username, password).await
        } else if let Some(secret) = env.monitor_secret {
            let username = env.monitor_username.ok_or(anyhow!(
                "must provide MONITOR_USERNAME to authenticate with MONITOR_SECRET"
            ))?;
            MonitorClient::new_with_secret(&env.monitor_url, username, secret).await
        } else {
            Err(anyhow!("failed to initialize monitor client from env | must provide one of: (MONITOR_TOKEN), (MONITOR_USERNAME and MONITOR_PASSWORD), (MONITOR_USERNAME and MONITOR_SECRET)"))
        }
    }

    pub async fn create_user(
        &self,
        username: impl Into<String>,
        password: impl Into<String>,
    ) -> anyhow::Result<String> {
        self.post_string(
            "/auth/local/create_user",
            json!({ "username": username.into(), "password": password.into() }),
        )
        .await
        .context("failed at call to create_user")
    }

    pub async fn get_user(&self) -> anyhow::Result<User> {
        self.get("/api/user", Option::<()>::None)
            .await
            .context("failed at call to get_user")
    }

    pub async fn get_username(&self, user_id: &str) -> anyhow::Result<String> {
        self.get_string(&format!("/api/username/{user_id}"), Option::<()>::None)
            .await
            .context("failed at call to get_username")
    }

    pub async fn list_users(&self) -> anyhow::Result<Vec<User>> {
        self.get("/api/users", Option::<()>::None)
            .await
            .context("failed at call to list_users")
    }

    pub async fn get_github_webhook_base_url(&self) -> anyhow::Result<String> {
        self.get("/api/github_webhook_base_url", Option::<()>::None)
            .await
            .context("failed at call to get_github_webhook_base_url")
    }

    pub async fn update_description(
        &self,
        target: UpdateTarget,
        description: &str,
    ) -> anyhow::Result<()> {
        self.post(
            "/api/update_description",
            json!({ "target": target, "description": description }),
        )
        .await
        .context("failed at call to update_description")
    }

    async fn get<R: DeserializeOwned>(
        &self,
        endpoint: &str,
        query: impl Serialize,
    ) -> anyhow::Result<R> {
        let res = self
            .http_client
            .get(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token))
            .query(&query)
            .send()
            .await
            .context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.json().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn get_string(&self, endpoint: &str, query: impl Serialize) -> anyhow::Result<String> {
        let res = self
            .http_client
            .get(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token))
            .query(&query)
            .send()
            .await
            .context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.text().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn post<B: Serialize, R: DeserializeOwned>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<R> {
        let req = self
            .http_client
            .post(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.json().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn post_string<B: Serialize>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<String> {
        let req = self
            .http_client
            .post(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.text().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn patch<B: Serialize, R: DeserializeOwned>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<R> {
        let req = self
            .http_client
            .patch(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.json().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn _patch_string<B: Serialize>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<String> {
        let req = self
            .http_client
            .patch(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.text().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn delete<B: Serialize, R: DeserializeOwned>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<R> {
        let req = self
            .http_client
            .delete(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.json().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }

    async fn _delete_string<B: Serialize>(
        &self,
        endpoint: &str,
        body: impl Into<Option<B>>,
    ) -> anyhow::Result<String> {
        let req = self
            .http_client
            .delete(format!("{}{endpoint}", self.url))
            .header("Authorization", format!("Bearer {}", self.token));
        let req = if let Some(body) = body.into() {
            req.header("Content-Type", "application/json").json(&body)
        } else {
            req
        };
        let res = req.send().await.context("failed to reach monitor api")?;
        let status = res.status();
        if status == StatusCode::OK {
            match res.text().await {
                Ok(res) => Ok(res),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        } else {
            match res.text().await {
                Ok(res) => Err(anyhow!("{status}: {res}")),
                Err(e) => Err(anyhow!("{status}: {e:#?}")),
            }
        }
    }
}

fn parse_url(url: &str) -> String {
    if url.chars().nth(url.len() - 1).unwrap() == '/' {
        url[..url.len() - 1].to_string()
    } else {
        url.to_string()
    }
}