about summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-09 14:55:34 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-09 14:55:42 -0400
commit6271d455eb7d72ca2942e3721721be54fed27779 (patch)
treef5c37e55333f2fb1807b6a41fc6093838a134adc /commands
parent05f00f0153066b9bb527773927a3244dad28ef4f (diff)
downloadaerc-6271d455eb7d72ca2942e3721721be54fed27779.tar.gz
Add :read and :unread commands
Diffstat (limited to 'commands')
-rw-r--r--commands/msg/read.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go
new file mode 100644
index 0000000..9844797
--- /dev/null
+++ b/commands/msg/read.go
@@ -0,0 +1,38 @@
+package msg
+
+import (
+	"errors"
+	"time"
+
+	"github.com/gdamore/tcell"
+
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
+)
+
+func init() {
+	register("read", Read)
+	register("unread", Read)
+}
+
+func Read(aerc *widgets.Aerc, args []string) error {
+	if len(args) != 1 {
+		return errors.New("Usage: " + args[0])
+	}
+
+	widget := aerc.SelectedTab().(widgets.ProvidesMessage)
+	msg := widget.SelectedMessage()
+	store := widget.Store()
+	store.Read([]uint32{msg.Uid}, args[0] == "read", func(
+		msg types.WorkerMessage) {
+
+		switch msg := msg.(type) {
+		case *types.Done:
+			aerc.PushStatus("Messages updated.", 10*time.Second)
+		case *types.Error:
+			aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
+				Color(tcell.ColorDefault, tcell.ColorRed)
+		}
+	})
+	return nil
+}