aboutsummaryrefslogtreecommitdiffstats
path: root/worker/notmuch/worker.go
diff options
context:
space:
mode:
authorKoni Marti <koni.marti@gmail.com>2023-05-14 17:16:35 +0200
committerRobin Jarry <robin@jarry.cc>2023-06-17 23:18:47 +0200
commit46c6dfc625649bace7002a77008bf3cadc3e9e3e (patch)
treeb1047e13ed9052b965750498f835036792709538 /worker/notmuch/worker.go
parent263d8cbec504bf56791dd3aa8c1e440d96b27d4a (diff)
downloadaerc-46c6dfc625649bace7002a77008bf3cadc3e9e3e.tar.gz
notmuch: translate filter/search options to query
Translate the regular filter and search options to a notmuch query to achieve a basic equivalence across backends for these commands. The following examples have the same filtering effect: :filter -uf koni :filter -u from:koni :filter tag:unread from:koni And ':filter -x Flagged' would translate to ':filter tag:flagged'. Fixes: https://todo.sr.ht/~rjarry/aerc/177 Signed-off-by: Koni Marti <koni.marti@gmail.com> Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'worker/notmuch/worker.go')
-rw-r--r--worker/notmuch/worker.go24
1 files changed, 20 insertions, 4 deletions
diff --git a/worker/notmuch/worker.go b/worker/notmuch/worker.go
index 0ac37ff3..af0f279c 100644
--- a/worker/notmuch/worker.go
+++ b/worker/notmuch/worker.go
@@ -535,13 +535,19 @@ func (w *worker) handleFlagMessages(msg *types.FlagMessages) error {
}
func (w *worker) handleSearchDirectory(msg *types.SearchDirectory) error {
- // the first item is the command (search / filter)
- s := strings.Join(msg.Argv[1:], " ")
+ // the first item is the command (:search)
+ log.Debugf("search args: %v", msg.Argv)
+ s, err := translate(msg.Argv)
+ if err != nil {
+ log.Debugf("ERROR: %v", err)
+ return err
+ }
// we only want to search in the current query, so merge the two together
search := w.query
if s != "" {
search = fmt.Sprintf("(%v) and (%v)", w.query, s)
}
+ log.Debugf("search query: '%s'", search)
uids, err := w.uidsFromQuery(search)
if err != nil {
return err
@@ -634,9 +640,14 @@ func (w *worker) loadExcludeTags(
func (w *worker) emitDirectoryContents(parent types.WorkerMessage) error {
query := w.query
if msg, ok := parent.(*types.FetchDirectoryContents); ok {
- s := strings.Join(msg.FilterCriteria[1:], " ")
+ log.Debugf("filter input: '%v'", msg.FilterCriteria)
+ s, err := translate(msg.FilterCriteria)
+ if err != nil {
+ return err
+ }
if s != "" {
query = fmt.Sprintf("(%v) and (%v)", query, s)
+ log.Debugf("filter query: '%s'", query)
}
}
uids, err := w.uidsFromQuery(query)
@@ -658,9 +669,14 @@ func (w *worker) emitDirectoryContents(parent types.WorkerMessage) error {
func (w *worker) emitDirectoryThreaded(parent types.WorkerMessage) error {
query := w.query
if msg, ok := parent.(*types.FetchDirectoryThreaded); ok {
- s := strings.Join(msg.FilterCriteria[1:], " ")
+ log.Debugf("filter input: '%v'", msg.FilterCriteria)
+ s, err := translate(msg.FilterCriteria)
+ if err != nil {
+ return err
+ }
if s != "" {
query = fmt.Sprintf("(%v) and (%v)", query, s)
+ log.Debugf("filter query: '%s'", query)
}
}
threads, err := w.db.ThreadsFromQuery(query)