dsh_api/
app.rs

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
//! # Manage apps in the App Catalog
//!
//! Module that contains functions to manage pre-packaged,
//! easily configured apps that you can select from the App Catalog.
//! * API methods - DshApiClient methods that directly call the API.
//! * Derived methods - DshApiClient methods that add extra capabilities
//!   but depend on the API methods.
//! * Functions - Functions that add extra capabilities but do not depend directly on the API.
//!
//! # API methods
//!
//! [`DshApiClient`] methods that directly call the DSH resource management API.
//!
//! * [`get_app_configuration(app_id) -> app`](DshApiClient::get_app_configuration)
//! * [`get_app_configurations() -> map<app_id, app>`](DshApiClient::get_app_configurations)
//! * [`list_app_configurations() -> [(app_id, app)]`](DshApiClient::list_app_configurations)
//! * [`list_app_ids() -> [app_id]`](DshApiClient::list_app_ids)
//!
//! # Derived methods
//!
//! [`DshApiClient`] methods that add extra capabilities but do not directly call the
//! DSH resource management API. These derived methods depend on the API methods for this.
//!
//! * [`list_app_configurations() -> [(app_id, app)]`](DshApiClient::list_app_configurations)
//! * [`list_app_ids() -> [app_id]`](DshApiClient::list_app_ids)
#![cfg_attr(feature = "actual", doc = "")]
#![cfg_attr(feature = "actual", doc = "# Actual configuration methods")]
#![cfg_attr(feature = "actual", doc = "* [`get_app_actual_configuration(app_id) -> AppCatalogApp`](DshApiClient::get_app_actual_configuration)")]
#![cfg_attr(feature = "actual", doc = "* [`get_app_actual_configurations() -> HashMap<String, AppCatalogApp>`](DshApiClient::get_app_actual_configurations)")]
use crate::dsh_api_client::DshApiClient;
use crate::types::{AppCatalogApp, AppCatalogAppResourcesValue, Application, Bucket, Certificate, Secret, Topic, Vhost, Volume};
#[allow(unused_imports)]
use crate::DshApiError;
use crate::{DshApiResult, Injection};
use std::collections::HashMap;

