summary refs log tree commit diff stats
ModeNameSize
-rw-r--r--.gitignore23log stats plain blame
-rw-r--r--COPYING35147log stats plain blame
-rw-r--r--HACKING2487log stats plain blame
-rw-r--r--INSTALL1724log stats plain blame
-rw-r--r--Makefile3008log stats plain blame
-rw-r--r--README3843log stats plain blame
-rw-r--r--TODO4136log stats plain blame
-rwxr-xr-xall_tests.py584log stats plain blame
d---------doc296log stats plain
-rwxr-xr-xranger.py1963log stats plain blame
d---------ranger439log stats plain
d---------test483log stats plain
='Blame the previous revision' href='/akspecs/aerc/blame/commands/msgview/open.go?h=0.5.2&id=177651bddab145c8a56cdfeb0d57b5fd95a6d0e2'>^
ce475e4 ^

6838c23 ^
ce475e4 ^




363aab5 ^
ce475e4 ^
df20f1c ^

ce475e4 ^












1bb1a80 ^
ce475e4 ^








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


               


                   
            

              
                                      


                                          

                  
             


                        
                                


                               
                                                                  
                  

 
                                                              




                                                         
                                     
 

                                                                                             












                                                                      
                                                  








                                                         
package msgview

import (
	"errors"
	"io"
	"io/ioutil"
	"os"
	"time"

	"git.sr.ht/~sircmpwn/aerc/lib"
	"git.sr.ht/~sircmpwn/aerc/widgets"
)

type Open struct{}

func init() {
	register(Open{})
}

func (Open) Aliases() []string {
	return []string{"open"}
}

func (Open) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (Open) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: open")
	}

	mv := aerc.SelectedTab().(*widgets.MessageViewer)
	p := mv.SelectedMessagePart()

	store := mv.Store()
	store.FetchBodyPart(p.Msg.Uid, p.Msg.BodyStructure, p.Index, func(reader io.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
		}

		err = lib.OpenFile(tmpFile.Name())
		if err != nil {
			aerc.PushError(" " + err.Error())
		}

		aerc.PushStatus("Opened", 10*time.Second)
	})

	return nil
}