2019-06-27 02:50:27 +02:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"git.sr.ht/~sircmpwn/getopt"
|
|
|
|
"github.com/emersion/go-imap"
|
|
|
|
|
|
|
|
"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{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ SearchFilter) Aliases() []string {
|
2019-07-17 09:35:50 +02:00
|
|
|
return []string{"search", "filter"}
|
2019-06-27 19:33:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (_ SearchFilter) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
|
|
return nil
|
2019-06-27 02:50:27 +02:00
|
|
|
}
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
func (_ SearchFilter) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-06-27 02:50:27 +02:00
|
|
|
var (
|
|
|
|
criteria *imap.SearchCriteria = imap.NewSearchCriteria()
|
|
|
|
)
|
|
|
|
|
|
|
|
opts, optind, err := getopt.Getopts(args, "ruH:")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
switch opt.Option {
|
|
|
|
case 'r':
|
|
|
|
criteria.WithFlags = append(criteria.WithFlags, imap.SeenFlag)
|
|
|
|
case 'u':
|
|
|
|
criteria.WithoutFlags = append(criteria.WithoutFlags, imap.SeenFlag)
|
|
|
|
case 'H':
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, arg := range args[optind:] {
|
|
|
|
criteria.Header.Add("Subject", arg)
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
acct.Messages().Scroll()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
store.Search(criteria, cb)
|
2019-06-27 02:50:27 +02:00
|
|
|
return nil
|
|
|
|
}
|