aboutsummaryrefslogblamecommitdiffstats
path: root/commands/new-account.go
blob: 0f84141f37a05aea26c080c32e6a359ed16a0b55 (plain) (tree)
1
2
3
4
5
6
7
8
9




                
                                    
                                    

 

                        
             


                              
                                      


                                      
                                                    
                  

 
                                                
                                                 

                                                            
         
                                        
                                  
                                      


                                                              
                          
                                         

                  
package commands

import (
	"errors"

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

type NewAccount struct{}

func init() {
	register(NewAccount{})
}

func (NewAccount) Aliases() []string {
	return []string{"new-account"}
}

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

func (NewAccount) Execute(args []string) error {
	opts, _, err := getopt.Getopts(args, "t")
	if err != nil {
		return errors.New("Usage: new-account [-t]")
	}
	wizard := app.NewAccountWizard()
	for _, opt := range opts {
		if opt.Option == 't' {
			wizard.ConfigureTemporaryAccount(true)
		}
	}
	wizard.Focus(true)
	app.NewTab(wizard, "New account")
	return nil
}