aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/mkdir.go
blob: 02d997e47dcbb13ec01744b14b0af5bff1508c23 (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
59
60
61
62
63
64
65
package account

import (
	"errors"
	"strings"
	"time"

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

type MakeDir struct{}

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 (MakeDir) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) == 0 {
		return errors.New("Usage: :mkdir <name>")
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	name := strings.Join(args[1:], " ")
	acct.Worker().PostAction(&types.CreateDirectory{
		Directory: name,
	}, func(msg types.WorkerMessage) {
		switch msg := msg.(type) {
		case *types.Done:
			aerc.PushStatus("Directory created.", 10*time.Second)
			acct.Directories().Select(name)
		case *types.Error:
			aerc.PushError(msg.Error.Error())
		}
	})
	return nil
}