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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
use crate::machines::{
    CommandResponse, EventResponse, MachineRequest, MachineResponse, MachineState, ProcessResponse,
};
use crate::API_BASE_URL;
use reqwest::Client;
use std::error::Error;
use tracing::debug;

pub struct MachineManager {
    client: Client,
    api_token: String,
}

impl MachineManager {
    pub fn new(client: Client, api_token: String) -> Self {
        Self { client, api_token }
    }

    pub async fn create(
        &self,
        app_name: &str,
        request_data: MachineRequest,
    ) -> Result<MachineResponse, Box<dyn Error>> {
        debug!("Creating machine for app: {}", app_name);
        let url = format!("{}/apps/{}/machines", API_BASE_URL, app_name);

        debug!("Request data: {:#?}", request_data);
        let response = self
            .client
            .post(&url)
            .bearer_auth(&self.api_token)
            .header("Content-Type", "application/json")
            .json(&request_data)
            .send()
            .await?;

        debug!("Response: {:#?}", response);
        if response.status().is_success() {
            let response_text = response.text().await?;
            debug!("Raw JSON response body: {}", response_text);

            let response_body: MachineResponse = serde_json::from_str(&response_text)?;
            Ok(response_body)
        } else {
            Err(format!("Request failed with status: {}", response.status()).into())
        }
    }

