aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/handlers.go
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2019-12-16 17:45:20 +0100
committerSimon Ser <contact@emersion.fr>2019-12-16 17:45:20 +0100
commita425e17b0eda3dd7e961127670a46a3b3b2c3d19 (patch)
treec0aa6f119e4a3f989384089ec327f37b494e3281 /plugins/base/handlers.go
parent1841609fbc7a16a657e530e0a208419af7791bd0 (diff)
downloadalps-a425e17b0eda3dd7e961127670a46a3b3b2c3d19.tar.gz
alps-a425e17b0eda3dd7e961127670a46a3b3b2c3d19.zip
Add button to delete message
Maybe we should add a confirmation step in the future. References: https://todo.sr.ht/~sircmpwn/koushin/36
Diffstat (limited to 'plugins/base/handlers.go')
-rw-r--r--plugins/base/handlers.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/plugins/base/handlers.go b/plugins/base/handlers.go
index d77cd4a..c36cfa7 100644
--- a/plugins/base/handlers.go
+++ b/plugins/base/handlers.go
@@ -338,3 +338,44 @@ func handleMove(ectx echo.Context) error {
return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", to))
}
+
+func handleDelete(ectx echo.Context) error {
+ ctx := ectx.(*koushin.Context)
+
+ mboxName, uid, err := parseMboxAndUid(ctx.Param("mbox"), ctx.Param("uid"))
+ if err != nil {
+ return echo.NewHTTPError(http.StatusBadRequest, err)
+ }
+
+ err = ctx.Session.DoIMAP(func(c *imapclient.Client) error {
+ if err := ensureMailboxSelected(c, mboxName); err != nil {
+ return err
+ }
+
+ var seqSet imap.SeqSet
+ seqSet.AddNum(uid)
+
+ item := imap.FormatFlagsOp(imap.AddFlags, true)
+ flags := []interface{}{imap.DeletedFlag}
+ if err := c.UidStore(&seqSet, item, flags, nil); err != nil {
+ return fmt.Errorf("failed to add deleted flag: %v", err)
+ }
+
+ if err := c.Expunge(nil); err != nil {
+ return fmt.Errorf("failed to expunge mailbox: %v", err)
+ }
+
+ // Deleting a message invalidates our cached message count
+ // TODO: listen to async updates instead
+ if _, err := c.Select(mboxName, false); err != nil {
+ return fmt.Errorf("failed to select mailbox: %v", err)
+ }
+
+ return nil
+ })
+ if err != nil {
+ return err
+ }
+
+ return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", mboxName))
+}