/// # Manage apps in the App Catalog
///
/// Module that contains functions to manage pre-packaged,
/// easily configured apps that you can select from the App Catalog.
/// * API methods - DshApiClient methods that directly call the API.
/// * Derived methods - DshApiClient methods that add extra capabilities
///   but depend on the API methods.
/// * Functions - Functions that add extra capabilities but do not depend directly on the API.
///
/// # API methods
///
/// [`DshApiClient`] methods that directly call the DSH resource management API.
///
/// * [`get_app_configuration(app_id) -> app`](DshApiClient::get_app_configuration)
/// * [`get_app_configurations() -> map<app_id, app>`](DshApiClient::get_app_configurations)
/// * [`list_app_configurations() -> [(app_id, app)]`](DshApiClient::list_app_configurations)
/// * [`list_app_ids() -> [app_id]`](DshApiClient::list_app_ids)
///
/// # Derived methods
///
/// [`DshApiClient`] methods that add extra capabilities but do not directly call the
/// DSH resource management API. These derived methods depend on the API methods for this.
///
/// * [`list_app_configurations() -> [(app_id, app)]`](DshApiClient::list_app_configurations)
/// * [`list_app_ids() -> [app_id]`](DshApiClient::list_app_ids)
#[cfg_attr(feature = "actual", doc = "")]
#[cfg_attr(feature = "actual", doc = "# Actual configuration methods")]
#[cfg_attr(feature = "actual", doc = "* [`get_app_actual_configuration(app_id) -> AppCatalogApp`](DshApiClient::get_app_actual_configuration)")]
#[cfg_attr(feature = "actual", doc = "* [`get_app_actual_configurations() -> HashMap<String, AppCatalogApp>`](DshApiClient::get_app_actual_configurations)")]
impl DshApiClient<'_> {
  /// # Return actual configuration of deployed App
  ///
  /// API function: `GET /allocation/{tenant}/appcatalogapp/{appcatalogappid}/actual`
  ///
  /// # Parameters
  /// * `app_id` - app id of the requested configuration
  ///
  /// # Returns
  /// * `Ok<`[`AppCatalogApp`]`>` - app configuration
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  #[cfg(feature = "actual")]
  pub async fn get_app_actual_configuration(&self, app_id: &str) -> DshApiResult<AppCatalogApp> {
    self
      .process(
        self
          .generated_client
          .get_appcatalogapp_actual_by_tenant_by_appcatalogappid(self.tenant_name(), app_id, self.token())
          .await,
      )
      .map(|(_, result)| result)
  }

  /// # Get all actual configurations of deployed Apps
  ///
  /// API function: `GET /allocation/{tenant}/appcatalogapp/actual`
  ///
  /// # Returns
  /// * `Ok<HashMap<String, `[`AppCatalogApp`]`>>` - hashmap containing the app configurations
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  #[cfg(feature = "actual")]
  pub async fn get_app_actual_configurations(&self) -> DshApiResult<HashMap<String, AppCatalogApp>> {
    self
      .process(self.generated_client.get_appcatalogapp_actual_by_tenant(self.tenant_name(), self.token()).await)
      .map(|(_, result)| result)
  }

  /// # Return App configuration
  ///
  /// API function: `GET /allocation/{tenant}/appcatalogapp/{appcatalogappid}/configuration`
  ///
  /// # Parameters
  /// * `app_id` - app id of the requested configuration
  ///
  /// # Returns
  /// * `Ok<`[`AppCatalogApp`]`>` - app configuration
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  pub async fn get_app_configuration(&self, app_id: &str) -> DshApiResult<AppCatalogApp> {
    self
      .process(
        self
          .generated_client
          .get_appcatalogapp_configuration_by_tenant_by_appcatalogappid(self.tenant_name(), app_id, self.token())
          .await,
      )
      .map(|(_, result)| result)
  }

  /// # Get all App configurations
  ///
  /// API function: `GET /allocation/{tenant}/appcatalogapp/configuration`
  ///
  /// # Returns
  /// * `Ok<HashMap<String, `[`AppCatalogApp`]`>>` - hashmap containing the app configurations
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  pub async fn get_app_configurations(&self) -> DshApiResult<HashMap<String, AppCatalogApp>> {
    self
      .process(
        self
          .generated_client
          .get_appcatalogapp_configuration_by_tenant(self.tenant_name(), self.token())
          .await,
      )
      .map(|(_, result)| result)
  }

  /// # List all App configurations
  ///
  /// # Returns
  /// * `Ok<Vec<(String, `[`AppCatalogApp`]`)>>` - list containing the app ids and configurations,
  ///   sorted by app id
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  pub async fn list_app_configurations(&self) -> DshApiResult<Vec<(String, AppCatalogApp)>> {
    self.get_app_configurations().await.map(|mut app_configurations_map| {
      let mut app_ids: Vec<String> = app_configurations_map.keys().map(|app_id| app_id.to_string()).collect();
      app_ids.sort();
      app_ids
        .iter()
        .map(|app_id| (app_id.clone(), app_configurations_map.remove(app_id).unwrap()))
        .collect::<Vec<(_, _)>>()
    })
  }

  /// # List all App ids
  ///
  /// If you also need the app configuration, use
  /// [`list_app_configurations()`](Self::list_app_configurations) instead.
  ///
  /// # Returns
  /// * `Ok<Vec<String>>` - vector containing the sorted app ids
  /// * `Err<`[`DshApiError`]`>` - when the request could not be processed by the DSH
  pub async fn list_app_ids(&self) -> DshApiResult<Vec<String>> {
    let mut app_ids: Vec<String> = self.get_app_configurations().await?.keys().map(|app_id| app_id.to_string()).collect();
    app_ids.sort();
    Ok(app_ids)
  }
}

/// Get application resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the application resources from
///
/// # Returns
/// Either `None` when the `app` does not have any application resources,
/// or a `Some` that contains tuples describing the application resources:
/// * resource id
/// * reference to the `Application`
pub fn application_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Application)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Application(application) => Some(application),
    _ => None,
  })
}

