2019-03-16 01:32:09 +01:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2022-07-11 20:23:41 +02:00
|
|
|
"fmt"
|
2019-03-16 01:32:09 +01:00
|
|
|
|
2022-07-11 20:23:41 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/commands/mode"
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
2022-07-11 20:23:41 +02:00
|
|
|
"git.sr.ht/~sircmpwn/getopt"
|
2019-03-16 01:32:09 +01:00
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type Quit struct{}
|
|
|
|
|
2019-03-16 01:32:09 +01:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(Quit{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Quit) Aliases() []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return []string{"quit", "exit"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Quit) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-03-16 01:32:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorExit int
|
|
|
|
|
|
|
|
func (err ErrorExit) Error() string {
|
|
|
|
return "exit"
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (Quit) Execute(aerc *widgets.Aerc, args []string) error {
|
2022-07-11 20:23:41 +02:00
|
|
|
force := false
|
|
|
|
opts, optind, err := getopt.Getopts(args, "f")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-03-16 01:32:09 +01:00
|
|
|
}
|
2022-07-11 20:23:41 +02:00
|
|
|
for _, opt := range opts {
|
2022-07-31 14:32:48 +02:00
|
|
|
if opt.Option == 'f' {
|
2022-07-11 20:23:41 +02:00
|
|
|
force = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(args) != optind {
|
|
|
|
return errors.New("Usage: quit [-f]")
|
|
|
|
}
|
|
|
|
if force || mode.QuitAllowed() {
|
|
|
|
return ErrorExit(1)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("A task is not done yet. Use -f to force an exit.")
|
2019-03-16 01:32:09 +01:00
|
|
|
}
|