2019-06-27 02:50:27 +02:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type SearchFilter struct{}
|
|
|
|
|
2019-06-27 02:50:27 +02:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(SearchFilter{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Aliases() []string {
|
2019-07-17 09:35:50 +02:00
|
|
|
return []string{"search", "filter"}
|
2019-06-27 19:33:11 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-06-27 02:50:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-06-27 02:50:27 +02:00
|
|
|
acct := aerc.SelectedAccount()
|
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
|
|
|
store := acct.Store()
|
2019-07-14 09:42:24 +02:00
|
|
|
if store == nil {
|
|
|
|
return errors.New("Cannot perform action. Messages still loading")
|
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
|
|
|
|
var cb func([]uint32)
|
|
|
|
if args[0] == "filter" {
|
|
|
|
aerc.SetStatus("Filtering...")
|
|
|
|
cb = func(uids []uint32) {
|
|
|
|
aerc.SetStatus("Filter complete.")
|
|
|
|
acct.Logger().Printf("Filter results: %v", uids)
|
|
|
|
store.ApplyFilter(uids)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
aerc.SetStatus("Searching...")
|
|
|
|
cb = func(uids []uint32) {
|
|
|
|
aerc.SetStatus("Search complete.")
|
|
|
|
acct.Logger().Printf("Search results: %v", uids)
|
|
|
|
store.ApplySearch(uids)
|
|
|
|
// TODO: Remove when stores have multiple OnUpdate handlers
|
2020-06-09 21:13:13 +02:00
|
|
|
acct.Messages().Invalidate()
|
2019-07-17 09:35:50 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-28 06:39:07 +02:00
|
|
|
store.Search(args, cb)
|
2019-06-27 02:50:27 +02:00
|
|
|
return nil
|
|
|
|
}
|