/// Get bucket resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the bucket resources from
///
/// # Returns
/// Either `None` when the `app` does not have any bucket resources,
/// or a `Some` that contains tuples describing the bucket resources:
/// * resource id
/// * reference to the `Bucket`
pub fn bucket_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Bucket)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Bucket(bucket) => Some(bucket),
    _ => None,
  })
}

/// Get certificate resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the certificate resources from
///
/// # Returns
/// Either `None` when the `app` does not have any certificate resources,
/// or a `Some` that contains tuples describing the certificate resources:
/// * resource id
/// * reference to the `Certificate`
pub fn certificate_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Certificate)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Certificate(certificate) => Some(certificate),
    _ => None,
  })
}

/// Get secret resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the secret resources from
///
/// # Returns
/// Either `None` when the `app` does not have any secret resources,
/// or a `Some` that contains tuples describing the secret resources:
/// * resource id
/// * reference to the `Secret`
pub fn secret_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Secret)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Secret(secret) => Some(secret),
    _ => None,
  })
}

/// Get topic resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the topic resources from
///
/// # Returns
/// Either `None` when the `app` does not have any topic resources,
/// or a `Some` that contains tuples describing the topic resources:
/// * resource id
/// * reference to the `Topic`
pub fn topic_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Topic)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Topic(topic) => Some(topic),
    _ => None,
  })
}

/// Get vhost resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the vhost resources from
///
/// # Returns
/// Either `None` when the `app` does not have any vhost resources,
/// or a `Some` that contains tuples describing the vhost resources:
/// * resource id
/// * reference to the `Vhost`
pub fn vhost_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Vhost)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Vhost(vhost) => Some(vhost),
    _ => None,
  })
}

/// Get volume resources from `AppCatalogApp`
///
/// # Parameters
/// * `app` - app to get the volume resources from
///
/// # Returns
/// Either `None` when the `app` does not have any volume resources,
/// or a `Some` that contains tuples describing the volume resources:
/// * resource id
/// * reference to the `Volume`
pub fn volume_resources_from_app(app: &AppCatalogApp) -> Option<Vec<(&String, &Volume)>> {
  resources_from_app(app, &|resource_value| match resource_value {
    AppCatalogAppResourcesValue::Volume(volume) => Some(volume),
    _ => None,
  })
}

/// Find apps that use a given secret
///
/// # Parameters
/// * `secret_id` - id of the secret to look for
/// * `apps` - hashmap of all apps
///
/// # Returns
/// `Vec<(app_id, app, resource_ids)>` - vector of applications that use the secret
/// * `app_id` - app id of the app that uses the secret
/// * `app` - reference to the app
/// * `resource_ids` - secret resources of the secret in the app
pub fn find_apps_that_use_secret<'a>(secret_id: &str, apps: &'a HashMap<String, AppCatalogApp>) -> Vec<(String, &'a AppCatalogApp, Vec<String>)> {
  let mut app_ids: Vec<String> = apps.keys().map(|p| p.to_string()).collect();
  app_ids.sort();
  let mut tuples: Vec<(String, &'a AppCatalogApp, Vec<String>)> = vec![];
  for app_id in app_ids {
    let app = apps.get(&app_id).unwrap();
    if let Some(secret_resources) = secret_resources_from_app(app) {
      for (secret_resource_id, secret) in secret_resources {
        if secret.name == secret_id {
          tuples.push((app_id.clone(), app, vec![secret_resource_id.to_string()]));
        }
      }
    }
  }
  tuples
}

/// Find apps that use any of a list of given secret
///
/// # Parameters
/// * `secrets` - ids of the secrets to look for
/// * `apps` - hashmap of all apps
///
/// # Returns
/// * `Vec<(app_id, app, resource_ids)>` - vector of apps that use the secret
///   * `app_id` - app id of the app that uses the secret
///   * `app` - reference to the app
///   * `resource_ids` - application secret resource ids
pub fn find_apps_that_use_secrets<'a>(secrets: &[String], apps: &'a HashMap<String, AppCatalogApp>) -> Vec<(String, &'a AppCatalogApp, Vec<String>)> {
  let mut app_ids: Vec<String> = apps.keys().map(|p| p.to_string()).collect();
  app_ids.sort();
  let mut tuples: Vec<(String, &AppCatalogApp, Vec<String>)> = vec![];
  for app_id in app_ids {
    let mut resource_ids = vec![];
    let app = apps.get(&app_id).unwrap();
    if let Some(secret_resources) = secret_resources_from_app(app) {
      for (secret_resource_id, secret) in secret_resources {
        if secrets.contains(&secret.name) {
          resource_ids.push(secret_resource_id.to_string())
        }
      }
    }
    if !resource_ids.is_empty() {
      tuples.push((app_id, app, resource_ids));
    }
  }
  tuples
}