    pub async fn list(&self, app_name: &str) -> Result<Vec<MachineResponse>, Box<dyn Error>> {
        let url = format!("{}/apps/{}/machines", API_BASE_URL, app_name);

        let response = self
            .client
            .get(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status() == reqwest::StatusCode::OK {
            let response_text = response.text().await?;
            debug!("Raw JSON response body: {}", response_text);
            let machines: Vec<MachineResponse> = serde_json::from_str(&response_text)?;
            debug!("List of machines: {:?}", machines);
            Ok(machines)
        } else {
            debug!("Failed to list machines: {:?}", response.status());
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                "Failed to list machines",
            )))
        }
    }

    pub async fn stop(
        &self,
        app_name: &str,
        machine_id: &str,
        instance_id: &str,
    ) -> Result<(), Box<dyn Error>> {
        debug!("Stopping machine {}", machine_id);
        let url = format!(
            "{}/apps/{}/machines/{}/stop",
            API_BASE_URL, app_name, machine_id
        );

        let response = self
            .client
            .post(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status() == reqwest::StatusCode::OK {
            debug!("Stopped machine {}", machine_id);

            self.wait_for_machine_state(
                app_name,
                machine_id,
                MachineState::Stopped,
                None,
                Some(instance_id),
            )
            .await?;

            Ok(())
        } else {
            debug!(
                "Failed to stop machine {}: {:?}",
                machine_id,
                response.status()
            );
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                "Failed to stop machine",
            )))
        }
    }

    pub async fn start(&self, app_name: &str, machine_id: &str) -> Result<(), Box<dyn Error>> {
        debug!("Starting machine {}", machine_id);
        let url = format!(
            "{}/apps/{}/machines/{}/start",
            API_BASE_URL, app_name, machine_id
        );

        let response = self
            .client
            .post(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status() == reqwest::StatusCode::OK {
            debug!("Started machine {}", machine_id);
            self.wait_for_machine_state(app_name, machine_id, MachineState::Started, None, None)
                .await?;

            Ok(())
        } else {
            debug!(
                "Failed to start machine {}: {:?}",
                machine_id,
                response.status()
            );
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                "Failed to start machine",
            )))
        }
    }

    pub async fn delete(
        &self,
        app_name: &str,
        machine_id: &str,
        force: bool,
    ) -> Result<(), Box<dyn Error>> {
        debug!("Deleting machine {}", machine_id);
        let mut url = format!("{}/apps/{}/machines/{}", API_BASE_URL, app_name, machine_id);

        if force {
            url.push_str("?force=true");
        }

        let response = self
            .client
            .delete(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status() == reqwest::StatusCode::OK {
            debug!("Deleted machine {}", machine_id);
            self.wait_for_machine_state(app_name, machine_id, MachineState::Destroyed, None, None)
                .await?;

            Ok(())
        } else {
            debug!(
                "Failed to delete machine {}: {:?}",
                machine_id,
                response.status()
            );
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                "Failed to delete machine",
            )))
        }
    }

    pub async fn wait_for_machine_state(
        &self,
        app_name: &str,
        machine_id: &str,
        desired_state: MachineState,
        timeout: Option<u64>,
        instance_id: Option<&str>,
    ) -> Result<MachineResponse, Box<dyn Error>> {
        debug!(
            "Waiting for machine {} to reach state: {}",
            machine_id, desired_state
        );
        let url = format!(
            "{}/apps/{}/machines/{}/wait",
            API_BASE_URL, app_name, machine_id
        );

        let mut query_params = vec![("state", desired_state.to_string())];

        if let Some(timeout_value) = timeout {
            query_params.push(("timeout", timeout_value.to_string()));
        }

        if let Some(instance_id_value) = instance_id {
            query_params.push(("instance_id", instance_id_value.to_string()));
        }

        let response = self
            .client
            .get(&url)
            .bearer_auth(&self.api_token)
            .query(&query_params)
            .send()
            .await?;

        if response.status().is_success() {
            let wait_for_state_response: MachineResponse = response.json().await?;
            Ok(wait_for_state_response)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to wait for state: {:?}", response.status()),
            )))
        }
    }

    pub async fn update_machine(
        &self,
        app_name: &str,
        machine_id: &str,
        #[allow(unused_variables)] instance_id: &str,
        machine_request: MachineRequest,
    ) -> Result<MachineResponse, Box<dyn Error>> {
        debug!("Updating machine {}", machine_id);
        let url = format!("{}/apps/{}/machines/{}", API_BASE_URL, app_name, machine_id);

        let response = self
            .client
            .post(&url)
            .bearer_auth(&self.api_token)
            .json(&machine_request)
            .send()
            .await?;

        if response.status().is_success() {
            let machine_response: MachineResponse = response.json().await?;

            // self.wait_for_machine_state(
            //     app_name,
            //     machine_id,
            //     MachineState::Started,
            //     None,
            //     Some(instance_id),
            // )
            // .await?;

            Ok(machine_response)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to update machine: {:?}", response.status()),
            )))
        }
    }

    pub async fn restart_machine(
        &self,
        app_name: &str,
        machine_id: &str,
        instance_id: &str,
    ) -> Result<MachineResponse, Box<dyn Error>> {
        debug!("Restarting machine {}", machine_id);
        let url = format!(
            "{}/apps/{}/machines/{}/restart",
            API_BASE_URL, app_name, machine_id
        );

        let response = self
            .client
            .post(&url) // POST for restarting a machine
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status().is_success() {
            let machine_response: MachineResponse = response.json().await?;

            self.wait_for_machine_state(
                app_name,
                machine_id,
                MachineState::Started,
                None,
                Some(instance_id),
            )
            .await?;

            Ok(machine_response)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to restart machine: {:?}", response.status()),
            )))
        }
    }

    pub async fn list_events(
        &self,
        app_name: &str,
        machine_id: &str,
    ) -> Result<Vec<EventResponse>, Box<dyn Error>> {
        let url = format!(
            "{}/apps/{}/machines/{}/events",
            API_BASE_URL, app_name, machine_id
        );

        let response = self
            .client
            .get(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status().is_success() {
            let events: Vec<EventResponse> = response.json().await?;
            Ok(events)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to list machine events: {:?}", response.status()),
            )))
        }
    }

    pub async fn list_processes(
        &self,
        app_name: &str,
        machine_id: &str,
    ) -> Result<Vec<ProcessResponse>, Box<dyn Error>> {
        let url = format!(
            "{}/apps/{}/machines/{}/ps",
            API_BASE_URL, app_name, machine_id
        );

        let response = self
            .client
            .get(&url)
            .bearer_auth(&self.api_token)
            .send()
            .await?;

        if response.status().is_success() {
            let processes: Vec<ProcessResponse> = response.json().await?;
            Ok(processes)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to list processes: {:?}", response.status()),
            )))
        }
    }

    pub async fn execute_command(
        &self,
        app_name: &str,
        machine_id: &str,
        command: Vec<&str>,
        timeout: Option<u64>,
    ) -> Result<CommandResponse, Box<dyn Error>> {
        debug!(
            "Executing command on machine {} with command: {:?}",
            machine_id, command
        );
        let url = format!(
            "{}/apps/{}/machines/{}/exec",
            API_BASE_URL, app_name, machine_id
        );

        let mut body = serde_json::json!({
            "command": command,
        });
        if let Some(timeout_value) = timeout {
            body["timeout"] = serde_json::json!(timeout_value);
        }

        let response = self
            .client
            .post(&url)
            .bearer_auth(&self.api_token)
            .json(&body)
            .send()
            .await?;

        if response.status().is_success() {
            let command_response: CommandResponse = response.json().await?;
            Ok(command_response)
        } else {
            Err(Box::new(std::io::Error::new(
                std::io::ErrorKind::Other,
                format!("Failed to execute command: {:?}", response.status()),
            )))
        }
    }
}