aboutsummaryrefslogtreecommitdiff
path: root/commands/account/mkdir.go
blob: 886c9664e365755ffda806c1bb3f4be998961ebb (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
61
62
63
package account

import (
	"errors"
	"strings"
	"time"

	"git.sr.ht/~rjarry/aerc/widgets"
	"git.sr.ht/~rjarry/aerc/worker/types"
)

type MakeDir struct {
	Name string `opt:"..." metavar:"FOLDER"`
}

func init() {
	register(MakeDir{})
}

func (MakeDir) Aliases() []string {
	return []string{"mkdir"}
}

func (MakeDir) Complete(aerc *widgets.Aerc, args []string) []string {
	if len(args) == 0 {
		return nil
	}
	name := strings.Join(args, " ")

	list := aerc.SelectedAccount().Directories().List()
	inboxes := make([]string, len(list))
	copy(inboxes, list)

	// remove inboxes that don't match and append the path separator to all
	// others
	for i := len(inboxes) - 1; i >= 0; i-- {
		if !strings.HasPrefix(inboxes[i], name) && name != "" {
			inboxes = append(inboxes[:i], inboxes[i+1:]...)
			continue
		}
		inboxes[i] += aerc.SelectedAccount().Worker().PathSeparator()
	}
	return inboxes
}

func (m MakeDir) Execute(aerc *widgets.Aerc, args []string) error {
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	acct.Worker().PostAction(&types.CreateDirectory{
		Directory: m.Name,
	}, func(msg types.WorkerMessage) {
		switch msg := msg.(type) {
		case *types.Done:
			aerc.PushStatus("Directory created.", 10*time.Second)
			acct.Directories().Select(m.Name)
		case *types.Error:
			aerc.PushError(msg.Error.Error())
		}
	})
	return nil
}