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
use clap::{ArgMatches, Command};
use crate::{
api::MetadataReq,
cli::{cmds::metadata::common, CliCommand},
context::{Ctx, MetadataCtx},
error::Result,
printer::{Output, OutputFormat},
};
static LONG_ABOUT: &str = "Retrieve a metadata key-value pair
Keys and values will be displayed in base64 encoded format by default because they may contain
arbitrary binary data. Use --decode to output the decoded values instead.";
#[derive(Copy, Clone, Debug)]
pub struct SeaplaneMetadataGet;
impl SeaplaneMetadataGet {
pub fn command() -> Command {
Command::new("get")
.visible_alias("show")
.about("Retrieve a metadata key-value pair")
.long_about(LONG_ABOUT)
.arg(common::single_key())
.arg(common::base64())
.args(common::display_args())
.group(common::keys_or_values())
.mut_arg("no-header", |a| a.hide(true))
.mut_arg("only-keys", |a| a.hide(true))
.mut_arg("only-values", |a| a.hide(true))
}
}
impl CliCommand for SeaplaneMetadataGet {
fn run(&self, ctx: &mut Ctx) -> Result<()> {
let kvs = {
let mut req = MetadataReq::new(ctx)?;
let mdctx = ctx.md_ctx.get_mut_or_init();
for kv in mdctx.kvs.iter_mut() {
req.set_key(kv.key.to_string())?;
kv.set_value(
req.get_value()?.to_string(),
);
}
mdctx.kvs.clone()
};
match ctx.args.out_format {
OutputFormat::Json => kvs.print_json(ctx)?,
OutputFormat::Table => kvs.print_table(ctx)?,
}
Ok(())
}
fn update_ctx(&self, matches: &ArgMatches, ctx: &mut Ctx) -> Result<()> {
ctx.md_ctx
.init(MetadataCtx::from_md_common(&common::SeaplaneMetadataCommonArgMatches(matches))?);
ctx.args.out_format = matches.get_one("format").copied().unwrap_or_default();
let mut mdctx = ctx.md_ctx.get_mut_or_init();
mdctx.decode = matches.get_flag("decode");
mdctx.no_header = true;
mdctx.no_keys = true;
mdctx.no_values = false;
Ok(())
}
}