about summary refs log tree commit diff stats
path: root/commands/account/delete.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/delete.go')
-rw-r--r--commands/account/delete.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/commands/account/delete.go b/commands/account/delete.go
new file mode 100644
index 0000000..65d6eb9
--- /dev/null
+++ b/commands/account/delete.go
@@ -0,0 +1,39 @@
+package account
+
+import (
+	"errors"
+	"time"
+
+	"github.com/gdamore/tcell"
+
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
+)
+
+func init() {
+	register("delete", DeleteMessage)
+	register("delete-message", DeleteMessage)
+}
+
+func DeleteMessage(aerc *widgets.Aerc, args []string) error {
+	if len(args) != 1 {
+		return errors.New("Usage: :delete")
+	}
+	acct := aerc.SelectedAccount()
+	if acct == nil {
+		return errors.New("No account selected")
+	}
+	store := acct.Messages().Store()
+	msg := acct.Messages().Selected()
+	acct.Messages().Next()
+	store.Delete([]uint32{msg.Uid}, func(msg types.WorkerMessage) {
+		switch msg := msg.(type) {
+		case *types.Done:
+			aerc.PushStatus("Messages deleted.", 10*time.Second)
+		case *types.Error:
+			aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
+				Color(tcell.ColorDefault, tcell.ColorRed)
+		}
+	})
+	return nil
+}