aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hooks/tag-modified.go
blob: 21852803997e76a0587257903c86a5f325143998 (plain) (blame)
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
package hooks

import (
	"fmt"

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

type TagModified struct {
	Account string
	Backend string
	Add     []string
	Remove  []string
}

func (m *TagModified) Cmd() string {
	return config.Hooks.TagModified
}

func (m *TagModified) Env() []string {
	env := []string{
		fmt.Sprintf("AERC_ACCOUNT=%s", m.Account),
		fmt.Sprintf("AERC_TAG_ADDED=%v", m.Add),
		fmt.Sprintf("AERC_TAG_REMOVED=%v", m.Remove),
	}

	return env
}