himalaya 2.0.0

CLI to manage emails
use anyhow::Result;
use clap::Parser;
use pimalaya_cli::printer::{Message, Printer};

use crate::msgraph::client::MsgraphClient;

/// Move a Microsoft Graph mail folder into another folder (`POST
/// /me/mailFolders/{id}/move`).
#[derive(Debug, Parser)]
pub struct MsgraphMailFolderMoveCommand {
    /// The id of the folder to move.
    #[arg(value_name = "ID")]
    pub id: String,

    /// The destination folder id or well-known name.
    #[arg(value_name = "DESTINATION")]
    pub destination: String,
}

impl MsgraphMailFolderMoveCommand {
    pub fn execute(self, printer: &mut impl Printer, client: &mut MsgraphClient) -> Result<()> {
        let folder = client
            .mail_folder_move(&self.id, &self.destination)?
            .response;

        printer.out(Message::new(format!(
            "Microsoft Graph mail folder moved to `{}`",
            folder.id
        )))
    }
}