2018-08-11 15:00:21 +00:00
|
|
|
/*
|
2020-02-04 13:52:12 +00:00
|
|
|
* meli
|
2018-08-11 15:00:21 +00:00
|
|
|
*
|
|
|
|
* Copyright 2017-2018 Manos Pitsidianakis
|
|
|
|
*
|
|
|
|
* This file is part of meli.
|
|
|
|
*
|
|
|
|
* meli is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* meli is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with meli. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use super::*;
|
2019-11-18 18:37:48 +00:00
|
|
|
use melib::list_management;
|
2020-07-05 10:22:48 +00:00
|
|
|
use melib::Draft;
|
2018-08-11 15:00:21 +00:00
|
|
|
|
2020-07-05 10:22:48 +00:00
|
|
|
use crate::conf::accounts::JobRequest;
|
|
|
|
use crate::jobs::{oneshot, JobId};
|
2019-11-05 06:35:07 +00:00
|
|
|
use crate::terminal::embed::EmbedGrid;
|
|
|
|
use nix::sys::wait::WaitStatus;
|
2018-09-12 12:10:19 +00:00
|
|
|
use std::str::FromStr;
|
2019-11-05 06:35:07 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
2020-02-02 18:40:48 +00:00
|
|
|
use xdg_utils::query_mime_info;
|
2018-08-29 16:09:51 +00:00
|
|
|
|
2019-02-18 21:14:06 +00:00
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
enum Cursor {
|
2019-03-02 06:11:38 +00:00
|
|
|
Headers,
|
2019-02-18 21:14:06 +00:00
|
|
|
Body,
|
2019-03-03 20:11:15 +00:00
|
|
|
//Attachments,
|
2019-02-18 21:14:06 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 06:35:07 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum EmbedStatus {
|
|
|
|
Stopped(Arc<Mutex<EmbedGrid>>, File),
|
|
|
|
Running(Arc<Mutex<EmbedGrid>>, File),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::Deref for EmbedStatus {
|
|
|
|
type Target = Arc<Mutex<EmbedGrid>>;
|
|
|
|
fn deref(&self) -> &Arc<Mutex<EmbedGrid>> {
|
|
|
|
use EmbedStatus::*;
|
|
|
|
match self {
|
|
|
|
Stopped(ref e, _) | Running(ref e, _) => e,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::DerefMut for EmbedStatus {
|
|
|
|
fn deref_mut(&mut self) -> &mut Arc<Mutex<EmbedGrid>> {
|
|
|
|
use EmbedStatus::*;
|
|
|
|
match self {
|
|
|
|
Stopped(ref mut e, _) | Running(ref mut e, _) => e,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:39:54 +00:00
|
|
|
#[derive(Debug)]
|
2018-08-16 13:32:47 +00:00
|
|
|
pub struct Composer {
|
2020-02-26 08:54:10 +00:00
|
|
|
reply_context: Option<(MailboxHash, EnvelopeHash)>,
|
2020-07-05 10:22:48 +00:00
|
|
|
reply_bytes_request: Option<(JobId, oneshot::Receiver<Result<Vec<u8>>>)>,
|
2018-09-03 22:49:29 +00:00
|
|
|
account_cursor: usize,
|
2018-08-30 12:54:30 +00:00
|
|
|
|
2019-02-18 21:14:06 +00:00
|
|
|
cursor: Cursor,
|
|
|
|
|
2018-09-03 22:49:29 +00:00
|
|
|
pager: Pager,
|
2018-08-29 16:09:51 +00:00
|
|
|
draft: Draft,
|
2019-03-02 06:11:38 +00:00
|
|
|
form: FormWidget,
|
2018-08-30 12:54:30 +00:00
|
|
|
|
2018-09-03 22:49:29 +00:00
|
|
|
mode: ViewMode,
|
2019-11-05 06:35:07 +00:00
|
|
|
|
|
|
|
embed_area: Area,
|
|
|
|
embed: Option<EmbedStatus>,
|
2019-09-28 07:46:49 +00:00
|
|
|
sign_mail: ToggleFlag,
|
2018-08-30 12:54:30 +00:00
|
|
|
dirty: bool,
|
2019-10-20 08:17:54 +00:00
|
|
|
has_changes: bool,
|
2018-09-03 22:49:29 +00:00
|
|
|
initialized: bool,
|
2019-04-10 19:01:02 +00:00
|
|
|
id: ComponentId,
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Composer {
|
|
|
|
fn default() -> Self {
|
2019-11-16 18:23:07 +00:00
|
|
|
let mut pager = Pager::default();
|
|
|
|
pager.set_reflow(text_processing::Reflow::FormatFlowed);
|
2018-08-16 13:32:47 +00:00
|
|
|
Composer {
|
2018-09-03 22:49:29 +00:00
|
|
|
reply_context: None,
|
2020-07-05 10:22:48 +00:00
|
|
|
reply_bytes_request: None,
|
2018-09-03 22:49:29 +00:00
|
|
|
account_cursor: 0,
|
|
|
|
|
2019-03-02 06:11:38 +00:00
|
|
|
cursor: Cursor::Headers,
|
2019-02-18 21:14:06 +00:00
|
|
|
|
2019-11-16 18:23:07 +00:00
|
|
|
pager,
|
2018-08-29 16:09:51 +00:00
|
|
|
draft: Draft::default(),
|
2019-03-02 06:11:38 +00:00
|
|
|
form: FormWidget::default(),
|
2018-09-03 22:49:29 +00:00
|
|
|
|
2019-03-30 22:28:01 +00:00
|
|
|
mode: ViewMode::Edit,
|
2019-09-28 07:46:49 +00:00
|
|
|
sign_mail: ToggleFlag::Unset,
|
2018-09-03 22:49:29 +00:00
|
|
|
dirty: true,
|
2019-10-20 08:17:54 +00:00
|
|
|
has_changes: false,
|
2019-11-05 06:35:07 +00:00
|
|
|
embed_area: ((0, 0), (0, 0)),
|
|
|
|
embed: None,
|
2018-09-03 22:49:29 +00:00
|
|
|
initialized: false,
|
2019-04-10 21:04:17 +00:00
|
|
|
id: ComponentId::new_v4(),
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:39:54 +00:00
|
|
|
#[derive(Debug)]
|
2018-08-16 13:32:47 +00:00
|
|
|
enum ViewMode {
|
2020-02-19 14:57:37 +00:00
|
|
|
Discard(Uuid, UIDialog<char>),
|
2019-03-30 22:28:01 +00:00
|
|
|
Edit,
|
2019-11-05 06:35:07 +00:00
|
|
|
Embed,
|
2020-02-19 14:57:37 +00:00
|
|
|
SelectRecipients(UIDialog<Address>),
|
2020-02-22 09:47:13 +00:00
|
|
|
Send(UIConfirmationDialog),
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
2018-08-11 15:00:21 +00:00
|
|
|
|
2018-09-03 22:49:29 +00:00
|
|
|
impl ViewMode {
|
2019-03-30 22:28:01 +00:00
|
|
|
fn is_edit(&self) -> bool {
|
|
|
|
if let ViewMode::Edit = self {
|
2018-09-03 22:49:29 +00:00
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 15:00:21 +00:00
|
|
|
impl fmt::Display for Composer {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
// TODO display subject/info
|
2018-09-03 22:49:29 +00:00
|
|
|
if self.reply_context.is_some() {
|
|
|
|
write!(f, "reply: {:8}", self.draft.headers()["Subject"])
|
|
|
|
} else {
|
2019-11-29 10:15:05 +00:00
|
|
|
write!(f, "composing")
|
2018-09-03 22:49:29 +00:00
|
|
|
}
|
2018-08-11 15:00:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 12:54:30 +00:00
|
|
|
impl Composer {
|
2019-11-29 10:15:05 +00:00
|
|
|
const DESCRIPTION: &'static str = "composing";
|
2020-02-08 21:33:18 +00:00
|
|
|
pub fn new(account_cursor: usize, context: &Context) -> Self {
|
|
|
|
let mut ret = Composer {
|
2019-04-05 21:43:50 +00:00
|
|
|
account_cursor,
|
2019-04-10 21:04:17 +00:00
|
|
|
id: ComponentId::new_v4(),
|
2019-04-05 21:43:50 +00:00
|
|
|
..Default::default()
|
2020-02-08 21:33:18 +00:00
|
|
|
};
|
2020-03-18 17:13:07 +00:00
|
|
|
for (h, v) in
|
|
|
|
mailbox_acc_settings!(context[account_cursor].composing.default_header_values).iter()
|
|
|
|
{
|
2020-03-01 15:45:55 +00:00
|
|
|
if v.is_empty() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if let Some(k) = ret
|
|
|
|
.draft
|
|
|
|
.headers()
|
|
|
|
.keys()
|
|
|
|
.find(|k| k.eq_ignore_ascii_case(h))
|
|
|
|
{
|
|
|
|
let _k = k.clone();
|
|
|
|
ret.draft.headers_mut().insert(_k, v.into());
|
|
|
|
} else {
|
|
|
|
/* set_header() also updates draft's header_order field */
|
|
|
|
ret.draft.set_header(h, v.into());
|
|
|
|
}
|
|
|
|
}
|
2020-02-08 21:33:18 +00:00
|
|
|
ret.pager
|
|
|
|
.set_colors(crate::conf::value(context, "theme_default"));
|
|
|
|
ret
|
2019-04-05 21:43:50 +00:00
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
|
2019-09-27 10:18:59 +00:00
|
|
|
pub fn edit(account_pos: usize, h: EnvelopeHash, context: &Context) -> Result<Self> {
|
2019-03-26 13:26:09 +00:00
|
|
|
let mut ret = Composer::default();
|
2020-06-23 14:21:50 +00:00
|
|
|
let op = context.accounts[account_pos].operation(h)?;
|
2019-11-02 10:14:31 +00:00
|
|
|
let envelope: EnvelopeRef = context.accounts[account_pos].collection.get_env(h);
|
2019-03-26 13:26:09 +00:00
|
|
|
|
2019-11-02 10:14:31 +00:00
|
|
|
ret.draft = Draft::edit(&envelope, op)?;
|
2019-03-26 13:26:09 +00:00
|
|
|
|
2019-05-25 23:34:03 +00:00
|
|
|
ret.account_cursor = account_pos;
|
2019-09-27 10:18:59 +00:00
|
|
|
Ok(ret)
|
2019-03-26 13:26:09 +00:00
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
|
2019-05-14 18:47:47 +00:00
|
|
|
pub fn with_context(
|
2020-02-26 08:54:10 +00:00
|
|
|
coordinates: (usize, MailboxHash),
|
2020-01-17 23:48:29 +00:00
|
|
|
msg: EnvelopeHash,
|
2020-06-23 14:21:50 +00:00
|
|
|
context: &mut Context,
|
2019-05-14 18:47:47 +00:00
|
|
|
) -> Self {
|
2019-05-25 23:34:03 +00:00
|
|
|
let account = &context.accounts[coordinates.0];
|
2018-09-03 22:49:29 +00:00
|
|
|
let mut ret = Composer::default();
|
2020-02-08 21:33:18 +00:00
|
|
|
ret.pager
|
|
|
|
.set_colors(crate::conf::value(context, "theme_default"));
|
2020-01-17 23:48:29 +00:00
|
|
|
let parent_message = account.collection.get_env(msg);
|
2019-10-03 09:22:01 +00:00
|
|
|
/* If message is from a mailing list and we detect a List-Post header, ask user if they
|
|
|
|
* want to reply to the mailing list or the submitter of the message */
|
2019-11-18 12:55:48 +00:00
|
|
|
if let Some(actions) = list_management::ListActions::detect(&parent_message) {
|
2019-10-03 09:22:01 +00:00
|
|
|
if let Some(post) = actions.post {
|
2019-11-18 12:55:48 +00:00
|
|
|
if let list_management::ListAction::Email(list_post_addr) = post[0] {
|
2020-06-06 16:38:20 +00:00
|
|
|
if let Ok(list_address) = melib::email::parser::generic::mailto(list_post_addr)
|
|
|
|
.map(|(_, m)| m.address)
|
2019-11-18 12:55:48 +00:00
|
|
|
{
|
|
|
|
let list_address_string = list_address.to_string();
|
2020-02-19 14:57:37 +00:00
|
|
|
ret.mode = ViewMode::SelectRecipients(UIDialog::new(
|
2019-11-18 12:55:48 +00:00
|
|
|
"select recipients",
|
|
|
|
vec![
|
|
|
|
(
|
|
|
|
parent_message.from()[0].clone(),
|
|
|
|
parent_message.field_from_to_string(),
|
|
|
|
),
|
|
|
|
(list_address, list_address_string),
|
|
|
|
],
|
|
|
|
false,
|
2020-02-22 09:47:13 +00:00
|
|
|
Some(Box::new(move |id: ComponentId, results: &[Address]| {
|
2020-02-19 14:57:37 +00:00
|
|
|
Some(UIEvent::FinishedUIDialog(
|
|
|
|
id,
|
|
|
|
Box::new(
|
|
|
|
results
|
2020-07-05 12:28:55 +00:00
|
|
|
.iter()
|
2020-02-19 14:57:37 +00:00
|
|
|
.map(|a| a.to_string())
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.join(", "),
|
|
|
|
),
|
|
|
|
))
|
2020-02-22 09:47:13 +00:00
|
|
|
})),
|
2019-11-18 12:55:48 +00:00
|
|
|
context,
|
|
|
|
));
|
|
|
|
}
|
2019-10-03 09:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
let subject = parent_message.subject();
|
2018-09-03 22:49:29 +00:00
|
|
|
ret.draft.headers_mut().insert(
|
|
|
|
"Subject".into(),
|
2020-01-17 23:48:29 +00:00
|
|
|
if !subject.starts_with("Re: ") {
|
|
|
|
format!("Re: {}", subject)
|
2018-09-03 22:49:29 +00:00
|
|
|
} else {
|
2020-01-17 23:48:29 +00:00
|
|
|
subject.into()
|
2018-09-03 22:49:29 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2020-07-05 10:22:48 +00:00
|
|
|
drop(parent_message);
|
|
|
|
match context.accounts[coordinates.0]
|
|
|
|
.operation(msg)
|
|
|
|
.and_then(|mut op| op.as_bytes())
|
|
|
|
{
|
|
|
|
Err(err) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
err.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(fut) => {
|
2020-07-15 08:02:53 +00:00
|
|
|
let (mut rcvr, handle, job_id) = context.accounts[coordinates.0]
|
2020-07-05 10:22:48 +00:00
|
|
|
.job_executor
|
|
|
|
.spawn_specialized(fut);
|
|
|
|
context.accounts[coordinates.0]
|
|
|
|
.active_jobs
|
2020-07-15 08:02:53 +00:00
|
|
|
.insert(job_id, JobRequest::AsBytes(handle));
|
2020-07-05 10:22:48 +00:00
|
|
|
if let Ok(Some(parent_bytes)) = try_recv_timeout!(&mut rcvr) {
|
|
|
|
match parent_bytes {
|
|
|
|
Err(err) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
err.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(parent_bytes) => {
|
|
|
|
let env_hash = msg;
|
|
|
|
let parent_message =
|
|
|
|
context.accounts[coordinates.0].collection.get_env(env_hash);
|
|
|
|
let mut new_draft = Draft::new_reply(&parent_message, &parent_bytes);
|
|
|
|
new_draft
|
|
|
|
.headers_mut()
|
|
|
|
.extend(ret.draft.headers_mut().drain());
|
|
|
|
new_draft
|
|
|
|
.attachments_mut()
|
|
|
|
.extend(ret.draft.attachments_mut().drain(..));
|
|
|
|
ret.set_draft(new_draft);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret.reply_bytes_request = Some((job_id, rcvr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-03 22:49:29 +00:00
|
|
|
ret.account_cursor = coordinates.0;
|
2020-01-17 23:48:29 +00:00
|
|
|
ret.reply_context = Some((coordinates.1, msg));
|
2018-09-03 22:49:29 +00:00
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
2019-06-18 19:13:54 +00:00
|
|
|
pub fn set_draft(&mut self, draft: Draft) {
|
|
|
|
self.draft = draft;
|
|
|
|
self.update_form();
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:11:38 +00:00
|
|
|
fn update_draft(&mut self) {
|
|
|
|
let header_values = self.form.values_mut();
|
|
|
|
let draft_header_map = self.draft.headers_mut();
|
|
|
|
for (k, v) in draft_header_map.iter_mut() {
|
2019-11-05 06:35:07 +00:00
|
|
|
if let Some(ref vn) = header_values.get(k) {
|
|
|
|
*v = vn.as_str().to_string();
|
2019-03-02 06:11:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_form(&mut self) {
|
|
|
|
let old_cursor = self.form.cursor();
|
|
|
|
self.form = FormWidget::new("Save".into());
|
|
|
|
self.form.hide_buttons();
|
|
|
|
self.form.set_cursor(old_cursor);
|
|
|
|
let headers = self.draft.headers();
|
2019-03-09 08:24:28 +00:00
|
|
|
let account_cursor = self.account_cursor;
|
2019-03-02 06:11:38 +00:00
|
|
|
for &k in &["Date", "From", "To", "Cc", "Bcc", "Subject"] {
|
2019-03-25 15:07:00 +00:00
|
|
|
if k == "To" || k == "Cc" || k == "Bcc" {
|
2019-03-14 10:19:25 +00:00
|
|
|
self.form.push_cl((
|
|
|
|
k.into(),
|
|
|
|
headers[k].to_string(),
|
|
|
|
Box::new(move |c, term| {
|
|
|
|
let book: &AddressBook = &c.accounts[account_cursor].address_book;
|
|
|
|
let results: Vec<String> = book.search(term);
|
|
|
|
results
|
2019-07-06 17:44:51 +00:00
|
|
|
.into_iter()
|
|
|
|
.map(|r| AutoCompleteEntry::from(r))
|
|
|
|
.collect::<Vec<AutoCompleteEntry>>()
|
2019-03-14 10:19:25 +00:00
|
|
|
}),
|
|
|
|
));
|
2019-03-09 08:24:28 +00:00
|
|
|
} else {
|
|
|
|
self.form.push((k.into(), headers[k].to_string()));
|
|
|
|
}
|
2019-03-02 06:11:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-28 07:46:49 +00:00
|
|
|
fn draw_attachments(&self, grid: &mut CellBuffer, area: Area, context: &Context) {
|
2019-08-01 09:28:36 +00:00
|
|
|
let attachments_no = self.draft.attachments().len();
|
2020-02-08 11:40:47 +00:00
|
|
|
let theme_default = crate::conf::value(context, "theme_default");
|
|
|
|
clear_area(grid, area, theme_default);
|
2019-09-28 07:46:49 +00:00
|
|
|
if self.sign_mail.is_true() {
|
|
|
|
write_string_to_grid(
|
|
|
|
&format!(
|
|
|
|
"☑ sign with {}",
|
2020-03-18 17:13:07 +00:00
|
|
|
mailbox_acc_settings!(context[self.account_cursor].pgp.key)
|
2019-09-28 07:46:49 +00:00
|
|
|
.as_ref()
|
2020-03-18 17:13:07 +00:00
|
|
|
.map(|s| s.as_str())
|
2019-09-28 07:46:49 +00:00
|
|
|
.unwrap_or("default key")
|
|
|
|
),
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 1)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-09-28 07:46:49 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
write_string_to_grid(
|
|
|
|
"☐ don't sign",
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 1)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-09-28 07:46:49 +00:00
|
|
|
);
|
|
|
|
}
|
2019-08-01 09:28:36 +00:00
|
|
|
if attachments_no == 0 {
|
|
|
|
write_string_to_grid(
|
|
|
|
"no attachments",
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 2)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-08-01 09:28:36 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
write_string_to_grid(
|
|
|
|
&format!("{} attachments ", attachments_no),
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 2)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-08-01 09:28:36 +00:00
|
|
|
);
|
|
|
|
for (i, a) in self.draft.attachments().iter().enumerate() {
|
|
|
|
if let Some(name) = a.content_type().name() {
|
|
|
|
write_string_to_grid(
|
|
|
|
&format!(
|
|
|
|
"[{}] \"{}\", {} {} bytes",
|
|
|
|
i,
|
|
|
|
name,
|
|
|
|
a.content_type(),
|
|
|
|
a.raw.len()
|
|
|
|
),
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 3 + i)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-08-01 09:28:36 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
write_string_to_grid(
|
|
|
|
&format!("[{}] {} {} bytes", i, a.content_type(), a.raw.len()),
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-09-28 07:46:49 +00:00
|
|
|
(pos_inc(upper_left!(area), (0, 3 + i)), bottom_right!(area)),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-08-01 09:28:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-30 12:54:30 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 15:00:21 +00:00
|
|
|
impl Component for Composer {
|
|
|
|
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
|
2018-08-16 13:32:47 +00:00
|
|
|
let upper_left = upper_left!(area);
|
|
|
|
let bottom_right = bottom_right!(area);
|
|
|
|
|
2018-08-29 20:08:23 +00:00
|
|
|
let upper_left = set_y(upper_left, get_y(upper_left) + 1);
|
2019-03-14 10:00:41 +00:00
|
|
|
|
2019-08-01 09:28:36 +00:00
|
|
|
if height!(area) < 4 {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-18 12:53:41 +00:00
|
|
|
let width = width!(area);
|
2018-09-03 22:49:29 +00:00
|
|
|
|
2019-03-14 10:00:41 +00:00
|
|
|
if !self.initialized {
|
2019-09-28 07:46:49 +00:00
|
|
|
if self.sign_mail.is_unset() {
|
2020-03-18 17:13:07 +00:00
|
|
|
self.sign_mail = ToggleFlag::InternalVal(*mailbox_acc_settings!(
|
|
|
|
context[self.account_cursor].pgp.auto_sign
|
|
|
|
));
|
2019-09-28 07:46:49 +00:00
|
|
|
}
|
2019-04-10 15:57:09 +00:00
|
|
|
if !self.draft.headers().contains_key("From") || self.draft.headers()["From"].is_empty()
|
|
|
|
{
|
2019-04-10 13:54:25 +00:00
|
|
|
self.draft.headers_mut().insert(
|
|
|
|
"From".into(),
|
2019-07-22 12:14:39 +00:00
|
|
|
crate::components::mail::get_display_name(context, self.account_cursor),
|
2019-04-10 13:54:25 +00:00
|
|
|
);
|
|
|
|
}
|
2019-03-14 10:00:41 +00:00
|
|
|
self.pager.update_from_str(self.draft.body(), Some(77));
|
|
|
|
self.update_form();
|
|
|
|
self.initialized = true;
|
|
|
|
}
|
2019-08-01 09:28:36 +00:00
|
|
|
let header_height = self.form.len();
|
2020-02-08 11:40:47 +00:00
|
|
|
let theme_default = crate::conf::value(context, "theme_default");
|
2019-03-14 10:00:41 +00:00
|
|
|
|
2018-08-16 13:32:47 +00:00
|
|
|
let mid = if width > 80 {
|
|
|
|
let width = width - 80;
|
2019-11-18 12:53:41 +00:00
|
|
|
let mid = width / 2;
|
2018-08-16 13:32:47 +00:00
|
|
|
|
|
|
|
if self.dirty {
|
|
|
|
for i in get_y(upper_left)..=get_y(bottom_right) {
|
2018-08-29 20:08:23 +00:00
|
|
|
//set_and_join_box(grid, (mid, i), VERT_BOUNDARY);
|
2020-02-08 11:40:47 +00:00
|
|
|
grid[(mid, i)]
|
|
|
|
.set_fg(theme_default.fg)
|
|
|
|
.set_bg(theme_default.bg);
|
2018-08-29 20:08:23 +00:00
|
|
|
//set_and_join_box(grid, (mid + 80, i), VERT_BOUNDARY);
|
2020-02-08 11:40:47 +00:00
|
|
|
grid[(mid + 80, i)]
|
|
|
|
.set_fg(theme_default.fg)
|
|
|
|
.set_bg(theme_default.bg);
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
mid
|
2018-08-23 12:36:52 +00:00
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
2018-08-16 13:32:47 +00:00
|
|
|
|
2019-11-18 12:53:41 +00:00
|
|
|
let header_area = (
|
|
|
|
set_x(upper_left, mid + 1),
|
2019-03-26 17:53:39 +00:00
|
|
|
(
|
2019-11-18 12:53:41 +00:00
|
|
|
get_x(bottom_right).saturating_sub(mid),
|
|
|
|
get_y(upper_left) + header_height,
|
|
|
|
),
|
|
|
|
);
|
2019-08-01 09:28:36 +00:00
|
|
|
let attachments_no = self.draft.attachments().len();
|
2019-11-18 12:53:41 +00:00
|
|
|
let attachment_area = (
|
|
|
|
(mid + 1, get_y(bottom_right) - 2 - attachments_no),
|
|
|
|
pos_dec(bottom_right, (mid, 0)),
|
|
|
|
);
|
2018-08-16 13:32:47 +00:00
|
|
|
|
2019-11-18 12:53:41 +00:00
|
|
|
let body_area = (
|
|
|
|
pos_inc(upper_left, (mid + 1, header_height + 1)),
|
|
|
|
pos_dec(bottom_right, (mid, 3 + attachments_no)),
|
|
|
|
);
|
2019-08-01 09:28:36 +00:00
|
|
|
|
2019-03-22 22:28:17 +00:00
|
|
|
let (x, y) = write_string_to_grid(
|
2019-03-26 17:53:39 +00:00
|
|
|
if self.reply_context.is_some() {
|
|
|
|
"COMPOSING REPLY"
|
|
|
|
} else {
|
|
|
|
"COMPOSING MESSAGE"
|
|
|
|
},
|
|
|
|
grid,
|
|
|
|
Color::Byte(189),
|
|
|
|
Color::Byte(167),
|
2020-04-05 09:04:25 +00:00
|
|
|
Attr::DEFAULT,
|
2019-03-26 17:53:39 +00:00
|
|
|
(
|
|
|
|
pos_dec(upper_left!(header_area), (0, 1)),
|
|
|
|
bottom_right!(header_area),
|
|
|
|
),
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-03-26 17:53:39 +00:00
|
|
|
);
|
2020-02-08 11:40:47 +00:00
|
|
|
clear_area(grid, ((x, y), (set_y(bottom_right, y))), theme_default);
|
2019-03-26 17:53:39 +00:00
|
|
|
change_colors(
|
|
|
|
grid,
|
|
|
|
(
|
|
|
|
set_x(pos_dec(upper_left!(header_area), (0, 1)), x),
|
|
|
|
set_y(bottom_right!(header_area), y),
|
|
|
|
),
|
|
|
|
Color::Byte(189),
|
|
|
|
Color::Byte(167),
|
|
|
|
);
|
2020-02-28 07:15:11 +00:00
|
|
|
clear_area(
|
|
|
|
grid,
|
|
|
|
(
|
|
|
|
pos_dec(upper_left, (0, 1)),
|
|
|
|
set_x(bottom_right, get_x(upper_left) + mid),
|
|
|
|
),
|
|
|
|
theme_default,
|
|
|
|
);
|
|
|
|
clear_area(
|
|
|
|
grid,
|
|
|
|
(
|
2019-10-20 08:17:54 +00:00
|
|
|
(
|
2020-02-28 07:15:11 +00:00
|
|
|
get_x(bottom_right).saturating_sub(mid),
|
|
|
|
get_y(upper_left) - 1,
|
2019-10-20 08:17:54 +00:00
|
|
|
),
|
2020-02-28 07:15:11 +00:00
|
|
|
bottom_right,
|
|
|
|
),
|
|
|
|
theme_default,
|
|
|
|
);
|
2019-03-26 17:53:39 +00:00
|
|
|
|
2018-09-03 22:49:29 +00:00
|
|
|
/* Regardless of view mode, do the following */
|
2019-03-26 13:27:02 +00:00
|
|
|
self.form.draw(grid, header_area, context);
|
2019-11-05 06:35:07 +00:00
|
|
|
if let Some(ref mut embed_pty) = self.embed {
|
2019-11-19 20:47:34 +00:00
|
|
|
let embed_area = (upper_left!(header_area), bottom_right!(body_area));
|
2019-11-05 06:35:07 +00:00
|
|
|
match embed_pty {
|
|
|
|
EmbedStatus::Running(_, _) => {
|
|
|
|
let mut guard = embed_pty.lock().unwrap();
|
2020-02-08 11:40:47 +00:00
|
|
|
clear_area(grid, embed_area, theme_default);
|
2019-11-05 06:35:07 +00:00
|
|
|
copy_area(
|
|
|
|
grid,
|
|
|
|
&guard.grid,
|
2019-11-19 20:47:34 +00:00
|
|
|
embed_area,
|
2019-11-05 06:35:07 +00:00
|
|
|
((0, 0), pos_dec(guard.terminal_size, (1, 1))),
|
|
|
|
);
|
2019-11-19 20:47:34 +00:00
|
|
|
guard.set_terminal_size((width!(embed_area), height!(embed_area)));
|
2019-11-05 06:35:07 +00:00
|
|
|
context.dirty_areas.push_back(area);
|
|
|
|
self.dirty = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EmbedStatus::Stopped(_, _) => {
|
2020-02-08 11:40:47 +00:00
|
|
|
clear_area(grid, body_area, theme_default);
|
2019-11-05 06:35:07 +00:00
|
|
|
write_string_to_grid(
|
|
|
|
"process has stopped, press 'e' to re-activate",
|
|
|
|
grid,
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
|
|
|
theme_default.attrs,
|
2019-11-05 06:35:07 +00:00
|
|
|
body_area,
|
2019-11-18 11:06:30 +00:00
|
|
|
None,
|
2019-11-05 06:35:07 +00:00
|
|
|
);
|
2019-11-19 20:47:34 +00:00
|
|
|
context.dirty_areas.push_back(area);
|
2019-11-05 06:35:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.embed_area = (upper_left!(header_area), bottom_right!(body_area));
|
2019-12-14 16:50:05 +00:00
|
|
|
self.pager.set_dirty(true);
|
2019-11-05 06:35:07 +00:00
|
|
|
self.pager.draw(grid, body_area, context);
|
|
|
|
}
|
|
|
|
|
2019-10-20 08:17:54 +00:00
|
|
|
if self.cursor == Cursor::Body {
|
|
|
|
change_colors(
|
|
|
|
grid,
|
|
|
|
(
|
|
|
|
set_y(upper_left!(body_area), get_y(bottom_right!(body_area))),
|
|
|
|
bottom_right!(body_area),
|
|
|
|
),
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
2019-10-20 08:17:54 +00:00
|
|
|
Color::Byte(237),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
change_colors(
|
|
|
|
grid,
|
|
|
|
(
|
|
|
|
set_y(upper_left!(body_area), get_y(bottom_right!(body_area))),
|
|
|
|
bottom_right!(body_area),
|
|
|
|
),
|
2020-02-08 11:40:47 +00:00
|
|
|
theme_default.fg,
|
|
|
|
theme_default.bg,
|
2019-10-20 08:17:54 +00:00
|
|
|
);
|
|
|
|
}
|
2019-02-18 21:14:06 +00:00
|
|
|
|
|
|
|
match self.mode {
|
2019-11-18 12:53:41 +00:00
|
|
|
ViewMode::Edit | ViewMode::Embed => {}
|
2019-11-19 20:46:25 +00:00
|
|
|
ViewMode::Send(ref mut s) => {
|
|
|
|
s.draw(grid, center_area(area, s.content.size()), context);
|
|
|
|
}
|
2019-10-03 09:22:01 +00:00
|
|
|
ViewMode::SelectRecipients(ref mut s) => {
|
|
|
|
s.draw(grid, center_area(area, s.content.size()), context);
|
|
|
|
}
|
2019-10-02 22:03:20 +00:00
|
|
|
ViewMode::Discard(_, ref mut s) => {
|
2019-02-18 21:14:06 +00:00
|
|
|
/* Let user choose whether to quit with/without saving or cancel */
|
2019-10-02 22:03:20 +00:00
|
|
|
s.draw(grid, center_area(area, s.content.size()), context);
|
2019-03-14 10:19:25 +00:00
|
|
|
}
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
2019-10-20 08:17:54 +00:00
|
|
|
self.dirty = false;
|
2019-08-01 09:28:36 +00:00
|
|
|
self.draw_attachments(grid, attachment_area, context);
|
2018-09-03 22:49:29 +00:00
|
|
|
context.dirty_areas.push_back(area);
|
2018-08-11 15:00:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-22 09:47:13 +00:00
|
|
|
fn process_event(&mut self, mut event: &mut UIEvent, context: &mut Context) -> bool {
|
2019-11-29 10:15:05 +00:00
|
|
|
let shortcuts = self.get_shortcuts(context);
|
2020-02-22 09:47:13 +00:00
|
|
|
match (&mut self.mode, &mut event) {
|
2020-07-05 10:22:48 +00:00
|
|
|
(_, UIEvent::StatusEvent(StatusEvent::JobFinished(ref job_id)))
|
|
|
|
if self
|
|
|
|
.reply_bytes_request
|
|
|
|
.as_ref()
|
|
|
|
.map(|(j, _)| j == job_id)
|
|
|
|
.unwrap_or(false) =>
|
|
|
|
{
|
|
|
|
let bytes = self
|
|
|
|
.reply_bytes_request
|
|
|
|
.take()
|
|
|
|
.unwrap()
|
|
|
|
.1
|
|
|
|
.try_recv()
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
match bytes {
|
|
|
|
Ok(parent_bytes) => {
|
|
|
|
let env_hash = self.reply_context.unwrap().1;
|
|
|
|
let parent_message = context.accounts[self.account_cursor]
|
|
|
|
.collection
|
|
|
|
.get_env(env_hash);
|
|
|
|
let mut new_draft = Draft::new_reply(&parent_message, &parent_bytes);
|
|
|
|
new_draft
|
|
|
|
.headers_mut()
|
|
|
|
.extend(self.draft.headers_mut().drain());
|
|
|
|
new_draft
|
|
|
|
.attachments_mut()
|
|
|
|
.extend(self.draft.attachments_mut().drain(..));
|
|
|
|
self.set_draft(new_draft);
|
|
|
|
self.set_dirty(true);
|
|
|
|
self.initialized = false;
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some(format!("Failed to load parent envelope")),
|
|
|
|
err.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
(ViewMode::Edit, _) => {
|
2018-09-03 22:49:29 +00:00
|
|
|
if self.pager.process_event(event, context) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-22 09:47:13 +00:00
|
|
|
(ViewMode::Send(ref selector), UIEvent::FinishedUIDialog(id, result))
|
|
|
|
if selector.id() == *id =>
|
|
|
|
{
|
|
|
|
if let Some(true) = result.downcast_ref::<bool>() {
|
|
|
|
self.update_draft();
|
|
|
|
if send_draft(
|
|
|
|
self.sign_mail,
|
|
|
|
context,
|
|
|
|
self.account_cursor,
|
|
|
|
self.draft.clone(),
|
|
|
|
SpecialUsageMailbox::Sent,
|
|
|
|
Flag::SEEN,
|
|
|
|
) {
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::Action(Tab(Kill(self.id))));
|
|
|
|
} else {
|
|
|
|
save_draft(
|
|
|
|
self.draft.clone().finalise().unwrap().as_bytes(),
|
|
|
|
context,
|
|
|
|
SpecialUsageMailbox::Drafts,
|
|
|
|
Flag::SEEN | Flag::DRAFT,
|
|
|
|
self.account_cursor,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
(ViewMode::Send(ref mut selector), _) => {
|
2019-11-19 20:46:25 +00:00
|
|
|
if selector.process_event(event, context) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-22 09:47:13 +00:00
|
|
|
(
|
|
|
|
ViewMode::SelectRecipients(ref selector),
|
|
|
|
UIEvent::FinishedUIDialog(id, ref mut result),
|
|
|
|
) if selector.id() == *id => {
|
|
|
|
if let Some(to_val) = result.downcast_mut::<String>() {
|
|
|
|
self.draft
|
|
|
|
.headers_mut()
|
|
|
|
.insert("To".to_string(), std::mem::replace(to_val, String::new()));
|
|
|
|
self.update_form();
|
|
|
|
}
|
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-17 23:48:29 +00:00
|
|
|
(ViewMode::SelectRecipients(ref mut selector), _) => {
|
2019-10-03 09:22:01 +00:00
|
|
|
if selector.process_event(event, context) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-22 09:47:13 +00:00
|
|
|
(ViewMode::Discard(u, ref selector), UIEvent::FinishedUIDialog(id, ref mut result))
|
|
|
|
if selector.id() == *id =>
|
|
|
|
{
|
|
|
|
if let Some(key) = result.downcast_mut::<char>() {
|
|
|
|
match key {
|
|
|
|
'x' => {
|
|
|
|
context.replies.push_back(UIEvent::Action(Tab(Kill(*u))));
|
|
|
|
return true;
|
2019-10-02 22:03:20 +00:00
|
|
|
}
|
2020-02-22 09:47:13 +00:00
|
|
|
'n' => {}
|
|
|
|
'y' => {
|
|
|
|
save_draft(
|
|
|
|
self.draft.clone().finalise().unwrap().as_bytes(),
|
|
|
|
context,
|
|
|
|
SpecialUsageMailbox::Drafts,
|
|
|
|
Flag::SEEN | Flag::DRAFT,
|
|
|
|
self.account_cursor,
|
|
|
|
);
|
|
|
|
context.replies.push_back(UIEvent::Action(Tab(Kill(*u))));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
_ => {}
|
2019-10-02 22:03:20 +00:00
|
|
|
}
|
2020-02-22 09:47:13 +00:00
|
|
|
}
|
|
|
|
self.set_dirty(true);
|
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
(ViewMode::Discard(_, ref mut selector), _) => {
|
|
|
|
if selector.process_event(event, context) {
|
2019-10-02 22:03:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2018-09-03 22:49:29 +00:00
|
|
|
_ => {}
|
2018-08-23 11:39:54 +00:00
|
|
|
}
|
2019-11-19 20:47:34 +00:00
|
|
|
if self.cursor == Cursor::Headers
|
|
|
|
&& self.mode.is_edit()
|
|
|
|
&& self.form.process_event(event, context)
|
|
|
|
{
|
2019-10-20 08:17:54 +00:00
|
|
|
if let UIEvent::InsertInput(_) = event {
|
|
|
|
self.has_changes = true;
|
|
|
|
}
|
2019-03-02 06:11:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-08-23 11:39:54 +00:00
|
|
|
|
2019-04-10 20:37:20 +00:00
|
|
|
match *event {
|
|
|
|
UIEvent::Resize => {
|
2019-12-14 16:50:05 +00:00
|
|
|
self.set_dirty(true);
|
2019-03-14 10:19:25 +00:00
|
|
|
}
|
2019-03-02 06:11:38 +00:00
|
|
|
/*
|
2018-09-03 22:49:29 +00:00
|
|
|
/* Switch e-mail From: field to the `left` configured account. */
|
2019-04-10 20:37:20 +00:00
|
|
|
UIEvent::Input(Key::Left) if self.cursor == Cursor::From => {
|
2019-03-14 10:19:25 +00:00
|
|
|
self.account_cursor = self.account_cursor.saturating_sub(1);
|
|
|
|
self.draft.headers_mut().insert(
|
|
|
|
"From".into(),
|
|
|
|
get_display_name(context, self.account_cursor),
|
|
|
|
);
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
2018-08-30 12:54:30 +00:00
|
|
|
}
|
2018-09-03 22:49:29 +00:00
|
|
|
/* Switch e-mail From: field to the `right` configured account. */
|
2019-04-10 20:37:20 +00:00
|
|
|
UIEvent::Input(Key::Right) if self.cursor == Cursor::From => {
|
2019-03-14 10:19:25 +00:00
|
|
|
if self.account_cursor + 1 < context.accounts.len() {
|
|
|
|
self.account_cursor += 1;
|
|
|
|
self.draft.headers_mut().insert(
|
|
|
|
"From".into(),
|
|
|
|
get_display_name(context, self.account_cursor),
|
|
|
|
);
|
|
|
|
self.dirty = true;
|
|
|
|
}
|
|
|
|
return true;
|
2019-03-02 06:11:38 +00:00
|
|
|
}*/
|
2019-12-14 12:16:12 +00:00
|
|
|
UIEvent::Input(ref key)
|
|
|
|
if shortcut!(key == shortcuts[Self::DESCRIPTION]["scroll_up"]) =>
|
|
|
|
{
|
2019-03-02 06:11:38 +00:00
|
|
|
self.cursor = Cursor::Headers;
|
2019-10-20 08:17:54 +00:00
|
|
|
self.form.process_event(event, context);
|
|
|
|
self.dirty = true;
|
2019-03-14 10:19:25 +00:00
|
|
|
}
|
2019-12-14 12:16:12 +00:00
|
|
|
UIEvent::Input(ref key)
|
|
|
|
if shortcut!(key == shortcuts[Self::DESCRIPTION]["scroll_down"]) =>
|
|
|
|
{
|
2019-03-02 06:11:38 +00:00
|
|
|
self.cursor = Cursor::Body;
|
2019-10-20 08:17:54 +00:00
|
|
|
self.dirty = true;
|
2019-03-14 10:19:25 +00:00
|
|
|
}
|
2019-11-29 10:15:05 +00:00
|
|
|
UIEvent::Input(ref key)
|
|
|
|
if shortcut!(key == shortcuts[Self::DESCRIPTION]["send_mail"])
|
|
|
|
&& self.mode.is_edit() =>
|
|
|
|
{
|
2019-06-18 19:13:54 +00:00
|
|
|
self.update_draft();
|
2020-02-22 09:47:13 +00:00
|
|
|
self.mode = ViewMode::Send(UIConfirmationDialog::new(
|
2019-11-19 20:46:25 +00:00
|
|
|
"send mail?",
|
|
|
|
vec![(true, "yes".to_string()), (false, "no".to_string())],
|
|
|
|
/* only one choice */
|
|
|
|
true,
|
2020-02-22 09:47:13 +00:00
|
|
|
Some(Box::new(move |id: ComponentId, result: bool| {
|
|
|
|
Some(UIEvent::FinishedUIDialog(id, Box::new(result)))
|
|
|
|
})),
|
2019-09-28 07:46:49 +00:00
|
|
|
context,
|
2019-11-19 20:46:25 +00:00
|
|
|
));
|
2019-04-05 22:08:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-11-05 06:35:07 +00:00
|
|
|
UIEvent::EmbedInput((Key::Ctrl('z'), _)) => {
|
|
|
|
self.embed.as_ref().unwrap().lock().unwrap().stop();
|
2019-11-19 20:47:34 +00:00
|
|
|
match self.embed.take() {
|
|
|
|
Some(EmbedStatus::Running(e, f)) | Some(EmbedStatus::Stopped(e, f)) => {
|
|
|
|
self.embed = Some(EmbedStatus::Stopped(e, f));
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
2019-11-05 06:35:07 +00:00
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Normal));
|
|
|
|
self.dirty = true;
|
|
|
|
}
|
|
|
|
UIEvent::EmbedInput((ref k, ref b)) => {
|
|
|
|
use std::io::Write;
|
|
|
|
if let Some(ref mut embed) = self.embed {
|
|
|
|
let mut embed_guard = embed.lock().unwrap();
|
|
|
|
if embed_guard.stdin.write_all(b).is_err() {
|
|
|
|
match embed_guard.is_active() {
|
|
|
|
Ok(WaitStatus::Exited(_, exit_code)) => {
|
|
|
|
drop(embed_guard);
|
|
|
|
if exit_code != 0 {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
format!(
|
|
|
|
"Subprocess has exited with exit code {}",
|
|
|
|
exit_code
|
|
|
|
),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
} else if let EmbedStatus::Running(_, f) = embed {
|
|
|
|
let result = f.read_to_string();
|
|
|
|
match Draft::from_str(result.as_str()) {
|
|
|
|
Ok(mut new_draft) => {
|
|
|
|
std::mem::swap(
|
|
|
|
self.draft.attachments_mut(),
|
|
|
|
new_draft.attachments_mut(),
|
|
|
|
);
|
|
|
|
if self.draft != new_draft {
|
|
|
|
self.has_changes = true;
|
|
|
|
}
|
|
|
|
self.draft = new_draft;
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
"Could not parse draft headers correctly. The invalid text has been set as the body of your draft".to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
self.draft.set_body(result);
|
|
|
|
self.has_changes = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.initialized = false;
|
|
|
|
}
|
|
|
|
self.embed = None;
|
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Normal));
|
|
|
|
}
|
|
|
|
Ok(WaitStatus::Stopped(_, _)) => {
|
|
|
|
drop(embed_guard);
|
|
|
|
match self.embed.take() {
|
|
|
|
Some(EmbedStatus::Running(e, f))
|
|
|
|
| Some(EmbedStatus::Stopped(e, f)) => {
|
|
|
|
self.embed = Some(EmbedStatus::Stopped(e, f));
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
2019-11-19 20:47:34 +00:00
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Normal));
|
2019-11-05 06:35:07 +00:00
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Ok(WaitStatus::Continued(_)) | Ok(WaitStatus::StillAlive) => {
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::EmbedInput((k.clone(), b.to_vec())));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
e => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
format!("Subprocess has exited with reason {:?}", e),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
drop(embed_guard);
|
|
|
|
self.embed = None;
|
|
|
|
self.mode = ViewMode::Edit;
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Normal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-14 16:50:05 +00:00
|
|
|
self.set_dirty(true);
|
2019-11-05 06:35:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-11-29 10:15:05 +00:00
|
|
|
UIEvent::Input(ref key)
|
|
|
|
if self.embed.is_some()
|
|
|
|
&& shortcut!(key == shortcuts[Self::DESCRIPTION]["edit_mail"]) =>
|
|
|
|
{
|
2019-11-05 06:35:07 +00:00
|
|
|
self.embed.as_ref().unwrap().lock().unwrap().wake_up();
|
2019-11-19 20:47:34 +00:00
|
|
|
match self.embed.take() {
|
|
|
|
Some(EmbedStatus::Running(e, f)) | Some(EmbedStatus::Stopped(e, f)) => {
|
|
|
|
self.embed = Some(EmbedStatus::Running(e, f));
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
self.mode = ViewMode::Embed;
|
2019-11-05 06:35:07 +00:00
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Embed));
|
2019-12-14 16:50:05 +00:00
|
|
|
self.set_dirty(true);
|
2019-11-05 06:35:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-11-29 10:15:05 +00:00
|
|
|
UIEvent::Input(ref key)
|
|
|
|
if self.mode.is_edit()
|
|
|
|
&& shortcut!(key == shortcuts[Self::DESCRIPTION]["edit_mail"]) =>
|
|
|
|
{
|
2019-03-14 10:19:25 +00:00
|
|
|
/* Edit draft in $EDITOR */
|
2020-07-08 09:09:37 +00:00
|
|
|
let editor = if let Some(editor_command) =
|
|
|
|
mailbox_acc_settings!(context[self.account_cursor].composing.editor_command)
|
2020-03-18 17:13:07 +00:00
|
|
|
.as_ref()
|
|
|
|
{
|
2020-07-08 09:09:37 +00:00
|
|
|
editor_command.to_string()
|
2019-09-27 09:48:48 +00:00
|
|
|
} else {
|
|
|
|
match std::env::var("EDITOR") {
|
|
|
|
Err(e) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some(e.to_string()),
|
2020-07-08 09:09:37 +00:00
|
|
|
"$EDITOR is not set. You can change an envvar's value with setenv or set composing.editor_command setting in your configuration.".to_string(),
|
2019-09-15 20:35:30 +00:00
|
|
|
Some(NotificationType::ERROR),
|
2019-08-01 09:26:35 +00:00
|
|
|
));
|
2019-09-27 09:48:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Ok(v) => v,
|
2019-08-01 09:26:35 +00:00
|
|
|
}
|
|
|
|
};
|
2019-03-14 10:19:25 +00:00
|
|
|
/* update Draft's headers based on form values */
|
|
|
|
self.update_draft();
|
2019-07-31 10:29:55 +00:00
|
|
|
let f = create_temp_file(
|
|
|
|
self.draft.to_string().unwrap().as_str().as_bytes(),
|
|
|
|
None,
|
|
|
|
None,
|
2019-09-23 06:30:23 +00:00
|
|
|
true,
|
2019-07-31 10:29:55 +00:00
|
|
|
);
|
2019-03-14 10:19:25 +00:00
|
|
|
|
2020-03-18 17:13:07 +00:00
|
|
|
if *mailbox_acc_settings!(context[self.account_cursor].composing.embed) {
|
2019-11-05 06:35:07 +00:00
|
|
|
self.embed = Some(EmbedStatus::Running(
|
|
|
|
crate::terminal::embed::create_pty(
|
2019-11-19 18:39:43 +00:00
|
|
|
width!(self.embed_area),
|
|
|
|
height!(self.embed_area),
|
2019-11-05 06:35:07 +00:00
|
|
|
[editor, f.path().display().to_string()].join(" "),
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
f,
|
|
|
|
));
|
|
|
|
self.dirty = true;
|
|
|
|
context
|
|
|
|
.replies
|
|
|
|
.push_back(UIEvent::ChangeMode(UIMode::Embed));
|
2019-11-19 20:47:34 +00:00
|
|
|
context.replies.push_back(UIEvent::Fork(ForkType::Embed(
|
|
|
|
self.embed.as_ref().unwrap().lock().unwrap().child_pid,
|
|
|
|
)));
|
2019-11-05 06:35:07 +00:00
|
|
|
self.mode = ViewMode::Embed;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
use std::process::{Command, Stdio};
|
|
|
|
/* Kill input thread so that spawned command can be sole receiver of stdin */
|
|
|
|
{
|
|
|
|
context.input_kill();
|
|
|
|
}
|
|
|
|
|
2020-07-08 09:09:37 +00:00
|
|
|
let editor_command = format!("{} {}", editor, f.path().display());
|
2020-05-28 13:27:02 +00:00
|
|
|
log(
|
2020-07-08 09:09:37 +00:00
|
|
|
format!(
|
|
|
|
"Executing: sh -c \"{}\"",
|
|
|
|
editor_command.replace("\"", "\\\"")
|
|
|
|
),
|
2020-05-28 13:27:02 +00:00
|
|
|
DEBUG,
|
|
|
|
);
|
|
|
|
match Command::new("sh")
|
2020-07-08 09:09:37 +00:00
|
|
|
.args(&["-c", &editor_command])
|
2019-03-14 10:19:25 +00:00
|
|
|
.stdin(Stdio::inherit())
|
|
|
|
.stdout(Stdio::inherit())
|
2020-03-01 15:56:58 +00:00
|
|
|
.spawn()
|
2019-08-01 09:26:35 +00:00
|
|
|
{
|
2020-03-01 15:56:58 +00:00
|
|
|
Ok(mut child) => {
|
|
|
|
let _ = child.wait();
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some(format!("Failed to execute {}: {}", editor, err)),
|
|
|
|
err.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
context.replies.push_back(UIEvent::Fork(ForkType::Finished));
|
|
|
|
context.restore_input();
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-01 09:26:35 +00:00
|
|
|
}
|
2019-11-05 06:35:07 +00:00
|
|
|
context.replies.push_back(UIEvent::Fork(ForkType::Finished));
|
2019-03-14 10:19:25 +00:00
|
|
|
let result = f.read_to_string();
|
2019-11-05 06:35:07 +00:00
|
|
|
match Draft::from_str(result.as_str()) {
|
|
|
|
Ok(mut new_draft) => {
|
|
|
|
std::mem::swap(self.draft.attachments_mut(), new_draft.attachments_mut());
|
|
|
|
if self.draft != new_draft {
|
|
|
|
self.has_changes = true;
|
|
|
|
}
|
|
|
|
self.draft = new_draft;
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
|
|
|
"Could not parse draft headers correctly. The invalid text has been set as the body of your draft".to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
self.draft.set_body(result);
|
|
|
|
self.has_changes = true;
|
|
|
|
}
|
2019-10-20 08:17:54 +00:00
|
|
|
}
|
2019-03-14 10:19:25 +00:00
|
|
|
self.initialized = false;
|
2018-08-16 13:32:47 +00:00
|
|
|
self.dirty = true;
|
2018-08-23 11:39:54 +00:00
|
|
|
return true;
|
2018-08-23 12:36:52 +00:00
|
|
|
}
|
2019-08-01 09:28:36 +00:00
|
|
|
UIEvent::Action(ref a) => {
|
|
|
|
match a {
|
2020-07-08 09:09:37 +00:00
|
|
|
Action::Compose(ComposeAction::AddAttachmentPipe(ref command)) => {
|
|
|
|
if command.is_empty() {
|
2020-03-01 15:47:23 +00:00
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
2020-07-08 09:09:37 +00:00
|
|
|
format!("pipe command value is invalid: {}", command),
|
2020-03-01 15:47:23 +00:00
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let f = create_temp_file(&[], None, None, true);
|
2020-05-28 13:27:02 +00:00
|
|
|
match std::process::Command::new("sh")
|
2020-07-08 09:09:37 +00:00
|
|
|
.args(&["-c", command])
|
2020-03-01 15:47:23 +00:00
|
|
|
.stdin(std::process::Stdio::null())
|
|
|
|
.stdout(std::process::Stdio::from(f.file()))
|
|
|
|
.spawn()
|
|
|
|
{
|
|
|
|
Ok(child) => {
|
2020-03-01 15:56:58 +00:00
|
|
|
let _ = child
|
2020-03-01 15:47:23 +00:00
|
|
|
.wait_with_output()
|
2020-07-08 09:09:37 +00:00
|
|
|
.expect("failed to launch command")
|
2020-03-01 15:47:23 +00:00
|
|
|
.stdout;
|
|
|
|
let mut attachment =
|
|
|
|
match melib::email::attachment_from_file(f.path()) {
|
|
|
|
Ok(a) => a,
|
|
|
|
Err(e) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some("could not add attachment".to_string()),
|
|
|
|
e.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if let Ok(mime_type) = query_mime_info(f.path()) {
|
|
|
|
match attachment.content_type {
|
|
|
|
ContentType::Other { ref mut tag, .. } => {
|
|
|
|
*tag = mime_type;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.draft.attachments_mut().push(attachment);
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
2020-07-08 09:09:37 +00:00
|
|
|
format!("could not execute pipe command {}: {}", command, err),
|
2020-03-01 15:47:23 +00:00
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-01 09:28:36 +00:00
|
|
|
Action::Compose(ComposeAction::AddAttachment(ref path)) => {
|
|
|
|
let mut attachment = match melib::email::attachment_from_file(path) {
|
|
|
|
Ok(a) => a,
|
|
|
|
Err(e) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some("could not add attachment".to_string()),
|
|
|
|
e.to_string(),
|
2019-09-15 20:35:30 +00:00
|
|
|
Some(NotificationType::ERROR),
|
2019-08-01 09:28:36 +00:00
|
|
|
));
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if let Ok(mime_type) = query_mime_info(path) {
|
|
|
|
match attachment.content_type {
|
|
|
|
ContentType::Other { ref mut tag, .. } => {
|
|
|
|
*tag = mime_type;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.draft.attachments_mut().push(attachment);
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Action::Compose(ComposeAction::RemoveAttachment(idx)) => {
|
|
|
|
if *idx + 1 > self.draft.attachments().len() {
|
|
|
|
context.replies.push_back(UIEvent::StatusEvent(
|
|
|
|
StatusEvent::DisplayMessage(
|
|
|
|
"attachment with given index does not exist".to_string(),
|
|
|
|
),
|
|
|
|
));
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
self.draft.attachments_mut().remove(*idx);
|
|
|
|
context.replies.push_back(UIEvent::StatusEvent(
|
|
|
|
StatusEvent::DisplayMessage("attachment removed".to_string()),
|
|
|
|
));
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
2020-06-23 16:25:01 +00:00
|
|
|
Action::Compose(ComposeAction::SaveDraft) => {
|
|
|
|
save_draft(
|
|
|
|
self.draft.clone().finalise().unwrap().as_bytes(),
|
|
|
|
context,
|
|
|
|
SpecialUsageMailbox::Drafts,
|
|
|
|
Flag::SEEN | Flag::DRAFT,
|
|
|
|
self.account_cursor,
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-28 07:46:49 +00:00
|
|
|
Action::Compose(ComposeAction::ToggleSign) => {
|
|
|
|
let is_true = self.sign_mail.is_true();
|
|
|
|
self.sign_mail = ToggleFlag::from(!is_true);
|
|
|
|
self.dirty = true;
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-01 09:28:36 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 12:36:52 +00:00
|
|
|
_ => {}
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
2018-08-23 11:39:54 +00:00
|
|
|
false
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
2018-08-11 15:00:21 +00:00
|
|
|
|
|
|
|
fn is_dirty(&self) -> bool {
|
2019-11-05 06:35:07 +00:00
|
|
|
match self.mode {
|
|
|
|
ViewMode::Embed => true,
|
2019-11-18 12:53:41 +00:00
|
|
|
_ => self.dirty || self.pager.is_dirty() || self.form.is_dirty(),
|
2019-11-05 06:35:07 +00:00
|
|
|
}
|
2018-08-16 13:32:47 +00:00
|
|
|
}
|
2018-08-24 23:23:40 +00:00
|
|
|
|
2019-12-14 16:50:05 +00:00
|
|
|
fn set_dirty(&mut self, value: bool) {
|
|
|
|
self.dirty = value;
|
|
|
|
self.pager.set_dirty(value);
|
|
|
|
self.form.set_dirty(value);
|
2018-09-03 22:49:29 +00:00
|
|
|
}
|
|
|
|
|
2019-10-06 08:28:12 +00:00
|
|
|
fn kill(&mut self, uuid: Uuid, context: &mut Context) {
|
2020-02-28 07:18:31 +00:00
|
|
|
if self.id != uuid {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-20 08:17:54 +00:00
|
|
|
if !self.has_changes {
|
|
|
|
context.replies.push_back(UIEvent::Action(Tab(Kill(uuid))));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-02 22:03:20 +00:00
|
|
|
self.mode = ViewMode::Discard(
|
|
|
|
uuid,
|
2020-02-19 14:57:37 +00:00
|
|
|
UIDialog::new(
|
2019-10-02 22:03:20 +00:00
|
|
|
"this draft has unsaved changes",
|
|
|
|
vec![
|
|
|
|
('x', "quit without saving".to_string()),
|
|
|
|
('y', "save draft and quit".to_string()),
|
|
|
|
('n', "cancel".to_string()),
|
|
|
|
],
|
|
|
|
true,
|
2020-02-22 09:47:13 +00:00
|
|
|
Some(Box::new(move |id: ComponentId, results: &[char]| {
|
|
|
|
Some(UIEvent::FinishedUIDialog(
|
|
|
|
id,
|
|
|
|
Box::new(results.get(0).map(|c| *c).unwrap_or('n')),
|
|
|
|
))
|
|
|
|
})),
|
2019-10-06 08:28:12 +00:00
|
|
|
context,
|
2019-10-02 22:03:20 +00:00
|
|
|
),
|
|
|
|
);
|
2018-08-11 15:00:21 +00:00
|
|
|
}
|
2019-03-30 22:28:01 +00:00
|
|
|
|
2019-05-10 19:00:56 +00:00
|
|
|
fn get_shortcuts(&self, context: &Context) -> ShortcutMaps {
|
2019-11-18 12:53:41 +00:00
|
|
|
let mut map = if self.mode.is_edit() {
|
2019-04-04 11:24:05 +00:00
|
|
|
self.pager.get_shortcuts(context)
|
2019-03-30 22:28:01 +00:00
|
|
|
} else {
|
|
|
|
Default::default()
|
|
|
|
};
|
|
|
|
|
2020-03-18 17:13:07 +00:00
|
|
|
let our_map: ShortcutMap =
|
|
|
|
mailbox_acc_settings!(context[self.account_cursor].shortcuts.composing).key_values();
|
2019-11-18 20:20:18 +00:00
|
|
|
map.insert(Composer::DESCRIPTION, our_map);
|
2019-03-30 22:28:01 +00:00
|
|
|
|
|
|
|
map
|
|
|
|
}
|
2019-04-10 19:01:02 +00:00
|
|
|
|
|
|
|
fn id(&self) -> ComponentId {
|
|
|
|
self.id
|
|
|
|
}
|
|
|
|
fn set_id(&mut self, id: ComponentId) {
|
|
|
|
self.id = id;
|
|
|
|
}
|
2019-09-27 10:14:16 +00:00
|
|
|
|
2019-10-06 08:28:12 +00:00
|
|
|
fn can_quit_cleanly(&mut self, context: &Context) -> bool {
|
2019-10-20 08:17:54 +00:00
|
|
|
if !self.has_changes {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-19 14:57:37 +00:00
|
|
|
let id = self.id;
|
2019-09-27 10:14:16 +00:00
|
|
|
/* Play it safe and ask user for confirmation */
|
2019-10-02 22:03:20 +00:00
|
|
|
self.mode = ViewMode::Discard(
|
2020-02-19 14:57:37 +00:00
|
|
|
id,
|
|
|
|
UIDialog::new(
|
2019-10-02 22:03:20 +00:00
|
|
|
"this draft has unsaved changes",
|
|
|
|
vec![
|
|
|
|
('x', "quit without saving".to_string()),
|
|
|
|
('y', "save draft and quit".to_string()),
|
|
|
|
('n', "cancel".to_string()),
|
|
|
|
],
|
|
|
|
true,
|
2020-02-22 09:47:13 +00:00
|
|
|
Some(Box::new(move |id: ComponentId, results: &[char]| {
|
|
|
|
Some(UIEvent::FinishedUIDialog(
|
|
|
|
id,
|
|
|
|
Box::new(results.get(0).map(|c| *c).unwrap_or('n')),
|
|
|
|
))
|
|
|
|
})),
|
2019-10-06 08:28:12 +00:00
|
|
|
context,
|
2019-10-02 22:03:20 +00:00
|
|
|
),
|
|
|
|
);
|
2019-12-14 16:50:05 +00:00
|
|
|
self.set_dirty(true);
|
2019-09-27 10:14:16 +00:00
|
|
|
false
|
|
|
|
}
|
2018-08-11 15:00:21 +00:00
|
|
|
}
|
2018-08-30 12:54:30 +00:00
|
|
|
|
2019-09-28 07:46:49 +00:00
|
|
|
pub fn send_draft(
|
|
|
|
sign_mail: ToggleFlag,
|
|
|
|
context: &mut Context,
|
|
|
|
account_cursor: usize,
|
|
|
|
mut draft: Draft,
|
2020-02-26 08:54:10 +00:00
|
|
|
mailbox_type: SpecialUsageMailbox,
|
2019-12-03 11:27:35 +00:00
|
|
|
flags: Flag,
|
2019-09-28 07:46:49 +00:00
|
|
|
) -> bool {
|
2019-06-18 19:13:54 +00:00
|
|
|
use std::io::Write;
|
|
|
|
use std::process::{Command, Stdio};
|
2020-03-18 17:13:07 +00:00
|
|
|
let format_flowed = *mailbox_acc_settings!(context[account_cursor].composing.format_flowed);
|
2020-07-08 09:09:37 +00:00
|
|
|
let command = mailbox_acc_settings!(context[account_cursor].composing.mailer_command);
|
|
|
|
if command.is_empty() {
|
2019-11-19 20:46:25 +00:00
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
None,
|
2020-07-08 09:09:37 +00:00
|
|
|
String::from("mailer_command configuration value is empty"),
|
2019-11-19 20:46:25 +00:00
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
return false;
|
|
|
|
}
|
2019-12-03 11:27:35 +00:00
|
|
|
let bytes;
|
2020-05-28 13:27:02 +00:00
|
|
|
let mut msmtp = Command::new("sh")
|
2020-07-08 09:09:37 +00:00
|
|
|
.args(&["-c", command])
|
2019-06-18 19:13:54 +00:00
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.spawn()
|
|
|
|
.expect("Failed to start mailer command");
|
|
|
|
{
|
|
|
|
let stdin = msmtp.stdin.as_mut().expect("failed to open stdin");
|
2019-09-28 07:46:49 +00:00
|
|
|
if sign_mail.is_true() {
|
2019-11-17 11:27:22 +00:00
|
|
|
let mut content_type = ContentType::default();
|
|
|
|
if format_flowed {
|
|
|
|
if let ContentType::Text {
|
|
|
|
ref mut parameters, ..
|
|
|
|
} = content_type
|
|
|
|
{
|
|
|
|
parameters.push((b"format".to_vec(), b"flowed".to_vec()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-28 07:46:49 +00:00
|
|
|
let mut body: AttachmentBuilder = Attachment::new(
|
2019-11-17 11:27:22 +00:00
|
|
|
content_type,
|
2019-09-28 07:46:49 +00:00
|
|
|
Default::default(),
|
|
|
|
std::mem::replace(&mut draft.body, String::new()).into_bytes(),
|
|
|
|
)
|
|
|
|
.into();
|
|
|
|
if !draft.attachments.is_empty() {
|
|
|
|
let mut parts = std::mem::replace(&mut draft.attachments, Vec::new());
|
|
|
|
parts.insert(0, body);
|
|
|
|
let boundary = ContentType::make_boundary(&parts);
|
|
|
|
body = Attachment::new(
|
|
|
|
ContentType::Multipart {
|
|
|
|
boundary: boundary.into_bytes(),
|
|
|
|
kind: MultipartType::Mixed,
|
|
|
|
parts: parts.into_iter().map(|a| a.into()).collect::<Vec<_>>(),
|
|
|
|
},
|
|
|
|
Default::default(),
|
|
|
|
Vec::new(),
|
|
|
|
)
|
|
|
|
.into();
|
|
|
|
}
|
|
|
|
let output = crate::components::mail::pgp::sign(
|
|
|
|
body.into(),
|
2020-03-18 17:13:07 +00:00
|
|
|
mailbox_acc_settings!(context[account_cursor].pgp.gpg_binary)
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.as_str()),
|
|
|
|
mailbox_acc_settings!(context[account_cursor].pgp.key)
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.as_str()),
|
2019-09-28 07:46:49 +00:00
|
|
|
);
|
|
|
|
if let Err(e) = &output {
|
|
|
|
debug!("{:?} could not sign draft msg", e);
|
|
|
|
log(
|
|
|
|
format!(
|
|
|
|
"Could not sign draft in account `{}`: {}.",
|
|
|
|
context.accounts[account_cursor].name(),
|
|
|
|
e.to_string()
|
|
|
|
),
|
|
|
|
ERROR,
|
|
|
|
);
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some(format!(
|
|
|
|
"Could not sign draft in account `{}`.",
|
|
|
|
context.accounts[account_cursor].name()
|
|
|
|
)),
|
|
|
|
e.to_string(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
draft.attachments.push(output.unwrap());
|
2019-12-06 14:34:31 +00:00
|
|
|
} else {
|
|
|
|
let mut content_type = ContentType::default();
|
|
|
|
if format_flowed {
|
|
|
|
if let ContentType::Text {
|
|
|
|
ref mut parameters, ..
|
|
|
|
} = content_type
|
|
|
|
{
|
|
|
|
parameters.push((b"format".to_vec(), b"flowed".to_vec()));
|
|
|
|
}
|
|
|
|
|
|
|
|
let body: AttachmentBuilder = Attachment::new(
|
|
|
|
content_type,
|
|
|
|
Default::default(),
|
|
|
|
std::mem::replace(&mut draft.body, String::new()).into_bytes(),
|
|
|
|
)
|
|
|
|
.into();
|
|
|
|
draft.attachments.insert(0, body);
|
|
|
|
}
|
2019-09-28 07:46:49 +00:00
|
|
|
}
|
2019-12-03 11:27:35 +00:00
|
|
|
bytes = draft.finalise().unwrap();
|
2019-06-18 19:13:54 +00:00
|
|
|
stdin
|
2019-12-03 11:27:35 +00:00
|
|
|
.write_all(bytes.as_bytes())
|
2019-06-18 19:13:54 +00:00
|
|
|
.expect("Failed to write to stdin");
|
|
|
|
}
|
2019-09-23 06:30:23 +00:00
|
|
|
let output = msmtp.wait().expect("Failed to wait on mailer");
|
|
|
|
if output.success() {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some("Sent.".into()),
|
|
|
|
String::new(),
|
|
|
|
None,
|
|
|
|
));
|
|
|
|
} else {
|
2019-11-19 20:46:25 +00:00
|
|
|
let error_message = if let Some(exit_code) = output.code() {
|
|
|
|
format!(
|
|
|
|
"Could not send e-mail using `{}`: Process exited with {}",
|
2020-07-08 09:09:37 +00:00
|
|
|
command, exit_code
|
2019-11-19 20:46:25 +00:00
|
|
|
)
|
2019-09-15 18:53:25 +00:00
|
|
|
} else {
|
2019-11-19 20:46:25 +00:00
|
|
|
format!(
|
|
|
|
"Could not send e-mail using `{}`: Process was killed by signal",
|
2020-07-08 09:09:37 +00:00
|
|
|
command
|
2019-11-19 20:46:25 +00:00
|
|
|
)
|
|
|
|
};
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
Some("Message not sent.".into()),
|
|
|
|
error_message.clone(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
log(error_message, ERROR);
|
2019-06-18 19:13:54 +00:00
|
|
|
}
|
2019-12-03 11:27:35 +00:00
|
|
|
save_draft(
|
|
|
|
bytes.as_bytes(),
|
|
|
|
context,
|
2020-02-26 08:54:10 +00:00
|
|
|
mailbox_type,
|
2019-12-03 11:27:35 +00:00
|
|
|
flags,
|
|
|
|
account_cursor,
|
|
|
|
);
|
2019-11-19 20:46:25 +00:00
|
|
|
true
|
2019-06-18 19:13:54 +00:00
|
|
|
}
|
2019-12-03 11:27:35 +00:00
|
|
|
|
|
|
|
pub fn save_draft(
|
|
|
|
bytes: &[u8],
|
|
|
|
context: &mut Context,
|
2020-02-26 08:54:10 +00:00
|
|
|
mailbox_type: SpecialUsageMailbox,
|
2019-12-03 11:27:35 +00:00
|
|
|
flags: Flag,
|
|
|
|
account_cursor: usize,
|
|
|
|
) {
|
2020-06-23 16:25:01 +00:00
|
|
|
match context.accounts[account_cursor].save_special(bytes, mailbox_type, flags) {
|
|
|
|
Err(MeliError {
|
|
|
|
summary, details, ..
|
|
|
|
}) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
|
|
|
summary.map(|s| s.into()),
|
|
|
|
details.into(),
|
|
|
|
Some(NotificationType::ERROR),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(mailbox_hash) => {
|
|
|
|
context.replies.push_back(UIEvent::Notification(
|
2020-06-26 17:22:22 +00:00
|
|
|
Some("Message saved".into()),
|
2020-06-23 16:25:01 +00:00
|
|
|
format!(
|
2020-06-26 17:22:22 +00:00
|
|
|
"Message saved in `{}`",
|
2020-06-23 16:25:01 +00:00
|
|
|
&context.accounts[account_cursor].mailbox_entries[&mailbox_hash].name
|
|
|
|
),
|
|
|
|
Some(NotificationType::INFO),
|
|
|
|
));
|
|
|
|
}
|
2019-12-03 11:27:35 +00:00
|
|
|
}
|
|
|
|
}
|