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
use std::io::Error as IoError;
use std::io::ErrorKind;
use std::fs;
use std::path::{PathBuf, Path};
use thiserror::Error;
use tracing::{warn, debug, trace, instrument};
use serde::{Deserialize, Serialize};
use serde_json::Error as JsonError;
use toml::de::Error as TomlError;
use http_types::{Response, Request, StatusCode, Url};
use fluvio::FluvioConfig;
use fluvio_types::defaults::CLI_CONFIG_PATH;
use url::ParseError;
use super::http::execute;
const DEFAULT_AGENT_REMOTE: &str = "https://cloud.fluvio.io";
#[derive(Debug)]
pub struct LoginAgent {
remote: String,
path: PathBuf,
session: Option<Credentials>,
}
impl LoginAgent {
pub fn new<P: Into<PathBuf>>(path: P) -> Self {
Self {
remote: DEFAULT_AGENT_REMOTE.to_string(),
path: path.into(),
session: None,
}
}
pub fn with_default_path() -> Result<Self, IoError> {
Ok(Self::new(Self::default_file_path()?))
}
pub fn with_remote<S: Into<String>>(mut self, remote: S) -> Self {
let remote = remote.into();
trace!(
remote = &*remote,
"LoginAgent configured with custom remote"
);
self.remote = remote;
self
}
fn default_file_path() -> Result<PathBuf, IoError> {
if let Some(mut login_path) = dirs::home_dir() {
login_path.push(CLI_CONFIG_PATH);
login_path.push("login");
Ok(login_path)
} else {
Err(IoError::new(
ErrorKind::InvalidInput,
"can't get login directory",
))
}
}
pub async fn download_profile(&mut self) -> Result<FluvioConfig, CloudError> {
let creds = match self.session.as_ref() {
Some(creds) => {
debug!("Using credentials from session");
creds
}
None => {
let loaded_creds = Credentials::try_load(&self.path)?;
self.session.replace(loaded_creds);
self.session.as_ref().unwrap()
}
};
let cluster_profile = self.try_download_profile(creds).await?;
Ok(cluster_profile)
}
#[instrument(
skip(self, creds),
fields(
remote = &*self.remote,
path = "/api/v1/downloadProfile"
)
)]
async fn try_download_profile(&self, creds: &Credentials) -> Result<FluvioConfig, CloudError> {
let mut response = download_profile(&self.remote, creds).await?;
trace!("Response: {:#?}", &response);
debug!(status = response.status() as u16);
match response.status() {
StatusCode::Ok => {
debug!("Successfully authenticated with token");
let config: FluvioConfig = response.body_json().await?;
Ok(config)
}
_ => {
warn!("Failed to download profile");
Err(CloudError::ProfileDownloadError)
}
}
}
#[allow(clippy::unit_arg)]
#[instrument(
skip(self, password),
fields(
remote = &*self.remote,
path = "/api/v1/loginUser",
),
)]
pub async fn authenticate(
&mut self,
email: String,
password: String,
) -> Result<(), CloudError> {
let mut response = login_user(&self.remote, email.clone(), password).await?;
match response.status() {
StatusCode::Ok => {
let creds = response.body_json::<Credentials>().await?;
self.save_credentials(creds).await?;
Ok(())
}
_ => {
warn!("Failed to login");
Err(CloudError::AuthenticationError(email))
}
}
}
async fn save_credentials(&mut self, creds: Credentials) -> Result<(), CloudError> {
creds.try_save(&self.path)?;
self.session.replace(creds);
Ok(())
}
}
#[derive(Debug, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
struct Credentials {
id: String,
token: String,
}
impl Credentials {
fn try_load<P: AsRef<Path>>(path: P) -> Result<Self, CloudError> {
let file_str = fs::read_to_string(path)
.map_err(|source| CloudError::UnableToLoadCredentials { source })?;
let creds: Credentials = toml::from_str(&*file_str)
.map_err(|source| CloudError::UnableToParseCredentials { source })?;
Ok(creds)
}
fn try_save<P: AsRef<Path>>(&self, path: P) -> Result<(), IoError> {
let parent = path.as_ref().parent().ok_or_else(|| {
IoError::new(ErrorKind::NotFound, "failed to open credentials folder")
})?;
fs::create_dir_all(parent)?;
fs::write(path, toml::to_string(self).unwrap().as_bytes())
}
}
#[derive(Debug, Serialize)]
struct LoginRequest {
email: String,
password: String,
}
async fn login_user(host: &str, email: String, password: String) -> Result<Response, CloudError> {
let url = Url::parse(&format!("{}/api/v1/loginUser", host))?;
let mut request = Request::post(url);
let login = LoginRequest { email, password };
let body = serde_json::to_string(&login).unwrap();
request.set_body(body);
let response = execute(request).await?;
Ok(response)
}
async fn download_profile(host: &str, creds: &Credentials) -> Result<Response, CloudError> {
let url = Url::parse(&format!("{}/api/v1/downloadProfile", host))?;
let mut request = Request::get(url);
request.append_header("Authorization", &*creds.token);
let response = execute(request).await?;
Ok(response)
}
#[derive(Error, Debug)]
pub enum CloudError {
#[error("Failed to download cloud profile")]
ProfileDownloadError,
#[error("Failed to authenticate with username: {0}")]
AuthenticationError(String),
#[error("Failed to load cloud credentials")]
UnableToLoadCredentials { source: IoError },
#[error("Failed to parse login token from file")]
UnableToParseCredentials { source: TomlError },
#[error("Failed to make HTTP request to Fluvio cloud")]
HttpError { source: HttpError },
#[error("IO error")]
IoError {
#[from]
source: IoError,
},
#[error("Failed to read JSON")]
JsonError {
#[from]
source: JsonError,
},
#[error("Failed to parse URL")]
UrlError {
#[from]
source: ParseError,
},
}
#[derive(Error, Debug)]
#[error("An HTTP error occurred: {inner}")]
pub struct HttpError {
inner: http_types::Error,
}
impl From<http_types::Error> for CloudError {
fn from(inner: http_types::Error) -> Self {
Self::HttpError {
source: HttpError { inner },
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use fluvio_future::test_async;
#[test_async]
async fn test_save_credentials() -> Result<(), IoError> {
let mut tmp = std::env::temp_dir();
tmp.push("test_credentials");
let creds = Credentials {
id: "Johnny Appleseed".to_string(),
token: "Token tokenson".to_string(),
};
let write_result = creds.try_save(&tmp);
assert!(write_result.is_ok());
let result = Credentials::try_load(tmp);
let loaded_creds = result.unwrap();
assert_eq!(creds, loaded_creds);
Ok(())
}
#[test]
fn test_custom_remote() -> Result<(), IoError> {
let _agent = LoginAgent::with_default_path()?.with_remote("localhost:3030");
Ok(())
}
}