mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-16 20:57:53 +08:00
0b066b7529
Reasons: - Remove unnecessary steps. into() is called on String when the expected type is already String. Signed-off-by: Perma Alesheikh <me@prma.dev>
117 lines
3.8 KiB
Rust
117 lines
3.8 KiB
Rust
use anyhow::{anyhow, Result};
|
|
use clap::Parser;
|
|
#[cfg(feature = "imap")]
|
|
use email::message::get::imap::GetMessagesImap;
|
|
#[cfg(feature = "maildir")]
|
|
use email::{flag::add::maildir::AddFlagsMaildir, message::peek::maildir::PeekMessagesMaildir};
|
|
use log::info;
|
|
|
|
#[cfg(feature = "account-sync")]
|
|
use crate::cache::arg::disable::CacheDisableFlag;
|
|
#[allow(unused)]
|
|
use crate::{
|
|
account::arg::name::AccountNameFlag,
|
|
backend::{Backend, BackendKind},
|
|
config::TomlConfig,
|
|
envelope::arg::ids::EnvelopeIdArg,
|
|
folder::arg::name::FolderNameOptionalFlag,
|
|
message::arg::{body::MessageRawBodyArg, header::HeaderRawArgs, reply::MessageReplyAllArg},
|
|
printer::Printer,
|
|
};
|
|
|
|
/// Generate a template for replying to a message.
|
|
///
|
|
/// The generated template is prefilled with your email in a From
|
|
/// header as well as your signature. The replied message is also
|
|
/// prefilled in the body of the template, with all lines prefixed by
|
|
/// the symbol greater than ">".
|
|
#[derive(Debug, Parser)]
|
|
pub struct TemplateReplyCommand {
|
|
#[command(flatten)]
|
|
pub folder: FolderNameOptionalFlag,
|
|
|
|
#[command(flatten)]
|
|
pub envelope: EnvelopeIdArg,
|
|
|
|
#[command(flatten)]
|
|
pub reply: MessageReplyAllArg,
|
|
|
|
#[command(flatten)]
|
|
pub headers: HeaderRawArgs,
|
|
|
|
#[command(flatten)]
|
|
pub body: MessageRawBodyArg,
|
|
|
|
#[cfg(feature = "account-sync")]
|
|
#[command(flatten)]
|
|
pub cache: CacheDisableFlag,
|
|
|
|
#[command(flatten)]
|
|
pub account: AccountNameFlag,
|
|
}
|
|
|
|
impl TemplateReplyCommand {
|
|
pub async fn execute(self, printer: &mut impl Printer, config: &TomlConfig) -> Result<()> {
|
|
info!("executing reply template command");
|
|
|
|
let folder = &self.folder.name;
|
|
let id = self.envelope.id;
|
|
|
|
let (toml_account_config, account_config) = config.clone().into_account_configs(
|
|
self.account.name.as_deref(),
|
|
#[cfg(feature = "account-sync")]
|
|
self.cache.disable,
|
|
)?;
|
|
|
|
let get_messages_kind = toml_account_config.get_messages_kind();
|
|
|
|
let backend = Backend::new(
|
|
&toml_account_config,
|
|
&account_config,
|
|
get_messages_kind,
|
|
|#[allow(unused)] builder| match get_messages_kind {
|
|
#[cfg(feature = "imap")]
|
|
Some(BackendKind::Imap) => {
|
|
builder
|
|
.set_get_messages(|ctx| ctx.imap.as_ref().and_then(GetMessagesImap::new));
|
|
}
|
|
#[cfg(feature = "maildir")]
|
|
Some(BackendKind::Maildir) => {
|
|
builder.set_peek_messages(|ctx| {
|
|
ctx.maildir.as_ref().and_then(PeekMessagesMaildir::new)
|
|
});
|
|
builder
|
|
.set_add_flags(|ctx| ctx.maildir.as_ref().and_then(AddFlagsMaildir::new));
|
|
}
|
|
#[cfg(feature = "account-sync")]
|
|
Some(BackendKind::MaildirForSync) => {
|
|
builder.set_peek_messages(|ctx| {
|
|
ctx.maildir_for_sync
|
|
.as_ref()
|
|
.and_then(PeekMessagesMaildir::new)
|
|
});
|
|
builder.set_add_flags(|ctx| {
|
|
ctx.maildir_for_sync.as_ref().and_then(AddFlagsMaildir::new)
|
|
});
|
|
}
|
|
_ => (),
|
|
},
|
|
)
|
|
.await?;
|
|
|
|
let tpl = backend
|
|
.get_messages(folder, &[id])
|
|
.await?
|
|
.first()
|
|
.ok_or(anyhow!("cannot find message {id}"))?
|
|
.to_reply_tpl_builder(&account_config)
|
|
.with_headers(self.headers.raw)
|
|
.with_body(self.body.raw())
|
|
.with_reply_all(self.reply.all)
|
|
.build()
|
|
.await?;
|
|
|
|
printer.print(tpl)
|
|
}
|
|
}
|