blob: 02d997e47dcbb13ec01744b14b0af5bff1508c23 (
plain) (
tree)
|
|
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
}
|