/// Find apps that use a given topic
///
/// # Parameters
/// * `topic_id` - id of the topic to look for
/// * `apps` - hashmap of all apps
///
/// # Returns
/// * `Vec<(app_id, app, resource_ids)>` - vector of applications that use the topic
///   * `app_id` - app id of the app that uses the topic
///   * `app` - reference to the app
///   * `resource_ids` - topic resources of the topic in the app
pub fn find_apps_that_use_topic<'a>(topic_id: &str, apps: &'a HashMap<String, AppCatalogApp>) -> Vec<(String, &'a AppCatalogApp, Vec<String>)> {
  let mut app_ids: Vec<String> = apps.keys().map(|p| p.to_string()).collect();
  app_ids.sort();
  let mut tuples: Vec<(String, &'a AppCatalogApp, Vec<String>)> = vec![];
  for app_id in app_ids {
    let app = apps.get(&app_id).unwrap();
    if let Some(topic_resources) = topic_resources_from_app(app) {
      for (topic_resource_id, _) in topic_resources {
        if topic_resource_id.contains(topic_id) {
          tuples.push((app_id.clone(), app, vec![topic_resource_id.to_string()]));
        }
      }
    }
  }
  tuples
}

/// Find apps that use a given volume
///
/// # Parameters
/// * `volume_id` - id of the volume to look for
/// * `apps` - hashmap of all apps
///
/// # Returns
/// * `Vec<(app_id, app, application, injections)>` - vector of applications that use the secret
///   * `app_id` - application id of the app that uses the secret
///   * `app` - reference to the app
///   * `resource_ids` - topic resources of the volume in the app
pub fn find_apps_that_use_volume<'a>(volume_id: &str, apps: &'a HashMap<String, AppCatalogApp>) -> Vec<(String, &'a AppCatalogApp, Vec<String>)> {
  let mut app_ids: Vec<String> = apps.keys().map(|p| p.to_string()).collect();
  app_ids.sort();
  let mut tuples: Vec<(String, &AppCatalogApp, Vec<String>)> = vec![];
  for app_id in app_ids {
    let app = apps.get(&app_id).unwrap();
    if let Some(volume_resources) = volume_resources_from_app(app) {
      for (volume_resource_id, _) in volume_resources {
        if volume_resource_id.contains(volume_id) {
          tuples.push((app_id.clone(), app, vec![volume_resource_id.to_string()]));
        }
      }
    }
  }
  tuples
}

/// # Get all vhost injections from `AppCatalogApp`
///
/// # Parameters
/// * `app` - reference to the `AppCatalogApp`
///
/// # Returns
/// `Vec<(String, Injection)>` - list of tuples that describe the vhost injections.
/// Each tuple consist of
/// * vhost resource id
/// * vhost injection.
pub fn vhosts_from_app(app: &AppCatalogApp) -> Vec<(String, Injection)> {
  let mut injections: Vec<(String, Injection)> = vec![];
  if let Some(vhost_resources) = vhost_resources_from_app(app) {
    for (resource_id, vhost) in vhost_resources {
      injections.push((vhost.value.clone(), Injection::VhostResource(resource_id.clone())));
    }
  }
  injections
}

/// Get resources from App
fn resources_from_app<'a, T>(app: &'a AppCatalogApp, finder: &dyn Fn(&'a AppCatalogAppResourcesValue) -> Option<&'a T>) -> Option<Vec<(&'a String, &'a T)>> {
  let mut resources: Vec<(&String, &T)> = vec![];
  for (resource_id, resource) in &app.resources {
    if let Some(resource) = finder(resource) {
      resources.push((resource_id, resource))
    }
  }
  if resources.is_empty() {
    None
  } else {
    Some(resources)
  }
}