From 37be46c047f03cadb5c8a53ff803d46c62fdd2f4 Mon Sep 17 00:00:00 2001
From: Simon Ser
Date: Wed, 13 May 2020 17:59:04 +0200
Subject: plugins/carddav: add route to delete a contact
---
plugins/carddav/public/address-object.html | 3 +++
plugins/carddav/routes.go | 18 ++++++++++++++++++
2 files changed, 21 insertions(+)
(limited to 'plugins')
diff --git a/plugins/carddav/public/address-object.html b/plugins/carddav/public/address-object.html
index 5423d9f..2b37768 100644
--- a/plugins/carddav/public/address-object.html
+++ b/plugins/carddav/public/address-object.html
@@ -14,6 +14,9 @@
Edit
+
diff --git a/plugins/carddav/routes.go b/plugins/carddav/routes.go
index 78fe1eb..7660dbc 100644
--- a/plugins/carddav/routes.go
+++ b/plugins/carddav/routes.go
@@ -211,4 +211,22 @@ func registerRoutes(p *plugin) {
p.GET("/contacts/:path/edit", updateContact)
p.POST("/contacts/:path/edit", updateContact)
+
+ p.POST("/contacts/:path/delete", func(ctx *alps.Context) error {
+ path, err := parseObjectPath(ctx.Param("path"))
+ if err != nil {
+ return err
+ }
+
+ c, err := p.client(ctx.Session)
+ if err != nil {
+ return err
+ }
+
+ if err := c.RemoveAll(path); err != nil {
+ return fmt.Errorf("failed to delete address object: %v", err)
+ }
+
+ return ctx.Redirect(http.StatusFound, "/contacts")
+ })
}
--
cgit v1.2.3