aerc/commands/account/clear.go
Moritz Poldrack 978d35d356 lint: homogenize operations and minor fixes (gocritic)
Apply GoDoc comment policy (comments for humans should have a space
after the //; machine-readable comments shouldn't)

Use strings.ReplaceAll instead of strings.Replace when appropriate

Remove if/else chains by replacing them with switches

Use short assignment/increment notation

Replace single case switches with if statements

Combine else and if when appropriate

Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
2022-08-04 21:58:01 +02:00

59 lines
1,015 B
Go

package account
import (
"errors"
"git.sr.ht/~rjarry/aerc/lib/statusline"
"git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt"
)
type Clear struct{}
func init() {
register(Clear{})
}
func (Clear) Aliases() []string {
return []string{"clear"}
}
func (Clear) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (Clear) Execute(aerc *widgets.Aerc, args []string) error {
acct := aerc.SelectedAccount()
if acct == nil {
return errors.New("No account selected")
}
store := acct.Store()
if store == nil {
return errors.New("Cannot perform action. Messages still loading")
}
clearSelected := false
opts, optind, err := getopt.Getopts(args, "s")
if err != nil {
return err
}
for _, opt := range opts {
if opt.Option == 's' {
clearSelected = true
}
}
if len(args) != optind {
return errors.New("Usage: clear [-s]")
}
if clearSelected {
defer store.Select(0)
}
store.ApplyClear()
acct.SetStatus(statusline.SearchFilterClear())
return nil
}