2019-05-12 06:06:09 +02:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-07-16 22:48:25 +02:00
|
|
|
"bufio"
|
2019-05-14 19:07:48 +02:00
|
|
|
"io"
|
2019-05-13 22:04:01 +02:00
|
|
|
"io/ioutil"
|
2019-07-16 22:48:25 +02:00
|
|
|
"mime"
|
|
|
|
"net/http"
|
2019-05-14 19:07:48 +02:00
|
|
|
gomail "net/mail"
|
2019-05-13 22:04:01 +02:00
|
|
|
"os"
|
2019-05-12 06:06:09 +02:00
|
|
|
"os/exec"
|
2019-07-16 22:48:25 +02:00
|
|
|
"path/filepath"
|
2019-08-04 02:23:08 +02:00
|
|
|
"strings"
|
2019-05-14 19:07:48 +02:00
|
|
|
"time"
|
2019-05-12 06:06:09 +02:00
|
|
|
|
2019-05-14 19:07:48 +02:00
|
|
|
"github.com/emersion/go-message"
|
|
|
|
"github.com/emersion/go-message/mail"
|
2019-05-12 06:06:09 +02:00
|
|
|
"github.com/gdamore/tcell"
|
|
|
|
"github.com/mattn/go-runewidth"
|
2019-05-25 17:56:56 +02:00
|
|
|
"github.com/pkg/errors"
|
2019-05-12 06:06:09 +02:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/config"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker/types"
|
2019-05-12 06:06:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Composer struct {
|
2019-07-23 01:29:07 +02:00
|
|
|
editors map[string]*headerEditor
|
2019-05-12 06:06:09 +02:00
|
|
|
|
2019-05-26 17:58:14 +02:00
|
|
|
acct *config.AccountConfig
|
|
|
|
config *config.AercConfig
|
2019-05-13 22:04:01 +02:00
|
|
|
|
2019-07-16 22:48:25 +02:00
|
|
|
defaults map[string]string
|
|
|
|
editor *Terminal
|
|
|
|
email *os.File
|
|
|
|
attachments []string
|
|
|
|
grid *ui.Grid
|
2019-08-01 20:29:21 +02:00
|
|
|
header *ui.Grid
|
2019-07-16 22:48:25 +02:00
|
|
|
review *reviewMessage
|
|
|
|
worker *types.Worker
|
2019-05-12 06:06:09 +02:00
|
|
|
|
2019-08-01 20:29:21 +02:00
|
|
|
layout HeaderLayout
|
2019-05-12 06:06:09 +02:00
|
|
|
focusable []ui.DrawableInteractive
|
|
|
|
focused int
|
|
|
|
}
|
|
|
|
|
2019-05-14 21:25:30 +02:00
|
|
|
func NewComposer(conf *config.AercConfig,
|
2019-07-23 01:29:07 +02:00
|
|
|
acct *config.AccountConfig, worker *types.Worker, defaults map[string]string) *Composer {
|
|
|
|
|
|
|
|
if defaults == nil {
|
|
|
|
defaults = make(map[string]string)
|
|
|
|
}
|
|
|
|
if from := defaults["From"]; from == "" {
|
|
|
|
defaults["From"] = acct.From
|
|
|
|
}
|
|
|
|
|
2019-07-23 18:52:33 +02:00
|
|
|
layout, editors, focusable := buildComposeHeader(
|
|
|
|
conf.Compose.HeaderLayout, defaults)
|
2019-07-23 01:29:07 +02:00
|
|
|
|
2019-05-13 22:04:01 +02:00
|
|
|
email, err := ioutil.TempFile("", "aerc-compose-*.eml")
|
|
|
|
if err != nil {
|
|
|
|
// TODO: handle this better
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:24:05 +02:00
|
|
|
c := &Composer{
|
2019-07-23 01:29:07 +02:00
|
|
|
editors: editors,
|
|
|
|
acct: acct,
|
|
|
|
config: conf,
|
|
|
|
defaults: defaults,
|
|
|
|
email: email,
|
|
|
|
worker: worker,
|
2019-08-01 20:29:21 +02:00
|
|
|
layout: layout,
|
2019-05-12 06:38:48 +02:00
|
|
|
// You have to backtab to get to "From", since you usually don't edit it
|
2019-05-13 22:04:01 +02:00
|
|
|
focused: 1,
|
2019-07-23 01:29:07 +02:00
|
|
|
focusable: focusable,
|
2019-05-12 06:06:09 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
2019-08-01 20:29:21 +02:00
|
|
|
c.updateGrid()
|
2019-05-26 17:58:14 +02:00
|
|
|
c.ShowTerminal()
|
2019-05-13 22:24:05 +02:00
|
|
|
|
|
|
|
return c
|
2019-05-12 06:06:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-23 18:52:33 +02:00
|
|
|
func buildComposeHeader(layout HeaderLayout, defaults map[string]string) (
|
|
|
|
newLayout HeaderLayout,
|
|
|
|
editors map[string]*headerEditor,
|
|
|
|
focusable []ui.DrawableInteractive,
|
|
|
|
) {
|
2019-07-23 01:29:07 +02:00
|
|
|
editors = make(map[string]*headerEditor)
|
|
|
|
focusable = make([]ui.DrawableInteractive, 0)
|
|
|
|
|
|
|
|
for _, row := range layout {
|
|
|
|
for _, h := range row {
|
|
|
|
e := newHeaderEditor(h, "")
|
|
|
|
editors[h] = e
|
|
|
|
switch h {
|
|
|
|
case "From":
|
|
|
|
// Prepend From to support backtab
|
|
|
|
focusable = append([]ui.DrawableInteractive{e}, focusable...)
|
|
|
|
default:
|
|
|
|
focusable = append(focusable, e)
|
|
|
|
}
|
|
|
|
}
|
2019-05-16 16:49:50 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
|
|
|
// Add Cc/Bcc editors to layout if in defaults and not already visible
|
|
|
|
for _, h := range []string{"Cc", "Bcc"} {
|
|
|
|
if val, ok := defaults[h]; ok && val != "" {
|
|
|
|
if _, ok := editors[h]; !ok {
|
|
|
|
e := newHeaderEditor(h, "")
|
|
|
|
editors[h] = e
|
|
|
|
focusable = append(focusable, e)
|
|
|
|
layout = append(layout, []string{h})
|
|
|
|
}
|
|
|
|
}
|
2019-05-16 16:49:50 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
|
|
|
// Set default values for all editors
|
|
|
|
for key := range editors {
|
|
|
|
if val, ok := defaults[key]; ok {
|
|
|
|
editors[key].input.Set(val)
|
|
|
|
delete(defaults, key)
|
|
|
|
}
|
2019-05-16 16:49:50 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
return layout, editors, focusable
|
2019-05-16 16:49:50 +02:00
|
|
|
}
|
|
|
|
|
2019-05-16 18:39:22 +02:00
|
|
|
// Note: this does not reload the editor. You must call this before the first
|
|
|
|
// Draw() call.
|
|
|
|
func (c *Composer) SetContents(reader io.Reader) *Composer {
|
|
|
|
c.email.Seek(0, os.SEEK_SET)
|
|
|
|
io.Copy(c.email, reader)
|
2019-05-16 20:09:57 +02:00
|
|
|
c.email.Sync()
|
2019-05-16 18:39:22 +02:00
|
|
|
c.email.Seek(0, os.SEEK_SET)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2019-05-16 18:15:34 +02:00
|
|
|
func (c *Composer) FocusTerminal() *Composer {
|
2019-05-26 17:58:14 +02:00
|
|
|
if c.editor == nil {
|
|
|
|
return c
|
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
c.focusable[c.focused].Focus(false)
|
2019-07-23 01:29:07 +02:00
|
|
|
c.focused = len(c.editors)
|
2019-05-16 18:15:34 +02:00
|
|
|
c.focusable[c.focused].Focus(true)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2019-07-19 20:15:48 +02:00
|
|
|
func (c *Composer) FocusSubject() *Composer {
|
|
|
|
c.focusable[c.focused].Focus(false)
|
|
|
|
c.focused = 2
|
|
|
|
c.focusable[c.focused].Focus(true)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2019-07-23 01:29:07 +02:00
|
|
|
// OnHeaderChange registers an OnChange callback for the specified header.
|
|
|
|
func (c *Composer) OnHeaderChange(header string, fn func(subject string)) {
|
|
|
|
if editor, ok := c.editors[header]; ok {
|
|
|
|
editor.OnChange(func() {
|
|
|
|
fn(editor.input.String())
|
|
|
|
})
|
|
|
|
}
|
2019-05-14 22:18:21 +02:00
|
|
|
}
|
|
|
|
|
2019-05-12 06:06:09 +02:00
|
|
|
func (c *Composer) Draw(ctx *ui.Context) {
|
|
|
|
c.grid.Draw(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) Invalidate() {
|
|
|
|
c.grid.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) OnInvalidate(fn func(d ui.Drawable)) {
|
|
|
|
c.grid.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
fn(c)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-05-14 20:05:29 +02:00
|
|
|
func (c *Composer) Close() {
|
|
|
|
if c.email != nil {
|
|
|
|
path := c.email.Name()
|
|
|
|
c.email.Close()
|
|
|
|
os.Remove(path)
|
|
|
|
c.email = nil
|
|
|
|
}
|
|
|
|
if c.editor != nil {
|
|
|
|
c.editor.Destroy()
|
|
|
|
c.editor = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 20:27:28 +02:00
|
|
|
func (c *Composer) Bindings() string {
|
|
|
|
if c.editor == nil {
|
|
|
|
return "compose::review"
|
|
|
|
} else if c.editor == c.focusable[c.focused] {
|
|
|
|
return "compose::editor"
|
|
|
|
} else {
|
|
|
|
return "compose"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-12 06:06:09 +02:00
|
|
|
func (c *Composer) Event(event tcell.Event) bool {
|
2019-07-16 17:33:47 +02:00
|
|
|
if c.editor != nil {
|
|
|
|
return c.focusable[c.focused].Event(event)
|
|
|
|
}
|
|
|
|
return false
|
2019-05-12 06:06:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) Focus(focus bool) {
|
2019-05-12 06:38:48 +02:00
|
|
|
c.focusable[c.focused].Focus(focus)
|
2019-05-12 06:06:09 +02:00
|
|
|
}
|
|
|
|
|
2019-05-14 19:07:48 +02:00
|
|
|
func (c *Composer) Config() *config.AccountConfig {
|
2019-05-26 17:58:14 +02:00
|
|
|
return c.acct
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
|
|
|
|
2019-05-16 01:41:21 +02:00
|
|
|
func (c *Composer) Worker() *types.Worker {
|
|
|
|
return c.worker
|
|
|
|
}
|
|
|
|
|
2019-05-16 16:49:50 +02:00
|
|
|
func (c *Composer) PrepareHeader() (*mail.Header, []string, error) {
|
2019-05-14 19:07:48 +02:00
|
|
|
// Extract headers from the email, if present
|
2019-07-23 01:29:07 +02:00
|
|
|
if err := c.reloadEmail(); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2019-05-14 19:07:48 +02:00
|
|
|
var (
|
|
|
|
rcpts []string
|
|
|
|
header mail.Header
|
|
|
|
)
|
|
|
|
reader, err := mail.CreateReader(c.email)
|
|
|
|
if err == nil {
|
|
|
|
header = reader.Header
|
|
|
|
defer reader.Close()
|
|
|
|
} else {
|
|
|
|
c.email.Seek(0, os.SEEK_SET)
|
|
|
|
}
|
|
|
|
// Update headers
|
|
|
|
mhdr := (*message.Header)(&header.Header)
|
2019-07-03 16:24:11 +02:00
|
|
|
mhdr.SetText("Message-Id", mail.GenerateMessageID())
|
2019-07-23 01:29:07 +02:00
|
|
|
|
|
|
|
headerKeys := make([]string, 0, len(c.editors))
|
|
|
|
for key := range c.editors {
|
|
|
|
headerKeys = append(headerKeys, key)
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
// Ensure headers which require special processing are included.
|
|
|
|
for _, key := range []string{"To", "From", "Cc", "Bcc", "Subject", "Date"} {
|
|
|
|
if _, ok := c.editors[key]; !ok {
|
|
|
|
headerKeys = append(headerKeys, key)
|
|
|
|
}
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
|
|
|
for _, h := range headerKeys {
|
|
|
|
val := ""
|
|
|
|
editor, ok := c.editors[h]
|
|
|
|
if ok {
|
|
|
|
val = editor.input.String()
|
|
|
|
} else {
|
|
|
|
val, _ = mhdr.Text(h)
|
|
|
|
}
|
|
|
|
switch h {
|
|
|
|
case "Subject":
|
|
|
|
if subject, _ := header.Subject(); subject == "" {
|
|
|
|
header.SetSubject(val)
|
|
|
|
}
|
|
|
|
case "Date":
|
|
|
|
if date, err := header.Date(); err != nil || date == (time.Time{}) {
|
|
|
|
header.SetDate(time.Now())
|
|
|
|
}
|
|
|
|
case "From", "To", "Cc", "Bcc": // Address headers
|
|
|
|
if val != "" {
|
|
|
|
hdrRcpts, err := gomail.ParseAddressList(val)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, errors.Wrapf(err, "ParseAddressList(%s)", val)
|
|
|
|
}
|
|
|
|
edRcpts := make([]*mail.Address, len(hdrRcpts))
|
|
|
|
for i, addr := range hdrRcpts {
|
|
|
|
edRcpts[i] = (*mail.Address)(addr)
|
|
|
|
}
|
|
|
|
header.SetAddressList(h, edRcpts)
|
|
|
|
if h != "From" {
|
|
|
|
for _, addr := range edRcpts {
|
|
|
|
rcpts = append(rcpts, addr.Address)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// Handle user configured header editors.
|
|
|
|
if ok && !mhdr.Header.Has(h) {
|
|
|
|
if val := editor.input.String(); val != "" {
|
|
|
|
mhdr.SetText(h, val)
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 19:58:07 +02:00
|
|
|
}
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
2019-06-21 20:33:09 +02:00
|
|
|
// Merge in additional headers
|
|
|
|
txthdr := mhdr.Header
|
|
|
|
for key, value := range c.defaults {
|
|
|
|
if !txthdr.Has(key) && value != "" {
|
|
|
|
mhdr.SetText(key, value)
|
|
|
|
}
|
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
2019-05-14 20:05:29 +02:00
|
|
|
return &header, rcpts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) WriteMessage(header *mail.Header, writer io.Writer) error {
|
2019-07-23 01:29:07 +02:00
|
|
|
if err := c.reloadEmail(); err != nil {
|
|
|
|
return err
|
2019-06-27 11:06:50 +02:00
|
|
|
}
|
2019-05-14 20:05:29 +02:00
|
|
|
var body io.Reader
|
|
|
|
reader, err := mail.CreateReader(c.email)
|
|
|
|
if err == nil {
|
|
|
|
// TODO: Do we want to let users write a full blown multipart email
|
|
|
|
// into the editor? If so this needs to change
|
|
|
|
part, err := reader.NextPart()
|
|
|
|
if err != nil {
|
2019-05-25 17:56:56 +02:00
|
|
|
return errors.Wrap(err, "reader.NextPart")
|
2019-05-14 20:05:29 +02:00
|
|
|
}
|
|
|
|
body = part.Body
|
|
|
|
defer reader.Close()
|
|
|
|
} else {
|
|
|
|
c.email.Seek(0, os.SEEK_SET)
|
|
|
|
body = c.email
|
|
|
|
}
|
2019-07-16 22:48:25 +02:00
|
|
|
|
|
|
|
if len(c.attachments) == 0 {
|
|
|
|
// don't create a multipart email if we only have text
|
2019-07-31 19:33:50 +02:00
|
|
|
return writeInlineBody(header, body, writer)
|
2019-07-16 22:48:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise create a multipart email,
|
|
|
|
// with a multipart/alternative part for the text
|
|
|
|
w, err := mail.CreateWriter(writer, *header)
|
2019-05-14 19:07:48 +02:00
|
|
|
if err != nil {
|
2019-07-16 22:48:25 +02:00
|
|
|
return errors.Wrap(err, "CreateWriter")
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
2019-05-14 20:05:29 +02:00
|
|
|
defer w.Close()
|
2019-07-16 22:48:25 +02:00
|
|
|
|
2019-07-31 19:33:50 +02:00
|
|
|
if err := writeMultipartBody(body, w); err != nil {
|
|
|
|
return errors.Wrap(err, "writeMultipartBody")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, a := range c.attachments {
|
|
|
|
if err := writeAttachment(a, w); err != nil {
|
|
|
|
return errors.Wrap(err, "writeAttachment")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeInlineBody(header *mail.Header, body io.Reader, writer io.Writer) error {
|
|
|
|
header.SetContentType("text/plain", map[string]string{"charset": "UTF-8"})
|
|
|
|
w, err := mail.CreateSingleInlineWriter(writer, *header)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "CreateSingleInlineWriter")
|
|
|
|
}
|
|
|
|
defer w.Close()
|
|
|
|
if _, err := io.Copy(w, body); err != nil {
|
|
|
|
return errors.Wrap(err, "io.Copy")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// write the message body to the multipart message
|
|
|
|
func writeMultipartBody(body io.Reader, w *mail.Writer) error {
|
2019-07-16 22:48:25 +02:00
|
|
|
bh := mail.InlineHeader{}
|
|
|
|
bh.SetContentType("text/plain", map[string]string{"charset": "UTF-8"})
|
|
|
|
|
|
|
|
bi, err := w.CreateInline()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "CreateInline")
|
|
|
|
}
|
|
|
|
defer bi.Close()
|
|
|
|
|
|
|
|
bw, err := bi.CreatePart(bh)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "CreatePart")
|
|
|
|
}
|
|
|
|
defer bw.Close()
|
2019-07-31 19:33:50 +02:00
|
|
|
if _, err := io.Copy(bw, body); err != nil {
|
2019-05-25 17:56:56 +02:00
|
|
|
return errors.Wrap(err, "io.Copy")
|
|
|
|
}
|
|
|
|
return nil
|
2019-05-14 19:07:48 +02:00
|
|
|
}
|
|
|
|
|
2019-07-16 22:48:25 +02:00
|
|
|
// write the attachment specified by path to the message
|
|
|
|
func writeAttachment(path string, writer *mail.Writer) error {
|
|
|
|
filename := filepath.Base(path)
|
|
|
|
|
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "os.Open")
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
reader := bufio.NewReader(f)
|
|
|
|
|
|
|
|
// determine the MIME type
|
|
|
|
// http.DetectContentType only cares about the first 512 bytes
|
|
|
|
head, err := reader.Peek(512)
|
2019-07-31 20:21:13 +02:00
|
|
|
if err != nil && err != io.EOF {
|
2019-07-16 22:48:25 +02:00
|
|
|
return errors.Wrap(err, "Peek")
|
|
|
|
}
|
|
|
|
|
|
|
|
mimeString := http.DetectContentType(head)
|
|
|
|
// mimeString can contain type and params (like text encoding),
|
|
|
|
// so we need to break them apart before passing them to the headers
|
|
|
|
mimeType, params, err := mime.ParseMediaType(mimeString)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "ParseMediaType")
|
|
|
|
}
|
|
|
|
params["name"] = filename
|
|
|
|
|
|
|
|
// set header fields
|
|
|
|
ah := mail.AttachmentHeader{}
|
|
|
|
ah.SetContentType(mimeType, params)
|
|
|
|
// setting the filename auto sets the content disposition
|
|
|
|
ah.SetFilename(filename)
|
|
|
|
|
|
|
|
aw, err := writer.CreateAttachment(ah)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "CreateAttachment")
|
|
|
|
}
|
|
|
|
defer aw.Close()
|
|
|
|
|
|
|
|
if _, err := reader.WriteTo(aw); err != nil {
|
|
|
|
return errors.Wrap(err, "reader.WriteTo")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-27 16:38:53 +02:00
|
|
|
func (c *Composer) GetAttachments() []string {
|
|
|
|
return c.attachments
|
|
|
|
}
|
|
|
|
|
2019-07-16 22:48:25 +02:00
|
|
|
func (c *Composer) AddAttachment(path string) {
|
|
|
|
c.attachments = append(c.attachments, path)
|
2019-07-27 16:38:53 +02:00
|
|
|
c.resetReview()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) DeleteAttachment(path string) error {
|
|
|
|
for i, a := range c.attachments {
|
|
|
|
if a == path {
|
|
|
|
c.attachments = append(c.attachments[:i], c.attachments[i+1:]...)
|
|
|
|
c.resetReview()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.New("attachment does not exist")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) resetReview() {
|
2019-07-16 22:48:25 +02:00
|
|
|
if c.review != nil {
|
|
|
|
c.grid.RemoveChild(c.review)
|
|
|
|
c.review = newReviewMessage(c, nil)
|
|
|
|
c.grid.AddChild(c.review).At(1, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:24:05 +02:00
|
|
|
func (c *Composer) termClosed(err error) {
|
|
|
|
c.grid.RemoveChild(c.editor)
|
2019-05-26 17:58:14 +02:00
|
|
|
c.review = newReviewMessage(c, err)
|
|
|
|
c.grid.AddChild(c.review).At(1, 0)
|
2019-05-13 22:24:05 +02:00
|
|
|
c.editor.Destroy()
|
2019-05-14 20:05:29 +02:00
|
|
|
c.editor = nil
|
2019-05-26 17:58:14 +02:00
|
|
|
c.focusable = c.focusable[:len(c.focusable)-1]
|
|
|
|
if c.focused >= len(c.focusable) {
|
|
|
|
c.focused = len(c.focusable) - 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) ShowTerminal() {
|
|
|
|
if c.editor != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if c.review != nil {
|
|
|
|
c.grid.RemoveChild(c.review)
|
|
|
|
}
|
|
|
|
editorName := c.config.Compose.Editor
|
|
|
|
if editorName == "" {
|
|
|
|
editorName = os.Getenv("EDITOR")
|
|
|
|
}
|
|
|
|
if editorName == "" {
|
|
|
|
editorName = "vi"
|
|
|
|
}
|
2019-06-07 16:15:35 +02:00
|
|
|
editor := exec.Command("/bin/sh", "-c", editorName+" "+c.email.Name())
|
2019-05-26 17:58:14 +02:00
|
|
|
c.editor, _ = NewTerminal(editor) // TODO: handle error
|
|
|
|
c.editor.OnClose = c.termClosed
|
|
|
|
c.grid.AddChild(c.editor).At(1, 0)
|
|
|
|
c.focusable = append(c.focusable, c.editor)
|
2019-05-13 22:24:05 +02:00
|
|
|
}
|
|
|
|
|
2019-05-12 17:21:28 +02:00
|
|
|
func (c *Composer) PrevField() {
|
|
|
|
c.focusable[c.focused].Focus(false)
|
|
|
|
c.focused--
|
|
|
|
if c.focused == -1 {
|
|
|
|
c.focused = len(c.focusable) - 1
|
|
|
|
}
|
|
|
|
c.focusable[c.focused].Focus(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Composer) NextField() {
|
|
|
|
c.focusable[c.focused].Focus(false)
|
|
|
|
c.focused = (c.focused + 1) % len(c.focusable)
|
|
|
|
c.focusable[c.focused].Focus(true)
|
|
|
|
}
|
|
|
|
|
2019-08-04 06:09:13 +02:00
|
|
|
func (c *Composer) FocusEditor(editor *headerEditor) {
|
|
|
|
c.focusable[c.focused].Focus(false)
|
|
|
|
for i, e := range c.focusable {
|
|
|
|
if e == editor {
|
|
|
|
c.focused = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c.focusable[c.focused].Focus(true)
|
|
|
|
}
|
|
|
|
|
2019-08-01 20:29:21 +02:00
|
|
|
// AddEditor appends a new header editor to the compose window.
|
2019-08-04 02:23:08 +02:00
|
|
|
func (c *Composer) AddEditor(header string, value string, appendHeader bool) {
|
2019-08-01 20:29:21 +02:00
|
|
|
if _, ok := c.editors[header]; ok {
|
2019-08-04 02:23:08 +02:00
|
|
|
if appendHeader {
|
|
|
|
header := c.editors[header].input.String()
|
|
|
|
value = strings.TrimSpace(header) + ", " + value
|
|
|
|
}
|
2019-08-01 20:29:21 +02:00
|
|
|
c.editors[header].input.Set(value)
|
2019-08-04 06:09:13 +02:00
|
|
|
if value == "" {
|
|
|
|
c.FocusEditor(c.editors[header])
|
|
|
|
}
|
2019-08-01 20:29:21 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
e := newHeaderEditor(header, value)
|
|
|
|
c.editors[header] = e
|
|
|
|
c.layout = append(c.layout, []string{header})
|
|
|
|
// Insert focus of new editor before terminal editor
|
|
|
|
c.focusable = append(
|
|
|
|
c.focusable[:len(c.focusable)-1],
|
|
|
|
e,
|
|
|
|
c.focusable[len(c.focusable)-1],
|
|
|
|
)
|
|
|
|
c.updateGrid()
|
2019-08-04 06:09:13 +02:00
|
|
|
if value == "" {
|
|
|
|
c.FocusEditor(c.editors[header])
|
|
|
|
}
|
2019-08-01 20:29:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// updateGrid should be called when the underlying header layout is changed.
|
|
|
|
func (c *Composer) updateGrid() {
|
|
|
|
header, height := c.layout.grid(
|
|
|
|
func(h string) ui.Drawable { return c.editors[h] },
|
|
|
|
)
|
|
|
|
|
|
|
|
if c.grid == nil {
|
|
|
|
c.grid = ui.NewGrid().Columns([]ui.GridSpec{{ui.SIZE_WEIGHT, 1}})
|
|
|
|
}
|
|
|
|
|
|
|
|
c.grid.Rows([]ui.GridSpec{
|
|
|
|
{ui.SIZE_EXACT, height},
|
|
|
|
{ui.SIZE_WEIGHT, 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
if c.header != nil {
|
|
|
|
c.grid.RemoveChild(c.header)
|
|
|
|
}
|
|
|
|
c.header = header
|
|
|
|
c.grid.AddChild(c.header).At(0, 0)
|
|
|
|
}
|
|
|
|
|
2019-07-23 01:29:07 +02:00
|
|
|
func (c *Composer) reloadEmail() error {
|
|
|
|
name := c.email.Name()
|
|
|
|
c.email.Close()
|
|
|
|
file, err := os.Open(name)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "ReloadEmail")
|
|
|
|
}
|
|
|
|
c.email = file
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:24:05 +02:00
|
|
|
type headerEditor struct {
|
|
|
|
name string
|
|
|
|
input *ui.TextInput
|
|
|
|
}
|
|
|
|
|
2019-05-12 06:06:09 +02:00
|
|
|
func newHeaderEditor(name string, value string) *headerEditor {
|
|
|
|
return &headerEditor{
|
|
|
|
input: ui.NewTextInput(value),
|
|
|
|
name: name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *headerEditor) Draw(ctx *ui.Context) {
|
|
|
|
name := he.name + " "
|
|
|
|
size := runewidth.StringWidth(name)
|
|
|
|
ctx.Fill(0, 0, size, ctx.Height(), ' ', tcell.StyleDefault)
|
|
|
|
ctx.Printf(0, 0, tcell.StyleDefault.Bold(true), "%s", name)
|
|
|
|
he.input.Draw(ctx.Subcontext(size, 0, ctx.Width()-size, 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *headerEditor) Invalidate() {
|
2019-05-12 06:38:48 +02:00
|
|
|
he.input.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *headerEditor) OnInvalidate(fn func(ui.Drawable)) {
|
|
|
|
he.input.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
fn(he)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *headerEditor) Focus(focused bool) {
|
|
|
|
he.input.Focus(focused)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *headerEditor) Event(event tcell.Event) bool {
|
|
|
|
return he.input.Event(event)
|
2019-05-12 06:06:09 +02:00
|
|
|
}
|
2019-05-13 22:24:05 +02:00
|
|
|
|
2019-05-14 22:18:21 +02:00
|
|
|
func (he *headerEditor) OnChange(fn func()) {
|
|
|
|
he.input.OnChange(func(_ *ui.TextInput) {
|
|
|
|
fn()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:24:05 +02:00
|
|
|
type reviewMessage struct {
|
|
|
|
composer *Composer
|
|
|
|
grid *ui.Grid
|
|
|
|
}
|
|
|
|
|
2019-05-26 17:58:14 +02:00
|
|
|
func newReviewMessage(composer *Composer, err error) *reviewMessage {
|
2019-07-16 22:48:25 +02:00
|
|
|
spec := []ui.GridSpec{{ui.SIZE_EXACT, 2}, {ui.SIZE_EXACT, 1}}
|
2019-07-27 16:38:51 +02:00
|
|
|
for i := 0; i < len(composer.attachments)-1; i++ {
|
2019-07-16 22:48:25 +02:00
|
|
|
spec = append(spec, ui.GridSpec{ui.SIZE_EXACT, 1})
|
|
|
|
}
|
|
|
|
// make the last element fill remaining space
|
|
|
|
spec = append(spec, ui.GridSpec{ui.SIZE_WEIGHT, 1})
|
|
|
|
|
|
|
|
grid := ui.NewGrid().Rows(spec).Columns([]ui.GridSpec{
|
2019-05-13 22:24:05 +02:00
|
|
|
{ui.SIZE_WEIGHT, 1},
|
|
|
|
})
|
2019-07-16 22:48:25 +02:00
|
|
|
|
2019-05-26 17:58:14 +02:00
|
|
|
if err != nil {
|
|
|
|
grid.AddChild(ui.NewText(err.Error()).
|
|
|
|
Color(tcell.ColorRed, tcell.ColorDefault))
|
|
|
|
grid.AddChild(ui.NewText("Press [q] to close this tab.")).At(1, 0)
|
|
|
|
} else {
|
|
|
|
// TODO: source this from actual keybindings?
|
|
|
|
grid.AddChild(ui.NewText(
|
2019-07-19 22:12:26 +02:00
|
|
|
"Send this email? [y]es/[n]o/[e]dit/[a]ttach")).At(0, 0)
|
2019-05-26 17:58:14 +02:00
|
|
|
grid.AddChild(ui.NewText("Attachments:").
|
|
|
|
Reverse(true)).At(1, 0)
|
2019-07-16 22:48:25 +02:00
|
|
|
if len(composer.attachments) == 0 {
|
|
|
|
grid.AddChild(ui.NewText("(none)")).At(2, 0)
|
|
|
|
} else {
|
|
|
|
for i, a := range composer.attachments {
|
|
|
|
grid.AddChild(ui.NewText(a)).At(i+2, 0)
|
|
|
|
}
|
|
|
|
}
|
2019-05-26 17:58:14 +02:00
|
|
|
}
|
2019-05-13 22:24:05 +02:00
|
|
|
|
|
|
|
return &reviewMessage{
|
|
|
|
composer: composer,
|
|
|
|
grid: grid,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *reviewMessage) Invalidate() {
|
|
|
|
rm.grid.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *reviewMessage) OnInvalidate(fn func(ui.Drawable)) {
|
|
|
|
rm.grid.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
fn(rm)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *reviewMessage) Draw(ctx *ui.Context) {
|
|
|
|
rm.grid.Draw(ctx)
|
|
|
|
}
|