use anyhow::Result;
use clap::Parser;
use io_gmail::v1::rest::settings::{GmailPopSettings, update_pop::GmailPopUpdate};
use pimalaya_cli::printer::{Message, Printer};
use crate::gmail::{
client::GmailClient,
settings::convert::{DispositionArg, PopAccessWindowArg},
};
#[derive(Debug, Parser)]
pub struct GmailSettingsPopSetCommand {
#[arg(long, value_name = "WINDOW")]
pub access_window: Option<PopAccessWindowArg>,
#[arg(long, value_name = "DISPOSITION")]
pub disposition: Option<DispositionArg>,
}
impl GmailSettingsPopSetCommand {
pub fn execute(self, printer: &mut impl Printer, client: &mut GmailClient) -> Result<()> {
let settings = GmailPopSettings {
access_window: self.access_window.map(Into::into),
disposition: self.disposition.map(Into::into),
};
let _out = {
let c = GmailPopUpdate::new(&client.auth, &client.user_id, settings)?;
client.run(c)?
};
printer.out(Message::new("Gmail POP settings successfully updated"))
}
}