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
|
package account
import (
"bytes"
"errors"
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/state"
"git.sr.ht/~rjarry/aerc/lib/templates"
"git.sr.ht/~rjarry/aerc/models"
)
type ViewMessage struct {
Peek bool `opt:"-p"`
}
func init() {
commands.Register(ViewMessage{})
}
func (ViewMessage) Context() commands.CommandContext {
return commands.MESSAGE_LIST
}
func (ViewMessage) Aliases() []string {
return []string{"view-message", "view"}
}
func (v ViewMessage) Execute(args []string) error {
acct := app.SelectedAccount()
if acct == nil {
return errors.New("No account selected")
}
if acct.Messages().Empty() {
return nil
}
store := acct.Messages().Store()
msg := acct.Messages().Selected()
if msg == nil {
return nil
}
_, deleted := store.Deleted[msg.Uid]
if deleted {
return nil
}
if msg.Error != nil {
app.PushError(msg.Error.Error())
return nil
}
lib.NewMessageStoreView(msg, !v.Peek && acct.UiConfig().AutoMarkRead,
store, app.CryptoProvider(), app.DecryptKeys,
func(view lib.MessageView, err error) {
if err != nil {
app.PushError(err.Error())
return
}
viewer := app.NewMessageViewer(acct, view)
data := state.NewDataSetter()
data.SetAccount(acct.AccountConfig())
data.SetFolder(acct.Directories().SelectedDirectory())
data.SetHeaders(msg.RFC822Headers, &models.OriginalMail{})
var buf bytes.Buffer
err = templates.Render(acct.UiConfig().TabTitleViewer, &buf,
data.Data())
if err != nil {
acct.PushError(err)
return
}
app.NewTab(viewer, buf.String())
})
return nil
}
|