aboutsummaryrefslogblamecommitdiffstats
path: root/commands/choose.go
blob: 3f1410cf2955b2bd353c8b1ec916001b8920f220 (plain) (tree)
1
2
3
4
5
6
7





                 
                                    











                                  
                                                


                  
                                            



                                              
                                 
                                             


                                                   
                                                     





                                                               
                                    






                                                                                                    
package commands

import (
	"fmt"
	"strings"

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

type Choose struct{}

func init() {
	register(Choose{})
}

func (Choose) Aliases() []string {
	return []string{"choose"}
}

func (Choose) Complete(args []string) []string {
	return nil
}

func (Choose) Execute(args []string) error {
	if len(args) < 5 || len(args)%4 != 1 {
		return chooseUsage(args[0])
	}

	choices := []app.Choice{}
	for i := 0; i+4 < len(args); i += 4 {
		if args[i+1] != "-o" {
			return chooseUsage(args[0])
		}
		choices = append(choices, app.Choice{
			Key:     args[i+2],
			Text:    args[i+3],
			Command: strings.Split(args[i+4], " "),
		})
	}

	app.RegisterChoices(choices)

	return nil
}

func chooseUsage(cmd string) error {
	return fmt.Errorf("Usage: %s -o <key> <text> <command> [-o <key> <text> <command>]...", cmd)
}