use sdk::*; pub struct Cli { client: Client, over: T, } impl Cli { pub fn new(client: Client) -> Self { Self { client, over: () } } pub fn get_command(cmd: CliCommand) -> clap::Command { match cmd { CliCommand::KeyGet => Self::cli_key_get(), } } pub fn cli_key_get() -> clap::Command { clap::Command::new("") .arg( clap::Arg::new("key") .long("key") .value_parser(clap::value_parser!(bool)) .required(false) .help("The same key parameter that overlaps with the path level parameter"), ) .arg( clap::Arg::new("unique-key") .long("unique-key") .value_parser(clap::value_parser!(String)) .required(false) .help("A key parameter that will not be overridden by the path spec"), ) .long_about("Gets a key") } } impl Cli { pub fn new_with_override(client: Client, over: T) -> Self { Self { client, over } } pub async fn execute(&self, cmd: CliCommand, matches: &clap::ArgMatches) { match cmd { CliCommand::KeyGet => { self.execute_key_get(matches).await; } } } pub async fn execute_key_get(&self, matches: &clap::ArgMatches) { let mut request = self.client.key_get(); if let Some(value) = matches.get_one::("key") { request = request.key(value.clone()); } if let Some(value) = matches.get_one::("unique-key") { request = request.unique_key(value.clone()); } self.over.execute_key_get(matches, &mut request).unwrap(); let result = request.send().await; match result { Ok(r) => { println!("success\n{:#?}", r) } Err(r) => { println!("success\n{:#?}", r) } } } } pub trait CliOverride { fn execute_key_get( &self, matches: &clap::ArgMatches, request: &mut builder::KeyGet, ) -> Result<(), String> { Ok(()) } } impl CliOverride for () {} #[derive(Copy, Clone, Debug)] pub enum CliCommand { KeyGet, } impl CliCommand { pub fn iter() -> impl Iterator { vec![CliCommand::KeyGet].into_iter() } }