aerc/commands/account/reply.go

126 lines
2.6 KiB
Go
Raw Normal View History

2019-05-16 18:15:34 +02:00
package account
import (
2019-05-16 18:39:22 +02:00
"bufio"
2019-05-16 18:15:34 +02:00
"errors"
"fmt"
2019-05-16 18:39:22 +02:00
"io"
2019-05-16 18:15:34 +02:00
"strings"
2019-05-16 18:39:22 +02:00
"git.sr.ht/~sircmpwn/getopt"
2019-05-16 18:15:34 +02:00
"github.com/emersion/go-imap"
"git.sr.ht/~sircmpwn/aerc2/widgets"
)
func init() {
register("reply", Reply)
}
func Reply(aerc *widgets.Aerc, args []string) error {
2019-05-16 18:39:22 +02:00
opts, optind, err := getopt.Getopts(args[1:], "aq")
if err != nil {
return err
}
if optind != len(args) - 1 {
2019-05-16 18:15:34 +02:00
return errors.New("Usage: reply [-aq]")
}
2019-05-16 18:39:22 +02:00
var (
quote bool
replyAll bool
)
for _, opt := range opts {
switch opt.Option {
case 'a':
replyAll = true
case 'q':
quote = true
}
}
2019-05-16 18:15:34 +02:00
acct := aerc.SelectedAccount()
2019-05-16 18:39:22 +02:00
store := acct.Messages().Store()
2019-05-16 18:15:34 +02:00
msg := acct.Messages().Selected()
acct.Logger().Println("Replying to email " + msg.Envelope.MessageId)
var (
to []string
cc []string
toList []*imap.Address
)
if len(msg.Envelope.ReplyTo) != 0 {
toList = msg.Envelope.ReplyTo
} else {
toList = msg.Envelope.From
}
for _, addr := range toList {
if addr.PersonalName != "" {
to = append(to, fmt.Sprintf("%s <%s@%s>",
addr.PersonalName, addr.MailboxName, addr.HostName))
} else {
to = append(to, fmt.Sprintf("<%s@%s>",
addr.MailboxName, addr.HostName))
}
}
2019-05-16 18:39:22 +02:00
if replyAll {
for _, addr := range msg.Envelope.Cc {
if addr.PersonalName != "" {
cc = append(cc, fmt.Sprintf("%s <%s@%s>",
addr.PersonalName, addr.MailboxName, addr.HostName))
} else {
cc = append(cc, fmt.Sprintf("<%s@%s>",
addr.MailboxName, addr.HostName))
}
2019-05-16 18:15:34 +02:00
}
}
subject := "Re: " + msg.Envelope.Subject
composer := widgets.NewComposer(
aerc.Config(), acct.AccountConfig(), acct.Worker()).
Defaults(map[string]string{
"To": strings.Join(to, ","),
"Cc": strings.Join(cc, ","),
"Subject": subject,
"In-Reply-To": msg.Envelope.MessageId,
}).
FocusTerminal()
2019-05-16 18:39:22 +02:00
addTab := func() {
tab := aerc.NewTab(composer, subject)
composer.OnSubjectChange(func(subject string) {
if subject == "" {
tab.Name = "New email"
} else {
tab.Name = subject
}
tab.Content.Invalidate()
})
}
2019-05-16 18:15:34 +02:00
2019-05-16 18:39:22 +02:00
if quote {
// TODO: something more intelligent than fetching the 0th part
store.FetchBodyPart(msg.Uid, 0, func(reader io.Reader) {
pipeout, pipein := io.Pipe()
scanner := bufio.NewScanner(reader)
go composer.SetContents(pipeout)
// TODO: Let user customize the date format used here
io.WriteString(pipein, fmt.Sprintf("On %s %s wrote:\n",
msg.Envelope.Date.Format("Mon Jan 2, 2006 at 3:04 PM"),
msg.Envelope.From[0].PersonalName))
for scanner.Scan() {
io.WriteString(pipein, fmt.Sprintf("> %s\n",scanner.Text()))
}
pipein.Close()
pipeout.Close()
addTab()
})
} else {
addTab()
}
2019-05-16 18:15:34 +02:00
return nil
}