nebulous 0.1.86

A globally distributed container orchestrator
Documentation
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
use crate::config::GlobalConfig;
use crate::models::V1StreamData;
use crate::resources::v1::containers::models::{
    V1Container, V1ContainerRequest, V1ContainerSearch, V1Containers, V1UpdateContainer,
};
use crate::resources::v1::processors::models::{
    V1Processor, V1ProcessorRequest, V1ProcessorScaleRequest, V1Processors, V1UpdateProcessor,
};
use crate::resources::v1::secrets::models::{V1Secret, V1SecretRequest, V1Secrets};
use reqwest::Client as HttpClient;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::error::Error;

#[derive(Debug)]
pub struct NebulousClient {
    pub http_client: HttpClient,
    pub base_url: String,
    pub api_key: String,
}

/// A simple DTO for container responses.
#[derive(Debug, Serialize, Deserialize)]
pub struct ContainerResponse {
    pub metadata: ContainerMetadata,
}

/// The metadata part of the container response.
#[derive(Debug, Serialize, Deserialize)]
pub struct ContainerMetadata {
    pub id: Option<String>,
    pub name: Option<String>,
}

/// A simple DTO for secret responses.
#[derive(Debug, Serialize, Deserialize)]
pub struct SecretResponse {
    pub metadata: SecretMetadata,
}

/// The metadata part of the secret response.
#[derive(Debug, Serialize, Deserialize)]
pub struct SecretMetadata {
    pub id: Option<String>,
    pub name: Option<String>,
}

impl NebulousClient {
    /// Creates a new NebulousClient by reading from the global config.
    /// You could also pass server and api key directly if preferred.
    pub fn new_from_config() -> Result<Self, Box<dyn Error>> {
        let config = GlobalConfig::read()?;
        let current_server = config
            .get_current_server_config()
            .ok_or("No current server config found")?;
        let server_url = current_server
            .server
            .clone()
            .ok_or("Server URL not found in config")?;
        let api = current_server
            .api_key
            .clone()
            .ok_or("API key not found in config")?;

        Ok(Self {
            http_client: HttpClient::new(),
            base_url: server_url,
            api_key: api,
        })
    }

    /// Convenience constructor if you already have the values on hand.
    pub fn new<S: Into<String>>(server: S, api_key: S) -> Self {
        Self {
            http_client: HttpClient::new(),
            base_url: server.into(),
            api_key: api_key.into(),
        }
    }

    /// Creates a container using the Nebulous API.
    pub async fn create_container(
        &self,
        container_request: &V1ContainerRequest,
    ) -> Result<V1Container, Box<dyn Error>> {
        let url = format!("{}/v1/containers", self.base_url);

        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(container_request)
            .send()
            .await?;

        if response.status().is_success() {
            let container: Value = response.json().await?;
            // If you just need the raw JSON, return it directly.
            // Here, we map it into a typed struct.
            // Adjust as needed for your actual response shape.
            let typed: V1Container = serde_json::from_value(container)?;
            Ok(typed)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to create container: {}", error_text).into())
        }
    }

    /// Creates a secret using the Nebulous API.
    pub async fn create_secret(
        &self,
        secret_request: &V1SecretRequest,
    ) -> Result<V1Secret, Box<dyn Error>> {
        let url = format!("{}/v1/secrets", self.base_url);

        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(secret_request)
            .send()
            .await?;

        if response.status().is_success() {
            let raw = response.json::<Value>().await?;
            let typed: V1Secret = serde_json::from_value(raw)?;
            Ok(typed)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to create secret: {}", error_text).into())
        }
    }

    // ─────────────────────────────────────────────────────────────────────────────
    // GET METHODS (with optional namespace/name)
    // ─────────────────────────────────────────────────────────────────────────────

