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
//! List volumes tied to an edge app.

use super::super::util::AppIdentOpts;
use crate::{commands::AsyncCliCommand, config::WasmerEnv, opts::ListFormatOpts};

/// List the volumes of an app.
#[derive(clap::Parser, Debug)]
pub struct CmdAppDatabaseList {
    #[clap(flatten)]
    fmt: ListFormatOpts,

    #[clap(flatten)]
    env: WasmerEnv,

    #[clap(flatten)]
    ident: AppIdentOpts,

    #[clap(long, help = "Include password in the output")]
    pub with_password: bool,
}

#[async_trait::async_trait]
impl AsyncCliCommand for CmdAppDatabaseList {
    type Output = ();

    async fn run_async(self) -> Result<(), anyhow::Error> {
        let client = self.env.client()?;

        let (_ident, app) = self.ident.load_app(&client).await?;
        let mut dbs = wasmer_backend_api::query::get_app_databases(
            &client,
            &app.owner.global_name,
            &app.name,
        )
        .await?;

        if !self.with_password {
            dbs.iter_mut().for_each(|db| {
                db.password = None;
            });
        }

        if dbs.is_empty() {
            eprintln!("App {} has no databases!", app.name);
        } else {
            println!("{}", self.fmt.format.render(dbs.as_slice()));
        }

        Ok(())
    }
}