aboutsummaryrefslogtreecommitdiff
path: root/commands/account/pipe.go
blob: a68ef64e1d4d5df2a1a68809f987d6786d0bbc2b (plain)
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
package account

import (
	"errors"
	"io"

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

type Pipe struct{}

func init() {
	register(Pipe{})
}

func (_ Pipe) Aliases() []string {
	return []string{"pipe"}
}

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

func (_ Pipe) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) < 2 {
		return errors.New("Usage: :pipe <cmd> [args...]")
	}
	acct := aerc.SelectedAccount()
	store := acct.Messages().Store()
	msg := acct.Messages().Selected()
	store.FetchFull([]uint32{msg.Uid}, func(reader io.Reader) {
		term, err := commands.QuickTerm(aerc, args[1:], reader)
		if err != nil {
			aerc.PushError(" " + err.Error())
			return
		}
		name := args[1] + " <" + msg.Envelope.Subject
		aerc.NewTab(term, name)
	})
	return nil
}