about summary refs log tree commit diff stats
path: root/commands/msgview/open.go
diff options
context:
space:
mode:
authorRéouven Assouly <reouvenassouly@yahoo.fr>2019-06-16 22:52:44 +0200
committerDrew DeVault <sir@cmpwn.com>2019-06-17 14:52:52 -0400
commitce475e4952fe182a15d8897c3cd94f59df4b64e1 (patch)
tree59b3df6c73ceb691732ef90da3bf740c837a7dfa /commands/msgview/open.go
parentdfe114b643702b31a4dedc7cfe5b67a798f2e6cd (diff)
downloadaerc-ce475e4952fe182a15d8897c3cd94f59df4b64e1.tar.gz
commands/msgview: add open command
Diffstat (limited to 'commands/msgview/open.go')
-rw-r--r--commands/msgview/open.go61
1 files changed, 61 insertions, 0 deletions
diff --git a/commands/msgview/open.go b/commands/msgview/open.go
new file mode 100644
index 0000000..1a33cec
--- /dev/null
+++ b/commands/msgview/open.go
@@ -0,0 +1,61 @@
+package msgview
+
+import (
+	"encoding/base64"
+	"errors"
+	"io"
+	"io/ioutil"
+	"mime/quotedprintable"
+	"os"
+	"os/exec"
+	"strings"
+	"time"
+
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+)
+
+func init() {
+	register("open", Open)
+}
+
+func Open(aerc *widgets.Aerc, args []string) error {
+	if len(args) != 1 {
+		return errors.New("Usage: open")
+	}
+
+	mv := aerc.SelectedTab().(*widgets.MessageViewer)
+	p := mv.CurrentPart()
+
+	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
+		}
+
+		cmd := exec.Command("xdg-open", tmpFile.Name())
+		err = cmd.Run()
+		if err != nil {
+			aerc.PushError(" " + err.Error())
+		}
+
+		aerc.PushStatus("Opened", 10*time.Second)
+	})
+
+	return nil
+}
K. Agaram <vc@akkartik.com> 2016-09-09 18:32:52 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-09-09 18:32:52 -0700 3309' href='/akkartik/mu/commit/017parse_tree.cc?h=main&id=af023b323bb6fdb09851cb673401fca2abe983b6'>af023b32 ^
555d95c1 ^
a17f9186 ^











1f7e3c05 ^
08cf048f ^
a17f9186 ^




6808ff7d ^

a17f9186 ^

6808ff7d ^

af023b32 ^
1f7e3c05 ^
af023b32 ^


6808ff7d ^


af023b32 ^
6808ff7d ^
a17f9186 ^
6808ff7d ^
af023b32 ^











6808ff7d ^
a17f9186 ^
6808ff7d ^

9cfd925a ^
1ead3562 ^
15f79a66 ^
6808ff7d ^
15f79a66 ^




acc4792d ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92