aboutsummaryrefslogtreecommitdiffstats
path: root/commands/patch/delete.go
blob: 24351f7c6346a9ab6dc416a011c1058986a7ba42 (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
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
package patch

import (
	"fmt"
	"time"

	"git.sr.ht/~rjarry/aerc/app"
	"git.sr.ht/~rjarry/aerc/commands"
	"git.sr.ht/~rjarry/aerc/lib/pama"
	"git.sr.ht/~rjarry/aerc/log"
)

type Delete struct {
	Tag string `opt:"tag" required:"false" complete:"Complete"`
}

func init() {
	register(Delete{})
}

func (Delete) Context() commands.CommandContext {
	return commands.GLOBAL
}

func (Delete) Aliases() []string {
	return []string{"delete"}
}

func (*Delete) Complete(arg string) []string {
	names, err := pama.New().Names()
	if err != nil {
		log.Errorf("failed to get completion: %v", err)
		return nil
	}
	return commands.FilterList(names, arg, nil)
}

func (d Delete) Execute(args []string) error {
	m := pama.New()

	name := d.Tag
	if name == "" {
		p, err := m.CurrentProject()
		if err != nil {
			return err
		}
		name = p.Name
	}

	err := m.Delete(name)
	if err != nil {
		return err
	}

	app.PushStatus(fmt.Sprintf("Project '%s' deleted.", name),
		10*time.Second)
	return nil
}