169 lines
3.9 KiB
Go
169 lines
3.9 KiB
Go
package account
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
gomail "net/mail"
|
|
"strings"
|
|
|
|
"github.com/emersion/go-message"
|
|
_ "github.com/emersion/go-message/charset"
|
|
"github.com/emersion/go-message/mail"
|
|
"github.com/emersion/go-imap"
|
|
"git.sr.ht/~sircmpwn/getopt"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc2/widgets"
|
|
)
|
|
|
|
func init() {
|
|
register("reply", Reply)
|
|
}
|
|
|
|
func Reply(aerc *widgets.Aerc, args []string) error {
|
|
opts, optind, err := getopt.Getopts(args[1:], "aq")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if optind != len(args) - 1 {
|
|
return errors.New("Usage: reply [-aq]")
|
|
}
|
|
var (
|
|
quote bool
|
|
replyAll bool
|
|
)
|
|
for _, opt := range opts {
|
|
switch opt.Option {
|
|
case 'a':
|
|
replyAll = true
|
|
case 'q':
|
|
quote = true
|
|
}
|
|
}
|
|
|
|
acct := aerc.SelectedAccount()
|
|
conf := acct.AccountConfig()
|
|
us, _ := gomail.ParseAddress(conf.From)
|
|
store := acct.Messages().Store()
|
|
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))
|
|
}
|
|
}
|
|
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))
|
|
}
|
|
}
|
|
for _, addr := range msg.Envelope.To {
|
|
address := fmt.Sprintf("%s@%s", addr.MailboxName, addr.HostName)
|
|
if address == us.Address {
|
|
continue
|
|
}
|
|
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))
|
|
}
|
|
}
|
|
}
|
|
|
|
var subject string
|
|
if !strings.HasPrefix(msg.Envelope.Subject, "Re: ") {
|
|
subject = "Re: " + msg.Envelope.Subject
|
|
} else {
|
|
subject = 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()
|
|
|
|
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()
|
|
})
|
|
}
|
|
|
|
if quote {
|
|
// TODO: something more intelligent than fetching the 0th part
|
|
store.FetchBodyPart(msg.Uid, 0, func(reader io.Reader) {
|
|
header := message.Header{}
|
|
header.SetText(
|
|
"Content-Transfer-Encoding", msg.BodyStructure.Encoding)
|
|
header.SetContentType(
|
|
msg.BodyStructure.MIMEType, msg.BodyStructure.Params)
|
|
header.SetText("Content-Description", msg.BodyStructure.Description)
|
|
entity, err := message.New(header, reader)
|
|
if err != nil {
|
|
// TODO: Do something with the error
|
|
addTab()
|
|
return
|
|
}
|
|
mreader := mail.NewReader(entity)
|
|
part, err := mreader.NextPart()
|
|
if err != nil {
|
|
// TODO: Do something with the error
|
|
addTab()
|
|
return
|
|
}
|
|
|
|
pipeout, pipein := io.Pipe()
|
|
scanner := bufio.NewScanner(part.Body)
|
|
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()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
|