    /// Gets a specific container by namespace and name, returning a typed `V1Container`.
    /// `namespace` cannot be empty
    /// `name` cannot be empty.
    pub async fn get_container(
        &self,
        name: &str,
        namespace: &str,
    ) -> Result<V1Container, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/containers/{}/{}", self.base_url, namespace, name);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let container = response.json::<V1Container>().await?;
            Ok(container)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to get container {}/{}: {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Lists all containers, returning a typed `V1Containers`.
    pub async fn get_containers(&self) -> Result<V1Containers, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/containers", self.base_url);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let containers = response.json::<V1Containers>().await?;
            Ok(containers)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to list containers: {}", error_text).into())
        }
    }

    /// Gets a specific secret by namespace and name, returning a typed `V1Secret`.
    /// `name` cannot be empty.
    pub async fn get_secret(
        &self,
        name: &str,
        namespace: &str,
    ) -> Result<V1Secret, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/secrets/{}/{}", self.base_url, namespace, name);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let secret = response.json::<V1Secret>().await?;
            Ok(secret)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to get secret {}/{}: {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Lists all secrets, returning a typed `V1Secrets`.
    pub async fn get_secrets(&self) -> Result<V1Secrets, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/secrets", self.base_url);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let secrets = response.json::<V1Secrets>().await?;
            Ok(secrets)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to list secrets: {}", error_text).into())
        }
    }

    // ─────────────────────────────────────────────────────────────────────────────
    // DELETE METHODS
    // ─────────────────────────────────────────────────────────────────────────────

    /// Deletes a container by `/:namespace/:name`.  
    pub async fn delete_container(
        &self,
        name: &str,
        namespace: &str,
    ) -> Result<(), Box<dyn Error>> {
        let url = format!("{}/v1/containers/{}/{}", self.base_url, namespace, name);

        let response = self
            .http_client
            .delete(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            println!("Container '{}/{}' successfully deleted", namespace, name);
            Ok(())
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to delete container '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Deletes a secret by `/:namespace/:name`.  
    pub async fn delete_secret(&self, name: &str, namespace: &str) -> Result<(), Box<dyn Error>> {
        let url = format!("{}/v1/secrets/{}/{}", self.base_url, namespace, name);

        let response = self
            .http_client
            .delete(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            println!("Secret '{}/{}' successfully deleted", namespace, name);
            Ok(())
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to delete secret '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    // ─────────────────────────────────────────────────────────────────────────────
    // PATCH METHODS
    // ─────────────────────────────────────────────────────────────────────────────

    /// PATCH a container by `/:namespace/:name`.  
    pub async fn patch_container(
        &self,
        name: &str,
        namespace: &str,
        update_request: &V1UpdateContainer,
    ) -> Result<V1Container, Box<dyn Error>> {
        let url = format!("{}/v1/containers/{}/{}", self.base_url, namespace, name);

        let response = self
            .http_client
            .patch(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(update_request)
            .send()
            .await?;

        if response.status().is_success() {
            let container = response.json::<V1Container>().await?;
            Ok(container)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to patch container '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    // ─────────────────────────────────────────────────────────────────────────────
    // SEARCH METHODS
    // ─────────────────────────────────────────────────────────────────────────────

    pub async fn search_containers(
        &self,
        search_request: &V1ContainerSearch,
    ) -> Result<V1Containers, Box<dyn Error>> {
        let url = format!("{}/v1/containers/search", self.base_url);
        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(search_request)
            .send()
            .await?;

        if response.status().is_success() {
            let containers = response.json::<V1Containers>().await?;
            Ok(containers)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to search containers: {}", error_text).into())
        }
    }

    // ─────────────────────────────────────────────────────────────────────────────
    // PROCESSOR METHODS
    // ─────────────────────────────────────────────────────────────────────────────

    /// Creates a processor using the Nebulous API.
    pub async fn create_processor(
        &self,
        processor_request: &V1ProcessorRequest,
    ) -> Result<V1Processor, Box<dyn Error>> {
        let url = format!("{}/v1/processors", self.base_url);

        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(processor_request)
            .send()
            .await?;

        if response.status().is_success() {
            let raw = response.json::<Value>().await?;
            let typed: V1Processor = serde_json::from_value(raw)?;
            Ok(typed)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to create processor: {}", error_text).into())
        }
    }

    /// Lists all processors, returning a typed `V1Processors`.
    pub async fn list_processors(&self) -> Result<V1Processors, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/processors", self.base_url);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let processors = response.json::<V1Processors>().await?;
            Ok(processors)
        } else {
            let error_text = response.text().await?;
            Err(format!("Failed to list processors: {}", error_text).into())
        }
    }

    /// Gets a specific processor by namespace and name, returning a typed `V1Processor`.
    /// `name` cannot be empty.
    pub async fn get_processor(
        &self,
        name: &str,
        namespace: &str,
    ) -> Result<V1Processor, Box<dyn std::error::Error>> {
        let url = format!("{}/v1/processors/{}/{}", self.base_url, namespace, name);
        let response = self
            .http_client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            let processor = response.json::<V1Processor>().await?;
            Ok(processor)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to get processor {}/{}: {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Deletes a processor by `/:namespace/:name`.
    pub async fn delete_processor(
        &self,
        name: &str,
        namespace: &str,
    ) -> Result<(), Box<dyn Error>> {
        let url = format!("{}/v1/processors/{}/{}", self.base_url, namespace, name);

        let response = self
            .http_client
            .delete(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .send()
            .await?;

        if response.status().is_success() {
            println!("Processor '{}/{}' successfully deleted", namespace, name);
            Ok(())
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to delete processor '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Updates (PATCH) a processor by `/:namespace/:name`.
    pub async fn update_processor(
        &self,
        name: &str,
        namespace: &str,
        update_request: &V1UpdateProcessor,
    ) -> Result<V1Processor, Box<dyn Error>> {
        let url = format!("{}/v1/processors/{}/{}", self.base_url, namespace, name);

        let response = self
            .http_client
            .patch(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(update_request)
            .send()
            .await?;

        if response.status().is_success() {
            let processor = response.json::<V1Processor>().await?;
            Ok(processor)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to patch processor '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Scales a processor by `/:namespace/:name`.
    pub async fn scale_processor(
        &self,
        name: &str,
        namespace: &str,
        scale_request: &V1ProcessorScaleRequest,
    ) -> Result<V1Processor, Box<dyn Error>> {
        let url = format!(
            "{}/v1/processors/{}/{}/scale",
            self.base_url, namespace, name
        );

        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(scale_request)
            .send()
            .await?;

        if response.status().is_success() {
            let processor = response.json::<V1Processor>().await?;
            Ok(processor)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to scale processor '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }

    /// Sends a message to a processor's stream. Returns the raw response Value.
    /// If `stream_data.wait` is true, it will block until a response is received or timeout.
    pub async fn send_processor_message(
        &self,
        name: &str,
        namespace: &str,
        stream_data: &V1StreamData,
    ) -> Result<Value, Box<dyn Error>> {
        let url = format!(
            "{}/v1/processors/{}/{}/messages",
            self.base_url, namespace, name
        );

        let response = self
            .http_client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(stream_data)
            .send()
            .await?;

        if response.status().is_success() {
            let response_json = response.json::<Value>().await?;
            Ok(response_json)
        } else {
            let error_text = response.text().await?;
            Err(format!(
                "Failed to send message to processor '{}/{}': {}",
                namespace, name, error_text
            )
            .into())
        }
    }
}