2019-06-16 22:52:44 +02:00
|
|
|
package msgview
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"mime/quotedprintable"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2019-07-03 00:21:34 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib"
|
2019-06-16 22:52:44 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type Open struct{}
|
|
|
|
|
2019-06-16 22:52:44 +02:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(Open{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Open) Aliases() []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return []string{"open"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Open) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-06-16 22:52:44 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Open) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-06-16 22:52:44 +02:00
|
|
|
if len(args) != 1 {
|
|
|
|
return errors.New("Usage: open")
|
|
|
|
}
|
|
|
|
|
|
|
|
mv := aerc.SelectedTab().(*widgets.MessageViewer)
|
2019-07-05 18:21:12 +02:00
|
|
|
p := mv.SelectedMessagePart()
|
2019-06-16 22:52:44 +02:00
|
|
|
|
|
|
|
p.Store.FetchBodyPart(p.Msg.Uid, p.Index, func(reader io.Reader) {
|
|
|
|
// email parts are encoded as 7bit (plaintext), quoted-printable, or base64
|
|
|
|
|
|
|
|
if strings.EqualFold(p.Part.Encoding, "base64") {
|
|
|
|
reader = base64.NewDecoder(base64.StdEncoding, reader)
|
|
|
|
} else if strings.EqualFold(p.Part.Encoding, "quoted-printable") {
|
|
|
|
reader = quotedprintable.NewReader(reader)
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpFile, err := ioutil.TempFile(os.TempDir(), "aerc-")
|
|
|
|
if err != nil {
|
|
|
|
aerc.PushError(" " + err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer tmpFile.Close()
|
|
|
|
|
|
|
|
_, err = io.Copy(tmpFile, reader)
|
|
|
|
if err != nil {
|
|
|
|
aerc.PushError(" " + err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-03 00:21:34 +02:00
|
|
|
err = lib.OpenFile(tmpFile.Name())
|
2019-06-16 22:52:44 +02:00
|
|
|
if err != nil {
|
|
|
|
aerc.PushError(" " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
aerc.PushStatus("Opened", 10*time.Second)
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|