aboutsummaryrefslogtreecommitdiff
path: root/commands/account/clear.go
blob: bb9c04e4a89abfd386af40b15e05b75b8b1d8fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package account

import (
	"errors"
	"git.sr.ht/~sircmpwn/aerc/widgets"
)

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")
	}
	store.ApplyClear()
	aerc.SetStatus("Clear complete.")
	return nil
}