aboutsummaryrefslogtreecommitdiff
path: root/commands/compose/multipart.go
blob: 969410627f589b48feb514c5aff3683cf62f2f89 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package compose

import (
	"bytes"
	"fmt"

	"git.sr.ht/~rjarry/aerc/app"
	"git.sr.ht/~rjarry/aerc/commands"
	"git.sr.ht/~rjarry/aerc/config"
)

type Multipart struct {
	Remove bool   `opt:"-d"`
	Mime   string `opt:"mime" metavar:"<mime/type>"`
}

func init() {
	register(Multipart{})
}

func (Multipart) Aliases() []string {
	return []string{"multipart"}
}

func (Multipart) Complete(args []string) []string {
	var completions []string
	completions = append(completions, "-d")
	for mime := range config.Converters {
		completions = append(completions, mime)
	}
	return commands.CompletionFromList(completions, args)
}

func (m Multipart) Execute(args []string) error {
	composer, ok := app.SelectedTabContent().(*app.Composer)
	if !ok {
		return fmt.Errorf(":multipart is only available on the compose::review screen")
	}

	if m.Remove {
		return composer.RemovePart(m.Mime)
	} else {
		_, found := config.Converters[m.Mime]
		if !found {
			return fmt.Errorf("no command defined for MIME type: %s", m.Mime)
		}
		err := composer.AppendPart(
			m.Mime,
			map[string]string{"Charset": "UTF-8"},
			// the actual content of the part will be rendered
			// every time the body of the email is updated
			bytes.NewReader([]byte{}),
		)
		if err != nil {
			return err
		}
	}

	return nil
}